@use "sass:math";

:root {
	--theme-color: #0D5EF4;
	--theme-color2: #F20F10;
	--title-color: #0F2239;
	--body-color: #4D5765;
	--smoke-color: #F3F7FB;
	--black-color: #000000;
	--white-color: #ffffff;
	--light-color: #72849B;
	--yellow-color: #FFB539;
	--success-color: #28a745;
	--error-color: #dc3545;
	--border-color: #ecf1f9;
	--title-font: 'Jost', sans-serif;
	--body-font: 'Roboto', sans-serif;
	--icon-font: "Font Awesome 6 Pro";
	--main-container: 1380px;
	--container-gutters: 24px;
	--section-space: 120px;
	--section-space-mobile: 80px;
	--section-title-space: 70px;
	--ripple-ani-duration: 5s
}

html,
body {
	scroll-behavior: auto !important
}

body {
	font-family: var(--title-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--body-color);
	line-height: 26px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased
}

iframe {
	border: none;
	width: 100%
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
	outline: none
}

input:focus {
	outline: none;
	box-shadow: none
}



ul {
	list-style-type: disc
}

ol {
	list-style-type: decimal
}

table {
	margin: 0 0 1.5em;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid var(--border-color)
}

th {
	font-weight: 700;
	color: var(--title-color)
}

td,
th {
	border: 1px solid var(--border-color);
	padding: 9px 12px
}

a {
	color: var(--theme-color);
	text-decoration: none;
	outline: 0;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

a:hover {
	color: var(--title-color)
}

a:active,
a:focus,
a:hover,
a:visited {
	text-decoration: none;
	outline: 0
}

button {
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

img {
	border: none;
	max-width: 100%
}

ins {
	text-decoration: none
}

pre {
	font-family: var(--body-font);
	background: #f5f5f5;
	color: #666;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre-wrap;
	word-wrap: break-word
}

span.ajax-loader:empty,
p:empty {
	display: none
}

p {
	font-family: var(--body-font);
	margin: 0 0 18px 0;
	color: var(--body-color);
	line-height: 1.75
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
	font-family: var(--title-font);
	color: var(--title-color);
	text-transform: none;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 15px 0
}

.h1,
h1 {
	font-size: 42px;
	line-height: 1.167
}

.h2,
h2 {
	font-size: 36px;
	line-height: 1.208
}

.h3,
h3 {
	font-size: 32px;
	line-height: 1.278
}

.h4,
h4 {
	font-size: 24px;
	line-height: 1.333;
	font-weight: 600
}

.h5,
h5 {
	font-size: 20px;
	line-height: 1.417;
	font-weight: 600
}

.h6,
h6 {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 600
}

@media (max-width: 767px) {

	.h1,
	h1 {
		font-size: 40px
	}

	.h2,
	h2 {
		font-size: 28px
	}

	.h3,
	h3 {
		font-size: 26px
	}

	.h4,
	h4 {
		font-size: 22px
	}

	.h5,
	h5 {
		font-size: 18px
	}

	.h6,
	h6 {
		font-size: 16px
	}
}

@media (max-width: 575px) {

	.h1,
	h1 {
		font-size: 34px;
		line-height: 1.3
	}
}

@media (max-width: 375px) {

	.h1,
	h1 {
		font-size: 32px
	}
}

.slick-track>[class*=col] {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x)/ 2);
	padding-left: calc(var(--bs-gutter-x)/ 2);
	margin-top: var(--bs-gutter-y)
}

.gy-30 {
	--bs-gutter-y: 30px
}

.gy-40 {
	--bs-gutter-y: 40px
}

.gy-50 {
	--bs-gutter-y: 50px
}

.gx-10 {
	--bs-gutter-x: 10px
}

select,
.form-control,
.form-select,
textarea,
input {
	height: 55px;
	padding: 0 25px 0 25px;
	padding-right: 45px;
	border: 1px solid transparent;
	color: var(--body-color);
	background-color: var(--smoke-color);
	border-radius: 5px;
	font-size: 16px;
	width: 100%;
	font-family: var(--body-font);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out
}

select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
	outline: 0;
	box-shadow: none;
	border-color: var(--theme-color);
	background-color: var(--smoke-color)
}

select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
	color: var(--body-color)
}

select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	color: var(--body-color)
}

select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
	color: var(--body-color)
}

select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	color: var(--body-color)
}

select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
	color: var(--body-color)
}

select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
	color: var(--body-color)
}

select::-ms-input-placeholder,
.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder,
textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
	color: var(--body-color)
}

select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
	color: var(--body-color)
}

select.style2,
.form-control.style2,
.form-select.style2,
textarea.style2,
input.style2 {
	border: 1px solid transparent;
	padding-left: 52px;
	background-image: none
}

select.style2~i,
.form-control.style2~i,
.form-select.style2~i,
textarea.style2~i,
input.style2~i {
	color: var(--theme-color);
	font-weight: 400;
	left: 25px;
	max-width: 16px
}

select.style3,
.form-control.style3,
.form-select.style3,
textarea.style3,
input.style3 {
	background-color: var(--white-color);
	border: none
}

.form-select,
select {
	display: block;
	width: 100%;
	line-height: 1.5;
	vertical-align: middle;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
	background-position: right 26px center;
	background-repeat: no-repeat;
	background-size: 16px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer
}

textarea.form-control,
textarea {
	min-height: 150px;
	padding-top: 16px;
	padding-bottom: 17px;
	border-radius: 5px
}

.form-group {
	margin-bottom: var(--bs-gutter-x);
	position: relative
}

.form-group>i {
	display: inline-block;
	position: absolute;
	right: 25px;
	top: 19px;
	font-size: 16px;
	color: #93a5be
}

.form-group>i.fa-envelope {
	padding-top: 1px
}

.form-group>i.fa-comment {
	margin-top: -2px
}

.form-group>i.fa-chevron-down {
	width: 17px;
	background-color: var(--white-color)
}

.form-group.has-label>i {
	top: 50px
}

[class*="col-"].form-group>i {
	right: calc((var(--bs-gutter-x) / 2) + 25px)
}

[class*="col-"].form-group .style2~i {
	left: calc((var(--bs-gutter-x) / 2) + 25px)
}

option:checked,
option:focus,
option:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0
}



label {
	margin-bottom: 0.5em;
	margin-top: -0.3em;
	display: block;
	color: var(--title-color);
	font-family: var(--body-font);
	font-size: 16px
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
	border: 1px solid var(--error-color) !important;
	background-position: right calc(0.375em + 0.8875rem) center;
	background-image: none
}

textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
	outline: 0;
	box-shadow: none
}

textarea.is-invalid {
	background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem)
}

.row.no-gutters>.form-group {
	margin-bottom: 0
}

.form-messages {
	display: none
}

.form-messages.mb-0 * {
	margin-bottom: 0
}

.form-messages.success {
	color: var(--success-color);
	display: block
}

.form-messages.error {
	color: var(--error-color);
	display: block
}

.form-messages pre {
	padding: 0;
	background-color: transparent;
	color: inherit
}

.slick-track>[class*=col] {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x)/ 2);
	padding-left: calc(var(--bs-gutter-x)/ 2);
	margin-top: var(--bs-gutter-y)
}

.slick-track {
	min-width: 100%
}

.slick-slide img {
	display: inline-block
}

.slick-dots {
	list-style-type: none;
	padding: 2px 0;
	margin: 0;
	line-height: 0;
	text-align: center;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content
}

.slick-dots li {
	display: inline-block;
	margin-right: 10px
}

.slick-dots li:last-child {
	margin-right: 0
}

.slick-dots button {
	font-size: 0;
	padding: 0;
	background-color: transparent;
	width: 20px;
	height: 20px;
	line-height: 0;
	border-radius: 9999px;
	border: none;
	background-color: transparent;
	border: 2px solid #CEDCE9;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	position: relative
}

.slick-dots button:hover {
	border-color: var(--theme-color)
}

.slick-dots button:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	border: none;
	background-color: transparent;
	border-radius: 50%;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	visibility: hidden;
	opacity: 1
}

.slick-dots .slick-active button {
	border-color: var(--theme-color)
}

.slick-dots .slick-active button::before {
	background-color: var(--theme-color);
	visibility: visible;
	opacity: 1
}

.slick-arrow {
	display: inline-block;
	padding: 0;
	background-color: var(--white-color);
	position: absolute;
	top: 50%;
	border: 1px solid #F2F2F2;
	box-shadow: 0px 13px 25px rgba(0, 0, 0, 0.05);
	left: var(--pos-x, -100px);
	width: var(--icon-size, 60px);
	height: var(--icon-size, 60px);
	font-size: var(--icon-font-size, 18px);
	margin-top: calc(var(--icon-size, 60px) / -2);
	z-index: 2;
	border-radius: 999px
}

.slick-arrow.default {
	position: relative;
	--pos-x: 0;
	margin-top: 0
}

.slick-arrow.slick-next {
	right: var(--pos-x, -100px);
	left: auto
}

.slick-arrow:hover {
	background-color: var(--theme-color);
	color: var(--white-color);
	border-color: transparent
}

.arrow-margin .slick-arrow {
	top: calc(50% - 30px)
}

.arrow-wrap .slick-arrow {
	opacity: 0;
	visibility: hidden
}

.arrow-wrap:hover .slick-arrow {
	opacity: 1;
	visibility: visible
}

.as-menu-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	width: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all ease 0.8s;
	transition: all ease 0.8s;
	opacity: 0;
	visibility: hidden
}

.as-menu-wrapper .mobile-logo {
	padding-bottom: 30px;
	padding-top: 20px;
	display: block;
	text-align: center;
	background-color: transparent;
}

.as-menu-wrapper .mobile-logo img {
	max-width: 185px
}
.as-menu-wrapper .as-menu-toggle {
    left: initial;
    border: none;
    font-size: 22px;
    position: absolute;
    right: -20 !important;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 35px;
    font-size: 18px;
    z-index: 1;
    color: #000;
    background-color: transparent;
    border-radius: 50%;
}

.as-menu-wrapper .as-menu-toggle:hover {
	background-color: var(--title-color);
	color: var(--white-color)
}

.as-menu-wrapper .as-menu-area {
	width: 100%;
	max-width: 310px;
	background-color: #fff;
	border-right: 3px solid var(--theme-color);
	height: 100%;
	position: relative;
	left: -110%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease 1s;
	transition: all ease 1s;
	z-index: 1
}

.as-menu-wrapper.as-body-visible {
	opacity: 1;
	visibility: visible
}

.as-menu-wrapper.as-body-visible .as-menu-area {
	left: 0;
	opacity: 1;
	visibility: visible
}

.as-mobile-menu {
	overflow-y: scroll;
	max-height: calc(100vh - 200px);
	padding-bottom: 40px;
	margin-top: 33px;
	text-align: left
}

.as-mobile-menu ul {
	margin: 0;
	padding: 0 0
}

.as-mobile-menu ul li {
	border-bottom: 1px solid #fdedf1;
	list-style-type: none
}

.as-mobile-menu ul li li:first-child {
	border-top: 1px solid #fdedf1
}

.as-mobile-menu ul li a {
	display: block;
	position: relative;
	padding: 12px 0;
	line-height: 1.4;
	font-size: 16px;
	text-transform: capitalize;
	color: var(--title-color);
	padding-left: 18px
}

.as-mobile-menu ul li.as-active>a {
	color: var(--theme-color)
}

.as-mobile-menu ul li.as-active>a:before {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg)
}

.as-mobile-menu ul li ul li {
	padding-left: 20px
}

.as-mobile-menu ul li ul li:last-child {
	border-bottom: none
}

.as-mobile-menu ul .as-item-has-children>a .as-mean-expand {
	position: absolute;
	right: 0;
	top: 50%;
	font-weight: 400;
	font-size: 12px;
	width: 25px;
	height: 25px;
	line-height: 25px;
	margin-top: -12.5px;
	display: inline-block;
	text-align: center;
	background-color: var(--smoke-color);
	color: var(--title-color);
	box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
	border-radius: 50%
}

.as-mobile-menu ul .as-item-has-children>a .as-mean-expand:before {
	content: '\f067';
	font-family: var(--icon-font)
}

.as-mobile-menu ul .as-item-has-children>a:after {
	content: "\f067";
	font-family: var(--icon-font);
	width: 22px;
	height: 22px;
	line-height: 22px;
	display: inline-block;
	text-align: center;
	font-size: 12px;
	border-radius: 50px;
	background-color: var(--smoke-color);
	float: right;
	margin-top: 1px
}

.as-mobile-menu ul .as-item-has-children.as-active>a .as-mean-expand:before {
	content: '\f068'
}

.as-mobile-menu ul .as-item-has-children.as-active>a:after {
	content: "\f068"
}

.as-mobile-menu>ul {
	padding: 0 40px
}

.as-mobile-menu>ul>li:last-child {
	border-bottom: none
}

.as-menu-toggle {
	width: auto;
	height: 50px;
	padding: 0;
	font-size: 20px;
	border: none;
	background-color:transparent;
	color:#000;
	display: inline-block;
	border-radius: 5px
}

.as-menu-toggle:hover {
	background-color: var(--title-color)
}

.as-menu-toggle.style-text,
.as-menu-toggle.style-text-white {
	width: auto;
	height: auto;
	background-color: transparent;
	color: var(--title-color);
	font-size: 20px
}

.as-menu-toggle.style-text i,
.as-menu-toggle.style-text-white i {
	margin-right: 10px
}

.as-menu-toggle.style-text-white {
	color: var(--white-color)
}

@media (max-width: 400px) {
	.as-menu-wrapper .as-menu-area {
		width: 100%;
		max-width: 270px
	}

	.as-mobile-menu>ul {
		padding: 0 20px
	}
}

.preloader {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999;
	background-color: var(--title-color)
}

.preloader .as-btn {
	padding: 15px 20px;
	border-radius: 0;
	font-size: 14px
}

.preloader-inner {
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	line-height: 1
}

.preloader-inner img {
	display: block;
	margin: 0 auto 10px auto
}

.loader {
	width: 48px;
	height: 48px;
	background: var(--theme-color);
	display: block;
	margin: 20px auto;
	position: relative;
	box-sizing: border-box;
	animation: rotationBack 1s ease-in-out infinite reverse
}

.loader::before {
	content: '';
	box-sizing: border-box;
	left: 0;
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	width: 48px;
	height: 48px;
	background: var(--theme-color);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15)
}

.loader::after {
	content: '';
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	background: #FFF;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15)
}

@-webkit-keyframes rotationBack {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg)
	}
}

@keyframes rotationBack {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg)
	}
}

.as-btn {
	position: relative;
	z-index: 2;
	overflow: hidden;
	vertical-align: middle;
	display: inline-block;
	border: none;
	text-transform: uppercase;
	text-align: center;
	background-color: var(--theme-color);
	color: var(--white-color);
	font-family: var(--title-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	padding: 20.5px 29px;
	box-shadow: 0px 6px 16px rgba(13, 94, 244, 0.24);
	border-radius: 5px
}

.as-btn:before {
	content: "";
	position: absolute;
	height: 0%;
	left: 50%;
	top: 50%;
	width: 600%;
	background-color: var(--title-color);
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(60deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(60deg);
	transform: translateX(-50%) translateY(-50%) rotate(60deg);
	z-index: -1;
	-webkit-transition: 0.7s ease;
	transition: 0.7s ease
}

.as-btn:hover,
.as-btn.active {
	color: var(--white-color)
}

.as-btn:hover::before,
.as-btn.active::before {
	height: 560%
}

.as-btn.style2 {
	background-color: transparent;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	padding: 19.5px 27px;
	box-shadow: none
}

.as-btn.style2:hover {
	color: var(--title-color)
}

.as-btn.style2:hover:before {
	background-color: var(--white-color)
}

.as-btn.style3 {
	box-shadow: none
}

.as-btn.style3:hover {
	color: var(--title-color)
}

.as-btn.style3:before {
	background-color: var(--white-color)
}

.as-btn.style4 {
	background-color: transparent;
	color: var(--theme-color);
	border: 1px solid var(--theme-color);
	padding: 19.5px 27px;
	box-shadow: none
}

.as-btn.style4:before {
	background-color: var(--white-color)
}

.as-btn.style4:hover {
	color: var(--white-color)
}

.as-btn.style4:hover:before {
	background-color: var(--theme-color)
}

.as-btn.style5 {
	background-color: var(--smoke-color);
	color: var(--theme-color);
	box-shadow: none
}

.as-btn.style5:before {
	background-color: var(--smoke-color)
}

.as-btn.style5:hover {
	color: var(--white-color)
}

.as-btn.style5:hover:before {
	background-color: var(--theme-color)
}

.icon-btn {
	display: inline-block;
	width: var(--btn-size, 50px);
	height: var(--btn-size, 50px);
	line-height: var(--btn-size, 50px);
	font-size: var(--btn-font-size, 16px);
	background-color: var(--icon-bg, #fff);
	color: var(--title-color);
	text-align: center;
	border-radius: 50%;
	border: none
}

.icon-btn:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.play-btn {
	display: inline-block;
	position: relative;
	z-index: 1
}

.play-btn>i {
	display: inline-block;
	width: var(--icon-size, 100px);
	height: var(--icon-size, 100px);
	line-height: var(--icon-size, 100px);
	text-align: center;
	background-color: var(--white-color);
	color: var(--theme-color);
	font-size: var(--icon-font-size, 1.2em);
	border-radius: 50%;
	z-index: 1;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.play-btn:after,
.play-btn:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: var(--title-color);
	z-index: -1;
	border-radius: 50%;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.play-btn:after {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.link-btn {
	font-weight: 600;
	font-size: 14px;
	display: inline-block;
	line-height: 0.8;
	position: relative;
	padding-bottom: 2px;
	margin-bottom: -2px;
	text-transform: uppercase;
	color: var(--theme-color)
}

.link-btn i {
	margin-left: 5px;
	font-size: 0.9rem
}

.link-btn:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: var(--theme-color);
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.link-btn:hover {
	color: var(--theme-color)
}

.link-btn:hover::before {
	width: 100%
}

.scroll-btn {
	position: fixed;
	bottom: 300px;
	right: 30px;
	z-index: 94;
	opacity: 0;
	visibility: hidden;
	display: inline-block;
	border-radius: 50%
}

.scroll-btn i {
	display: inline-block;
	background-color: var(--theme-color);
	color: var(--white-color);
	text-align: center;
	font-size: 16px;
	width: var(--btn-size, 55px);
	height: var(--btn-size, 55px);
	line-height: var(--btn-size, 55px);
	z-index: 2;
	border-radius: inherit;
	position: relative;
	-webkit-transition: all ease 0.8s;
	transition: all ease 0.8s
}

.scroll-btn:before {
	content: "";
	position: absolute;
	left: var(--extra-shape, -10px);
	top: var(--extra-shape, -10px);
	right: var(--extra-shape, -10px);
	bottom: var(--extra-shape, -10px);
	background-color: #fff;
	border-radius: inherit;
	z-index: 1
}

.scroll-btn:focus i,
.scroll-btn:hover i {
	background-color: var(--title-color);
	color: var(--white-color)
}

.scroll-btn.show {
	bottom: 120px;
	opacity: 1;
	visibility: visible
}

@media (max-width: 767px) {
	.scroll-btn {
		--btn-size: 40px;
		--extra-shape: -4px;
		right: 15px;
		bottom: 50px
	}

	.scroll-btn.show {
		bottom: 15px
	}
}

.scrollToTop {
	position: fixed;
	right: 60px;
	bottom: 500px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	z-index: 96
}

.scrollToTop.show {
	bottom: 60px;
	opacity: 1;
	visibility: visible
}

@media (max-width: 767px) {
	.play-btn {
		--icon-size: 60px
	}

	.scrollToTop {
		right: 20px
	}

	.scrollToTop.show {
		bottom: 60px
	}
}

.sec-title {
	margin-bottom: calc(var(--section-title-space) - 12px);
	margin-top: -0.23em
}

.sub-title {
	font-size: 16px;
	font-weight: 500;
	color: var(--theme-color);
	font-family: var(--title-font);
	text-transform: uppercase;
	margin-top: -0.41em;
	margin-bottom: 22px;
	display: block
}

.title-area {
	margin-bottom: calc(var(--section-title-space) - 12px);
	position: relative;
	z-index: 2
}

.title-area .sec-title {
	margin-bottom: 15px
}

.title-area.mb-0 .sec-title {
	margin-bottom: -0.41em
}

.sec-text {
	max-width: 670px
}

.title-area.text-center .sec-text {
	margin-left: auto;
	margin-right: auto
}

.sec-btn {
	margin-bottom: var(--section-title-space)
}

@media (max-width: 767px) {
	.shadow-title {
		font-size: 60px
	}
}

@media (max-width: 375px) {
	.shadow-title {
		font-size: 50px;
		top: 55%
	}
}

.image-scale-hover {
	overflow: hidden
}

.image-scale-hover img {
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	-webkit-transform: scale(1.001);
	-ms-transform: scale(1.001);
	transform: scale(1.001)
}

.image-scale-hover:hover img {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2)
}

.z-index-step1 {
	position: relative;
	z-index: 4 !important
}

.z-index-common {
	position: relative;
	z-index: 3
}

.z-index-n1 {
	z-index: -1
}

.media-body {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1
}

.badge {
	position: absolute;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: inline-block;
	text-align: center;
	background-color: var(--theme-color);
	color: var(--white-color);
	padding: 0.35em 0.55em;
	border-radius: 50%;
	top: -5px;
	right: -5px;
	font-weight: 400
}

.as-social a {
	display: inline-block;
	width: var(--icon-size, 45px);
	height: var(--icon-size, 45px);
	line-height: var(--icon-size, 45px);
	background-color: var(--white-color);
	color: var(--theme-color);
	font-size: 16px;
	text-align: center;
	margin-right: 5px;
	border-radius: 50%
}

.as-social a:last-child {
	margin-right: 0
}

.as-social a:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.slider-shadow .slick-list {
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: -30px;
	margin-top: -30px
}

.btn-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px
}

.video-box {
	position: relative;
	border-radius: 10px;
	overflow: hidden
}

.video-box .overlay {
	width: 100%;
	height: 100%;
	background-color: var(--black-color);
	opacity: 0.6;
	position: absolute;
	inset: 0
}

.video-box .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2
}

.video-box .video-content {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	width: 100%;
	padding: 30px 15px
}

.video-box .video-title {
	color: var(--white-color);
	margin: 0 auto 40px auto;
	font-weight: 500;
	max-width: 760px
}

.video-box .video-text {
	font-size: 14px;
	text-transform: uppercase;
	color: var(--white-color);
	display: block;
	margin-top: 20px
}

.video-box .icon-btn {
	background-color: transparent;
	border: 1px solid;
	color: var(--white-color);
	--btn-size: 80px;
	font-size: 20px
}

.video-box .icon-btn:hover {
	color: var(--theme-color)
}

.shape-mockup-wrap {
	z-index: 2;
	position: relative
}

.shape-mockup {
	position: absolute;
	z-index: -1
}

.shape-mockup.z-index3 {
	z-index: 3
}

.font-icon {
	font-family: var(--icon-font)
}

.font-title {
	font-family: var(--title-font)
}

.font-body {
	font-family: var(--body-font)
}

.fw-extralight {
	font-weight: 100
}

.fw-light {
	font-weight: 300
}

.fw-normal {
	font-weight: 400
}

.fw-medium {
	font-weight: 500
}

.fw-semibold {
	font-weight: 600
}

.fw-bold {
	font-weight: 700
}

.fw-extrabold {
	font-weight: 800
}

.fs-md {
	font-size: 18px
}

.fs-xs {
	font-size: 14px
}

.fs-40 {
	font-size: 40px
}

.bg-theme {
	background-color: var(--theme-color) !important
}

.bg-theme2 {
	background-color: var(--theme-color2) !important
}

.bg-smoke {
	background-color: var(--smoke-color) !important
}

.bg-white {
	background-color: var(--white-color) !important
}

.bg-black {
	background-color: var(--black-color) !important
}

.bg-title {
	background-color: var(--title-color) !important
}

.gr-bg1 {
	background-image: -webkit-linear-gradient(194.6deg, rgba(146, 184, 253, 0.15) 5.09%, var(--smoke-color) 63%);
	background-image: linear-gradient(255.4deg, rgba(146, 184, 253, 0.15) 5.09%, var(--smoke-color) 63%)
}

.gr-bg2 {
	background-image: -webkit-linear-gradient(right, #EDF2FB 0%, #fff 100%);
	background-image: linear-gradient(270deg, #EDF2FB 0%, #fff 100%)
}

.background-image,
[data-bg-src] {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center
}

.bg-fluid {
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center
}

.bg-auto {
	background-size: auto auto
}

.bg-bottom-right {
	background-size: auto;
	background-position: bottom right
}

.bg-top-center {
	background-size: 100% 67%;
	background-position: top center
}

.text-theme {
	color: var(--theme-color) !important
}

.text-theme2 {
	color: var(--theme-color2) !important
}

.text-title {
	color: var(--title-color) !important
}

.text-body {
	color: var(--body-color) !important
}

.text-white {
	color: var(--white-color) !important
}

.text-light {
	color: var(--light-color) !important
}

.text-yellow {
	color: var(--yellow-color) !important
}

.text-success {
	color: var(--success-color) !important
}

.text-error {
	color: var(--error-color) !important
}

.text-inherit {
	color: inherit
}

.text-inherit:hover {
	color: var(--theme-color)
}

a.text-theme:hover,
.text-reset:hover {
	text-decoration: underline
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%
}

.position-center {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

[data-overlay] {
	position: relative;
	z-index: 2
}

[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
	z-index: 1
}

[data-overlay]:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1
}

[data-overlay="theme"]:before {
	background-color: var(--theme-color)
}

[data-overlay="title"]:before {
	background-color: var(--title-color)
}

[data-overlay="white"]:before {
	background-color: var(--white-color)
}

[data-overlay="black"]:before {
	background-color: var(--black-color)
}

[data-overlay="overlay1"]:before {
	background-color: #041122
}

[data-opacity="1"]:before {
	opacity: .1
}

[data-opacity="2"]:before {
	opacity: .2
}

[data-opacity="3"]:before {
	opacity: .3
}

[data-opacity="4"]:before {
	opacity: .4
}

[data-opacity="5"]:before {
	opacity: .5
}

[data-opacity="6"]:before {
	opacity: .6
}

[data-opacity="7"]:before {
	opacity: .7
}

[data-opacity="8"]:before {
	opacity: .8
}

[data-opacity="9"]:before {
	opacity: .9
}

[data-opacity="10"]:before {
	opacity: 1
}

.ripple-animation,
.play-btn:after,
.play-btn:before {
	-webkit-animation-duration: var(--ripple-ani-duration);
	animation-duration: var(--ripple-ani-duration);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: ripple;
	animation-name: ripple
}

@-webkit-keyframes ripple {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}

	30% {
		opacity: 0.4
	}

	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0
	}
}

@keyframes ripple {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}

	30% {
		opacity: 0.4
	}

	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0
	}
}

.movingX {
	-webkit-animation: movingX 8s linear infinite;
	animation: movingX 8s linear infinite
}

@-webkit-keyframes movingX {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	50% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes movingX {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	50% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.jump {
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

@-webkit-keyframes jumpAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes jumpAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.jump-reverse {
	-webkit-animation: jumpReverseAni 7s linear infinite;
	animation: jumpReverseAni 7s linear infinite
}

@-webkit-keyframes jumpReverseAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes jumpReverseAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.spin {
	-webkit-animation: spin 15s linear infinite;
	animation: spin 15s linear infinite
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	50% {
		-webkit-transform: rotate(40deg);
		transform: rotate(40deg)
	}

	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	50% {
		-webkit-transform: rotate(40deg);
		transform: rotate(40deg)
	}

	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@-webkit-keyframes animate-positive {
	0% {
		width: 0
	}
}

@keyframes animate-positive {
	0% {
		width: 0
	}
}

.scalein.as-animated {
	--animation-name: scalein
}

.slidetopleft.as-animated {
	--animation-name: slidetopleft
}

.slidebottomright.as-animated {
	--animation-name: slidebottomright
}

.slideinleft.as-animated {
	--animation-name: slideinleft
}

.slideinright.as-animated {
	--animation-name: slideinright
}

.slideinup.as-animated {
	--animation-name: slideinup
}

.slideindown.as-animated {
	--animation-name: slideindown
}

.rollinleft.as-animated {
	--animation-name: rollinleft
}

.rollinright.as-animated {
	--animation-name: rollinright
}

.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
	opacity: 0;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-name: var(--animation-name);
	animation-name: var(--animation-name)
}

.as-animated {
	opacity: 1
}

@-webkit-keyframes slideinup {
	0% {
		opacity: 0;
		-webkit-transform: translateY(70px);
		transform: translateY(70px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideinup {
	0% {
		opacity: 0;
		-webkit-transform: translateY(70px);
		transform: translateY(70px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes slideinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(70px);
		transform: translateX(70px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(70px);
		transform: translateX(70px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@-webkit-keyframes slideindown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-70px);
		transform: translateY(-70px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideindown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-70px);
		transform: translateY(-70px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes slideinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-70px);
		transform: translateX(-70px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-70px);
		transform: translateX(-70px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@-webkit-keyframes slidebottomright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px) translateY(100px);
		transform: translateX(100px) translateY(100px)
	}

	100% {
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0)
	}
}

@keyframes slidebottomright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px) translateY(100px);
		transform: translateX(100px) translateY(100px)
	}

	100% {
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0)
	}
}

@-webkit-keyframes slidetopleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px) translateY(-100px);
		transform: translateX(-100px) translateY(-100px)
	}

	100% {
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0)
	}
}

@keyframes slidetopleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px) translateY(-100px);
		transform: translateX(-100px) translateY(-100px)
	}

	100% {
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0)
	}
}

@-webkit-keyframes scalein {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.3);
		transform: scale(0.3)
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes scalein {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.3);
		transform: scale(0.3)
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@-webkit-keyframes rollinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg)
	}

	to {
		-webkit-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg)
	}
}

@keyframes rollinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg)
	}

	to {
		-webkit-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg)
	}
}

@-webkit-keyframes rollinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg)
	}

	to {
		-webkit-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg)
	}
}

@keyframes rollinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg)
	}

	to {
		-webkit-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg)
	}
}

.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul {
	list-style: none;
	padding: 0;
	margin: 0 0 0 0
}

.widget_nav_menu .menu,
.widget_nav_menu>ul,
.widget_meta .menu,
.widget_meta>ul,
.widget_pages .menu,
.widget_pages>ul,
.widget_archive .menu,
.widget_archive>ul,
.widget_categories .menu,
.widget_categories>ul {
	margin: 0 0 -20px 0
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_categories a {
	display: block;
	margin: 0 0 20px 0;
	padding: 0 35px 0 29px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.18;
	color: var(--body-color)
}

.widget_nav_menu a::before,
.widget_meta a::before,
.widget_pages a::before,
.widget_archive a::before,
.widget_categories a::before {
	content: '\f00c';
	width: 18px;
	height: 18px;
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	line-height: 18px;
	font-size: 0.8em;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	font-family: var(--icon-font);
	font-weight: 400;
	color: var(--white-color);
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.widget_nav_menu a:hover,
.widget_meta a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover {
	color: var(--theme-color)
}

.widget_nav_menu a:hover~span,
.widget_meta a:hover~span,
.widget_pages a:hover~span,
.widget_archive a:hover~span,
.widget_categories a:hover~span {
	color: var(--theme-color)
}

.widget_nav_menu a:hover:before,
.widget_meta a:hover:before,
.widget_pages a:hover:before,
.widget_archive a:hover:before,
.widget_categories a:hover:before {
	color: var(--white-color);
	background-color: var(--theme-color);
	border-color: var(--theme-color)
}

.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_archive li,
.widget_categories li {
	display: block;
	position: relative
}

.widget_nav_menu li:last-child a,
.widget_meta li:last-child a,
.widget_pages li:last-child a,
.widget_archive li:last-child a,
.widget_categories li:last-child a {
	border-bottom: none
}

.widget_nav_menu li>span,
.widget_meta li>span,
.widget_pages li>span,
.widget_archive li>span,
.widget_categories li>span {
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 16px;
	line-height: 1.18;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	color: var(--body-color);
	font-weight: 400
}

.widget_nav_menu .children,
.widget_meta .children,
.widget_pages .children,
.widget_archive .children,
.widget_categories .children {
	margin-left: 10px
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a {
	padding-right: 20px
}

.widget_nav_menu .sub-menu {
	margin-left: 10px
}

.wp-block-archives {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 20px
}

.wp-block-archives a:not(:hover) {
	color: inherit
}

.as-blog ul.wp-block-archives li {
	margin: 5px 0
}

.widget {
	padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
	border: 1px solid var(--border-color);
	box-shadow: 0px 9px 14px #FBFBFB;
	border-radius: 10px;
	margin-bottom: 40px;
	position: relative
}

.widget select,
.widget input {
	height: 55px;
	border-radius: 8px
}

.wp-block-search__label,
.widget_title {
	position: relative;
	font-size: 24px;
	font-weight: 600;
	font-family: var(--title-font);
	line-height: 1em;
	margin: -0.1em 0 29px 0;
	padding-bottom: 16px;
	border-bottom: 1px dashed #D3DBEB
}

.wp-block-search__label a,
.widget_title a {
	color: inherit
}

.widget .search-form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.widget .search-form input {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-right: 8px;
	border-radius: 8px 0 0 8px
}

.widget .search-form button {
	border: none;
	width: 55px;
	height: 55px;
	line-height: 55px;
	background-color: var(--theme-color);
	color: var(--white-color);
	display: inline-block;
	border-radius: 0 8px 8px 0
}

.widget .search-form button:hover {
	background-color: var(--title-color);
	color: var(--white-color)
}

.wp-block-tag-cloud a,
.tagcloud a {
	display: inline-block;
	border: none;
	line-height: 1;
	padding: 9.5px 16px;
	margin-right: 5px;
	margin-bottom: 10px;
	text-transform: capitalize;
	color: var(--body-color);
	background-color: var(--smoke-color);
	border-radius: 5px
}

.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
	background-color: var(--theme-color);
	color: var(--white-color) !important
}

.tagcloud {
	margin-right: -10px;
	margin-bottom: -10px
}

.recent-post {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 25px;
	line-height: 20px
}

.recent-post:last-child {
	margin-bottom: 0
}

.recent-post .media-img {
	margin-right: 20px;
	width: 80px;
	border-radius: 5px;
	overflow: hidden
}

.recent-post .media-img img {
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.recent-post .post-title {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	margin: 0 0 -0.1em 0;
	font-family: var(--title-font)
}

.recent-post .recent-post-meta {
	margin-bottom: 5px
}

.recent-post .recent-post-meta a {
	text-transform: capitalize;
	color: var(--body-color)
}

.recent-post .recent-post-meta a:hover {
	color: var(--theme-color)
}

.recent-post .recent-post-meta a i {
	margin-right: 8px;
	color: var(--theme-color)
}

.recent-post:hover .media-img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.sidebar-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}

.sidebar-gallery .gallery-thumb {
	overflow: hidden;
	border-radius: 6px
}

.sidebar-gallery .gallery-thumb img {
	width: 100%
}

.vs-video-widget .video-thumb {
	position: relative
}

.vs-video-widget .play-btn {
	--icon-size: 60px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vs-video-widget .play-btn i {
	font-size: 16px
}

.vs-video-widget .video-thumb-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin-top: 10px;
	margin-bottom: -0.3em
}

.widget_recent_entries ul {
	margin: -0.3em 0 0 0;
	padding: 0;
	list-style: none
}

.widget_recent_entries ul li>a {
	color: var(--body-color);
	font-weight: 500;
	display: inline-block
}

.widget_recent_entries ul li>a:hover {
	color: var(--theme-color)
}

.widget_recent_entries ul li span.post-date {
	font-size: 14px
}

.widget_recent_entries ul li:not(:last-child) {
	border-bottom: 1px solid #dadada;
	padding-bottom: 12px;
	margin-bottom: 12px
}

.widget_recent_comments ul,
.wp-block-latest-comments ul {
	list-style-type: none;
	padding-left: 0
}

ul.widget_recent_comments,
ol.widget_recent_comments,
.wp-block-latest-comments {
	margin-top: -0.11em;
	padding-left: 0
}

.widget_recent_comments ol,
.widget_recent_comments ul,
.wp-block-latest-comments ol,
.wp-block-latest-comments ul {
	margin-bottom: 0
}

.widget_recent_comments li,
.wp-block-latest-comments li {
	margin-bottom: 0;
	color: var(--body-color);
	padding-left: 30px;
	position: relative
}

.widget_recent_comments li:before,
.wp-block-latest-comments li:before {
	content: "\f086";
	position: absolute;
	left: 0;
	top: -1px;
	color: var(--theme-color);
	font-family: var(--icon-font)
}

.widget_recent_comments.has-avatars li,
.wp-block-latest-comments.has-avatars li {
	padding-left: 0;
	padding-bottom: 0 !important
}

.widget_recent_comments.has-avatars li:before,
.wp-block-latest-comments.has-avatars li:before {
	display: none
}

.widget_recent_comments .avatar,
.wp-block-latest-comments .avatar {
	margin-top: 0.4em
}

.widget_recent_comments li:not(:last-child),
.wp-block-latest-comments li:not(:last-child) {
	padding-bottom: 12px
}

.widget_recent_comments article,
.wp-block-latest-comments article {
	line-height: 1.5
}

.widget_recent_comments a,
.wp-block-latest-comments a {
	color: inherit
}

.widget_recent_comments a:hover,
.wp-block-latest-comments a:hover {
	color: var(--theme-color)
}

.wp-block-latest-comments__comment {
	line-height: 1.6
}

.wp-block-latest-comments__comment a {
	color: var(--body-color)
}

.wp-block-latest-comments__comment a:hover {
	color: var(--theme-color)
}

.wp-block-latest-comments__comment:last-child {
	margin-bottom: 0
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
	padding: 10px
}

.wp-block-calendar,
.calendar_wrap {
	position: relative;
	background-color: #fff;
	padding-bottom: 0;
	border: none
}

.wp-block-calendar span[class*="wp-calendar-nav"],
.calendar_wrap span[class*="wp-calendar-nav"] {
	position: absolute;
	top: 9px;
	left: 20px;
	font-size: 14px;
	color: var(--white-color);
	font-weight: 400;
	z-index: 1;
	line-height: 1.7
}

.wp-block-calendar span[class*="wp-calendar-nav"] a,
.calendar_wrap span[class*="wp-calendar-nav"] a {
	color: inherit
}

.wp-block-calendar span.wp-calendar-nav-next,
.calendar_wrap span.wp-calendar-nav-next {
	left: auto;
	right: 20px
}

.wp-block-calendar caption,
.calendar_wrap caption {
	caption-side: top;
	text-align: center;
	color: var(--white-color);
	background-color: var(--theme-color)
}

.wp-block-calendar th,
.calendar_wrap th {
	font-size: 14px;
	padding: 5px 5px;
	border: none;
	text-align: center;
	border-right: 1px solid #fff;
	color: var(--title-color);
	font-weight: 500
}

.wp-block-calendar th:first-child,
.calendar_wrap th:first-child {
	border-left: 1px solid #eee
}

.wp-block-calendar th:last-child,
.calendar_wrap th:last-child {
	border-right: 1px solid #eee
}

.wp-block-calendar table th,
.calendar_wrap table th {
	font-weight: 500
}

.wp-block-calendar td,
.calendar_wrap td {
	font-size: 14px;
	padding: 5px 5px;
	color: #01133c;
	border: 1px solid #eee;
	text-align: center;
	background-color: transparent;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.wp-block-calendar #today,
.calendar_wrap #today {
	color: var(--theme-color);
	background-color: var(--white-color);
	border-color: #ededed
}

.wp-block-calendar thead,
.calendar_wrap thead {
	background-color: #eee
}

.wp-block-calendar .wp-calendar-table,
.calendar_wrap .wp-calendar-table {
	margin-bottom: 0
}

.wp-block-calendar .wp-calendar-nav .pad,
.calendar_wrap .wp-calendar-nav .pad {
	display: none
}

.wp-block-calendar a,
.calendar_wrap a {
	color: inherit;
	text-decoration: none
}

.wp-block-calendar a:hover,
.calendar_wrap a:hover {
	color: var(--title-color)
}

.wp-block-calendar {
	margin-bottom: 30px;
	border: none;
	padding-bottom: 0
}

.wp-block-calendar table caption {
	color: var(--white-color)
}

ul.widget_rss,
ul.wp-block-rss,
ol.widget_rss,
ol.wp-block-rss {
	padding-left: 0
}

.widget_rss,
.wp-block-rss {
	list-style-type: none
}

.widget_rss ul,
.wp-block-rss ul {
	margin: -0.2em 0 -0.5em 0;
	padding: 0;
	list-style: none
}

.widget_rss ul .rsswidget,
.wp-block-rss ul .rsswidget {
	color: var(--title-color);
	font-family: var(--theme-font);
	font-size: 18px;
	display: block;
	margin-bottom: 10px
}

.widget_rss ul .rssSummary,
.wp-block-rss ul .rssSummary {
	font-size: 14px;
	margin-bottom: 7px;
	line-height: 1.5
}

.widget_rss ul a,
.wp-block-rss ul a {
	display: block;
	font-weight: 600;
	color: inherit
}

.widget_rss ul a:hover,
.wp-block-rss ul a:hover {
	color: var(--theme-color)
}

.widget_rss ul .rss-date,
.wp-block-rss ul .rss-date {
	font-size: 14px;
	display: inline-block;
	margin-bottom: 5px;
	font-weight: 400;
	color: var(--title-color)
}

.widget_rss ul .rss-date:before,
.wp-block-rss ul .rss-date:before {
	content: "\f073";
	font-family: var(--icon-font);
	margin-right: 10px;
	font-weight: 300;
	color: var(--theme-color)
}

.widget_rss ul cite,
.wp-block-rss ul cite {
	font-weight: 500;
	color: var(--title-color);
	font-family: var(--body-font);
	font-size: 14px
}

.widget_rss ul cite:before,
.wp-block-rss ul cite:before {
	content: "";
	position: relative;
	top: -2px;
	left: 0;
	width: 20px;
	height: 2px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
	background-color: var(--theme-color)
}

.widget_rss li:not(:last-child),
.wp-block-rss li:not(:last-child) {
	margin-bottom: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 16px
}

.widget_rss a:hover,
.wp-block-rss a:hover {
	color: var(--theme-color)
}

.textwidget {
	margin-top: -0.1em
}

.widget_shopping_cart .widget_title {
	margin-bottom: 30px;
	border-bottom: none
}

.widget_shopping_cart ul {
	margin: 0;
	padding: 0
}

.widget_shopping_cart ul li {
	list-style-type: none
}

.widget_shopping_cart .mini_cart_item {
	position: relative;
	padding: 30px 10px 30px 90px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 0;
	text-align: left
}

.widget_shopping_cart .mini_cart_item:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.1)
}

.widget_shopping_cart .cart_list a:not(.remove) {
	display: block;
	color: var(--body-color);
	font-size: 16px;
	font-weight: 500;
	font-family: var(--title-font);
	font-weight: 600;
	color: var(--title-color)
}

.widget_shopping_cart .cart_list a:not(.remove):hover {
	color: var(--theme-color)
}

.widget_shopping_cart .cart_list a.remove {
	position: absolute;
	top: 50%;
	left: 95%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--body-color)
}

.widget_shopping_cart .cart_list a.remove:hover {
	color: var(--theme-color)
}

.widget_shopping_cart .cart_list img {
	width: 75px;
	height: 75px;
	position: absolute;
	left: 0;
	top: 20px;
	border: 1px solid var(--border-color)
}

.widget_shopping_cart .quantity {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	white-space: nowrap;
	vertical-align: top;
	margin-right: 20px;
	font-size: 14px;
	color: var(--theme-color)
}

.widget_shopping_cart .total {
	margin-top: 20px;
	font-size: 18px;
	color: var(--title-color);
	font-family: var(--body-font)
}

.widget_shopping_cart .amount {
	padding-left: 5px
}

.widget_shopping_cart .as-btn {
	margin-right: 15px
}

.widget_shopping_cart .as-btn:last-child {
	margin-right: 0
}

.sidebar-area .widget_shopping_cart .as-btn {
	margin-right: 10px;
	padding: 8px 22px;
	font-size: 14px
}

.sidebar-area {
	margin-bottom: -10px
}

.sidebar-area .as-video {
	padding: 0;
	box-shadow: none;
	border-radius: 5px
}

.sidebar-area .as-video .play-btn {
	--icon-size: 50px;
	font-size: 15px
}

.sidebar-area .as-video .play-btn>i {
	background-color: var(--white-color);
	color: var(--theme-color)
}

.sidebar-area .as-video .play-btn:after,
.sidebar-area .as-video .play-btn:before {
	background-color: var(--white-color)
}

.sidebar-area ul.wp-block-latest-posts {
	margin-bottom: 0
}

.sidebar-area ul.wp-block-latest-posts li:last-child {
	margin-bottom: 0
}

.sidebar-area .wp-block-tag-cloud a,
.sidebar-area .tagcloud a {
	border: none
}

.sidebar-area .newsletter-form button {
	width: 100%;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 400;
	height: 60px;
	margin-top: 10px
}

.sidebar-area .widget .wp-block-search {
	margin-bottom: 0
}

.sidebar-area .wp-block-group__inner-container h2 {
	font-size: 20px;
	line-height: 1em;
	margin-bottom: 20px;
	margin-top: -0.07em
}

.sidebar-area ol.wp-block-latest-comments {
	padding: 0;
	margin: 0
}

.sidebar-area ol.wp-block-latest-comments li {
	line-height: 1.5;
	margin: 0 0 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 20px
}

.sidebar-area ol.wp-block-latest-comments li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none
}

.recent-product {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.recent-product .product-title {
	font-size: 16px
}

.widget_info .widget_title {
	margin: 29px 0 0 0
}

.widget_info .as-btn {
	width: 100%;
	margin-bottom: 10px;
	display: block
}

.widget_info .as-video {
	margin-bottom: 20px
}

.widget_info .course-price {
	display: block;
	font-weight: bold;
	margin-bottom: 19px
}

.widget_info .course-price .tag {
	display: inline-block;
	background-color: var(--theme-color2);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--white-color);
	border-radius: 99px;
	padding: 2px 13px;
	vertical-align: middle;
	margin-bottom: 5px
}

.info-list ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.info-list i {
	color: var(--theme-color);
	width: 16px;
	margin-right: 2px;
	font-size: 16px
}

.info-list strong {
	font-weight: 500;
	color: var(--title-color)
}

.info-list li {
	border-bottom: 1px dashed #D3DBEB;
	padding: 12px 0
}

.info-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: -0.45em
}

.widget_banner {
	padding: 0 !important;
	border: none
}

.widget-map {
	line-height: 1px;
	border-radius: 10px
}

.widget-map iframe {
	border-radius: 10px;
	height: 327px
}

@media (max-width: 767px) {
	.widget {
		--blog-space-y: 40px;
		--blog-space-x: 20px
	}

	.col-lg-4 .sidebar-area .widget {
		--blog-space-y: 40px;
		--blog-space-x: 20px
	}
}

.footer-widget {
	margin-bottom: 40px
}

.footer-widget,
.footer-widget .widget {
	padding: 0;
	border: none;
	padding-bottom: 0;
	background-color: transparent;
	box-shadow: none
}

.footer-widget input,
.footer-widget select {
	height: 55px;
	background-color: transparent;
	border: 1px solid #283752
}

.footer-widget input:focus,
.footer-widget select:focus {
	border-color: var(--theme-color);
	background-color: transparent
}

.footer-widget .form-group>i {
	color: var(--theme-color);
	top: 18px
}

.footer-widget .widget_title {
	position: relative;
	border: none;
	font-family: var(--title-font);
	color: var(--white-color);
	line-height: 1;
	border-bottom: 0;
	padding: 0 0 18px 0;
	margin: -0.1em 0 35px 0;
	max-width: 275px
}

.footer-widget .widget_title:before,
.footer-widget .widget_title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 51px;
	height: 3px;
	background-color: var(--theme-color)
}

.footer-widget .widget_title:after {
	width: 10px;
	left: 56px;
	border-right: 10px solid var(--theme-color);
	box-shadow: 15px 0 0 0 var(--theme-color)
}

.footer-widget.widget_meta,
.footer-widget.widget_pages,
.footer-widget.widget_archive,
.footer-widget.widget_categories,
.footer-widget.widget_nav_menu {
	margin-bottom: 40px
}

.footer-widget.widget_meta ul,
.footer-widget.widget_pages ul,
.footer-widget.widget_archive ul,
.footer-widget.widget_categories ul,
.footer-widget.widget_nav_menu ul {
	margin-top: -2px
}

.footer-widget.widget_meta .menu,
.footer-widget.widget_meta>ul,
.footer-widget.widget_pages .menu,
.footer-widget.widget_pages>ul,
.footer-widget.widget_archive .menu,
.footer-widget.widget_archive>ul,
.footer-widget.widget_categories .menu,
.footer-widget.widget_categories>ul,
.footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu>ul {
	margin-bottom: -5px
}

.footer-widget.widget_meta a,
.footer-widget.widget_pages a,
.footer-widget.widget_archive a,
.footer-widget.widget_categories a,
.footer-widget.widget_nav_menu a {
	font-size: 16px;
	font-weight: 400;
	padding: 0 0 0 15px;
	margin-bottom: 20px;
	font-family: var(--body-font);
	display: block;
	max-width: 100%;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding-right: 0;
	background-color: transparent;
	position: relative
}

.footer-widget.widget_meta a:before,
.footer-widget.widget_pages a:before,
.footer-widget.widget_archive a:before,
.footer-widget.widget_categories a:before,
.footer-widget.widget_nav_menu a:before {
	content: "\e122";
	font-weight: 900;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: inherit;
	width: unset;
	background-color: transparent;
	border: none;
	font-size: 0.5em;
	color: var(--body-color);
	line-height: 0;
	height: 5px
}

.footer-widget.widget_meta a:hover,
.footer-widget.widget_pages a:hover,
.footer-widget.widget_archive a:hover,
.footer-widget.widget_categories a:hover,
.footer-widget.widget_nav_menu a:hover {
	background-color: transparent;
	color: var(--white-color)
}

.footer-widget.widget_meta a:hover:before,
.footer-widget.widget_pages a:hover:before,
.footer-widget.widget_archive a:hover:before,
.footer-widget.widget_categories a:hover:before,
.footer-widget.widget_nav_menu a:hover:before {
	color: var(--white-color)
}

.footer-widget.widget_meta li>span,
.footer-widget.widget_pages li>span,
.footer-widget.widget_archive li>span,
.footer-widget.widget_categories li>span,
.footer-widget.widget_nav_menu li>span {
	width: auto;
	height: auto;
	position: relative;
	background-color: transparent;
	color: var(--body-color);
	line-height: 1
}

.footer-widget.widget_meta li:last-child a,
.footer-widget.widget_pages li:last-child a,
.footer-widget.widget_archive li:last-child a,
.footer-widget.widget_categories li:last-child a,
.footer-widget.widget_nav_menu li:last-child a {
	margin-bottom: 0
}

.footer-widget .recent-post {
	max-width: 310px;
	margin-bottom: 15px;
	padding-bottom: 0;
	border-bottom: none
}

.footer-widget .recent-post .media-img {
	margin-right: 18px;
	width: 110px
}

.footer-widget .recent-post .post-title {
	color: var(--white-color);
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 10px
}

.footer-widget .recent-post:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0
}

.footer-widget .recent-post .recent-post-meta i {
	color: var(--white-color);
	-webkit-transition: 0.3s;
	transition: 0.3s
}

.footer-widget .recent-post .recent-post-meta a:hover i {
	color: var(--theme-color)
}

.footer-widget .footer-logo {
	margin-bottom: 15px
}

.as-widget-about .about-logo {
	margin-bottom: 30px;
	margin-top: -5px
}

.as-widget-about .about-text {
	margin-bottom: 25px;
	margin-top: -0.46em
}

.footer-text {
	margin-top: -0.46em;
	margin-bottom: 25px
}

.newsletter-widget .form-group {
	margin-bottom: 20px
}

.as-widget-schedule {
	margin-top: -0.25em
}

.as-widget-schedule .footer-info {
	padding-left: 0
}

.footer-table {
	margin-top: -15px;
	border: none;
	margin-bottom: 0
}

.footer-table th,
.footer-table td {
	border: none;
	padding: 8px 0;
	font-size: 16px
}

.footer-table td {
	padding-left: 50px
}

.footer-table th {
	padding-right: 13px;
	font-weight: 500;
	color: var(--white-color)
}

.footer-info-title {
	font-size: 20px;
	font-family: var(--body-font);
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 15px;
	margin-top: -0.27em
}

.footer-info {
	position: relative;
	margin: 0 0 25px 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 0 0 0 35px;
	max-width: 300px
}

.footer-info:last-child {
	margin-bottom: 0
}

.footer-info i {
	display: inline-block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	background-color: var(--theme-color);
	color: var(--white-color);
	position: absolute;
	left: 0;
	font-size: 10px
}

.footer-info:nth-child(2) i {
	background-color: var(--theme-color)
}

.footer-info:nth-child(3) i {
	background-color: var(--title-color)
}

.footer-widget.style2 .widget_title {
	font-size: 18px;
	text-transform: uppercase;
	padding: 0 0 20px 0;
	font-weight: 500
}

.footer-widget.style2 .widget_title:before {
	height: 2px;
	width: 60px;
	background-color: var(--white-color)
}

.footer-widget.style2 .widget_title:after {
	display: none
}

.footer-widget.style2.widget_meta a,
.footer-widget.style2.widget_pages a,
.footer-widget.style2.widget_archive a,
.footer-widget.style2.widget_categories a,
.footer-widget.style2.widget_nav_menu a {
	padding: 0 0 0 25px;
	margin-bottom: 23px
}

.footer-widget.style2.widget_meta a:before,
.footer-widget.style2.widget_pages a:before,
.footer-widget.style2.widget_archive a:before,
.footer-widget.style2.widget_categories a:before,
.footer-widget.style2.widget_nav_menu a:before {
	content: "\f061";
	font-weight: 500;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: unset;
	font-size: 1em;
	height: unset
}

@media (max-width: 767px) {
	.footer-widget.style2 .widget_title {
		padding: 0 0 16px 0
	}

	.footer-widget.style2.widget_meta a,
	.footer-widget.style2.widget_pages a,
	.footer-widget.style2.widget_archive a,
	.footer-widget.style2.widget_categories a,
	.footer-widget.style2.widget_nav_menu a {
		margin-bottom: 18px
	}
}

@media (max-width: 350px) {
	.footer-widget .recent-post .media-img {
		margin-right: 15px;
		width: 100px
	}
}

.as-header {
	position: relative;
	z-index: 41;
	box-shadow: 0px 0px 10px #ccc;
}

.as-header .icon-btn {
	--btn-size: 45px;
	border: 1px solid #d0dbe9
}

.as-header .icon-btn:hover {
	border-color: var(--theme-color)
}

.as-header .as-btn {
	padding: 19px 29px
}

.will-sticky .sticky-active {
	position: fixed;
	top:0;
	right: 0;
	left: 0;
	background-color: var(--white-color);
	-webkit-transition: all ease 0.8s;
	transition: all ease 0.8s;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07)
}

.will-sticky .sticky-active.active {
	top: 0
}

.main-menu a {
	display: block;
	position: relative;
	font-weight: 500;
	font-size: 12px;
	color: var(--title-color);
	text-transform: uppercase
}

.main-menu a:hover {
	color: var(--theme-color)
}

.main-menu>ul>li {
	margin: 0 13px
}

.main-menu>ul>li>a {
	padding: 25px 0
}

.main-menu ul {
	margin: 0;
	padding: 0
}

.main-menu ul li {
	list-style-type: none;
	display: inline-block;
	position: relative
}

.main-menu ul li.menu-item-has-children>a:after {
	content: "\f107";
	position: relative;
	font-family: var(--icon-font);
	margin-left: 5px;
	top: 1px
}

.main-menu ul li:last-child {
	margin-right: 0 !important
}

.main-menu ul li:first-child {
	margin-left: 0 !important
}

.main-menu ul li:hover>ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
	z-index: 9
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
	position: absolute;
	text-align: left;
	top: 100%;
	left: 0;
	background-color: var(--white-color);
	visibility: hidden;
	min-width: 190px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 7px;
	left: -14px;
	margin-top: 50px;
	opacity: 0;
	z-index: -1;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
	transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s
}

.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
	font-size: 16px;
	line-height: 30px
}

.main-menu ul.sub-menu {
	padding: 18px 20px;
	left: -27px
}

.main-menu ul.sub-menu li {
	display: block;
	margin: 0 0;
	padding: 0px 9px
}

.main-menu ul.sub-menu li.menu-item-has-children>a:after {
	content: "\f105";
	float: right;
	top: 1px
}

.main-menu ul.sub-menu li a {
	position: relative;
	padding-left: 23px;
	text-transform: capitalize
}

.main-menu ul.sub-menu li a:before {
	content: "\f02d";
	position: absolute;
	top: 8px;
	left: 0;
	font-family: var(--icon-font);
	width: 11px;
	height: 11px;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
	font-size: 0.9em;
	line-height: 1;
	color: var(--theme-color);
	font-weight: 700
}

.main-menu ul.sub-menu li ul.sub-menu {
	left: 100%;
	right: auto;
	top: 0;
	margin: 0 0;
	margin-left: 20px
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
	left: 100%;
	right: auto
}

.main-menu .mega-menu-wrap {
	position: static
}

.main-menu ul.mega-menu {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	text-align: left;
	width: 100%;
	max-width: var(--main-container);
	padding: 20px 15px 23px 15px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

.main-menu ul.mega-menu li {
	display: block;
	width: 100%;
	padding: 0 15px
}

.main-menu ul.mega-menu li li {
	padding: 2px 0
}

.main-menu ul.mega-menu li a {
	display: inline-block
}

.main-menu ul.mega-menu>li>a {
	display: block;
	padding: 0;
	padding-bottom: 15px;
	margin-bottom: 10px;
	text-transform: capitalize;
	letter-spacing: 1px;
	font-weight: 700;
	color: var(--title-color);
	border-color: var(--theme-color)
}

.main-menu ul.mega-menu>li>a::after,
.main-menu ul.mega-menu>li>a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 15px;
	height: 1px;
	background-color: var(--theme-color)
}

.main-menu ul.mega-menu>li>a::after {
	width: calc(100% - 20px);
	left: 20px
}

.main-menu ul.mega-menu>li>a:hover {
	padding-left: 0
}

.category-menu {
	position: absolute;
	text-align: left;
	top: 100%;
	left: 0;
	background-color: var(--white-color);
	visibility: hidden;
	min-width: 190px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 25px 30px;
	left: 0;
	margin-top: 50px;
	opacity: 0;
	z-index: -1;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
	transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s
}

.category-menu ul {
	padding: 0;
	margin-bottom: 0
}

.category-menu li {
	list-style: none;
	margin-bottom: 6px
}

.category-menu li:last-child {
	margin-bottom: 0
}

.category-menu a {
	font-weight: 500;
	text-transform: capitalize;
	color: var(--title-color);
	position: relative;
	padding-left: 23px
}

.category-menu a:before {
	content: "\f07c";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: var(--icon-font);
	width: 11px;
	height: 11px;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
	font-size: 0.9em;
	line-height: 1;
	color: var(--theme-color);
	font-weight: 400
}

.category-menu a:hover {
	color: var(--theme-color)
}

.category-menu-wrap {
	position: relative;
	height: 100%;
	padding: 42px 0
}

.category-menu-wrap:hover .category-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
	z-index: 9
}

.menu-expand {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--theme-color);
	background-color: #eef3f9;
	padding: 12.5px 24px;
	border-radius: 5px
}

.menu-expand i {
	margin-right: 10px
}

.simple-icon {
	border: none;
	background-color: transparent;
	padding: 0;
	color: var(--body-color)
}

.simple-icon:hover {
	color: var(--theme-color)
}

.header-button {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	margin-left: 15px
}

.header-button .icon-btn {
	position: relative
}

.header-links ul {
	margin: 0;
	padding: 0;
	list-style-type: none
}

.header-links li {
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 400
}

.header-links li:not(:last-child) {
	padding: 0 20px 0 0;
	margin: 0 17px 0 0
}

.header-links li:not(:last-child):before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	width: 1px;
	height: 16px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.header-links li>i {
	margin-right: 10px
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
	font-family: var(--body-font);
	color: var(--body-color)
}

.header-links i {
	color: var(--body-color)
}

.header-links b,
.header-links strong {
	font-weight: 600
}

.header-social .social-title {
	font-weight: 400;
	font-size: 16px;
	display: inline-block;
	margin: 0 10px 0 0
}

.header-social a {
	font-size: 14px;
	display: inline-block;
	color: var(--body-color);
	margin: 0 15px 0 0
}

.header-social a:last-child {
	margin-right: 0
}

.header-social a:hover {
	color: var(--theme-color)
}

.header-logo {
	padding-top: 10px;
	padding-bottom: 10px
}

.header-logo img{
	position:relative;
	height: 45px;
	width: auto;

}

.header-notice {
	margin-bottom: 0;
	display: inline-block
}

.counter-list {
	padding: 0;
	margin: 0;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 18px;
	background-color: var(--white-color);
	padding: 2px 15px;
	border-radius: 999px;
	margin-left: 15px
}

.counter-list li {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 4px;
	color: #00306e;
	position: relative
}

.counter-list li:after {
	content: ":";
	position: absolute;
	top: 50%;
	right: -11.5px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #00306e;
	font-weight: 600
}

.counter-list li:last-child::after {
	display: none
}

.counter-list .count-number,
.counter-list .count-name {
	color: #00306e;
	font-weight: 500
}

.header-layout1 .header-top {
	--body-color: #fff;
	background-color: var(--theme-color);
	padding: 9px 0
}

.header-layout1 .header-top a:hover {
	color: var(--title-color)
}

.header-layout1 .menu-area {
	background:#fff;
	position: relative;
}

@media (max-width: 767px) {
	.header-search {
		margin: 0 0 20px 0
	}
}

.header-layout2 .header-top {
	background-color: #00306e;
	padding: 11.5px 0;
	--body-color: #fff
}

.header-layout2 .header-top a,
.header-layout2 .header-top li,
.header-layout2 .header-top p {
	color: var(--body-color)
}

.header-layout2 .header-top a:hover {
	color: var(--theme-color)
}

.header-layout2 .header-top li:before {
	background-color: #3569ac
}

.header-layout2 .header-button {
	padding-left: 30px;
	margin-left: 6px;
	position: relative
}

.header-layout2 .header-button:before {
	content: "";
	height: 30px;
	width: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #d9d9d9
}

.header-layout2 .icon-btn {
	--icon-bg: #f5f5f5
}

.header-layout2 .as-menu-toggle {
	margin: 20px 0
}

@media (max-width: 575px) {

	.header-layout2 .as-menu-toggle,
	.header-layout3 .as-menu-toggle {
		margin: 15px 0
	}
}

@media (max-width: 375px) {

	.header-layout2 .header-social a,
	.header-layout3 .header-social a {
		margin: 0 10px 0 0
	}

	.header-layout2 .header-links li,
	.header-layout3 .header-links li {
		font-size: 14px
	}
}

.header-layout3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%
}

.header-layout3 .header-top {
	background-color: #00306e;
	padding: 9px 0;
	--body-color: #fff
}

.header-layout3 .header-top a,
.header-layout3 .header-top li,
.header-layout3 .header-top p,
.header-layout3 .header-top span,
.header-layout3 .header-top div {
	color: var(--body-color);
	font-family: var(--title-font)
}

.header-layout3 .header-top .count-number,
.header-layout3 .header-top .count-name {
	font-size: 15px;
	color: #00306e
}

.header-layout3 .header-top a:hover {
	color: var(--theme-color)
}

.header-layout3 .header-top li:before {
	background-color: #3569ac
}

.header-layout3 .as-menu-toggle {
	margin: 20px 0
}

.header-layout3 .menu-area {
	background-color: var(--white-color);
	padding-left: 40px;
	border-radius: 0 0 0 10px
}

.header-layout3 .sticky-wrapper {
	position: relative
}

.header-layout3 .sticky-wrapper:after {
	content: "";
	height: 100%;
	width: 50%;
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--white-color);
	z-index: -1
}

.footer-wrapper {
	position: relative;
	z-index: 2
}

.footer-wrapper .newsletter-title {
	color: var(--white-color)
}

.footer-wrapper .as-social a {
	background-color: #1e2c46;
	color: var(--white-color)
}

.footer-wrapper .as-social a:hover {
	background-color: var(--theme-color);
	border-color: var(--theme-color)
}

.widget-area {
	padding-top: var(--section-space);
	padding-bottom: 80px
}

.copyright-wrap {
	padding: 29px 0
}

.copyright-text {
	margin: 0
}

.copyright-text a {
	color: inherit
}

.copyright-text a:hover {
	color: var(--white-color)
}

.footer-links ul {
	padding: 0;
	margin: 0
}

.footer-links li {
	font-family: var(--body-font);
	display:block;
	margin-right: 20px;
	margin-bottom: 10px;

}

.footer-links li:last-child {
	margin-right: 0
}

.footer-links a {
	font-family: inherit;
	color: var(--body-color)
}

.footer-links a:hover {
	color: var(--white-color)
}

.footer-layout1 {
	background-color: #0f1b31;
	--body-color: #b3c1d3;
	overflow: hidden
}

.footer-layout1 .copyright-wrap {
	padding: 22px 0;
	border-top: 1px solid #283752
}

.footer-layout2 {
	background-color: #0f1b31;
	--body-color: #b3c1d3;
	overflow-x: hidden
}

.footer-layout2 .widget-area {
	padding-top: 100px;
	padding-bottom: 55px
}

.footer-layout2 .copyright-wrap {
	padding: 26px 0;
	background-color: var(--theme-color)
}

.footer-layout2 .copyright-text {
	text-align: center;
	color: var(--white-color)
}

.footer-layout2 .footer-links a {
	color: var(--white-color)
}

.footer-layout2 .as-widget-about .about-logo {
	margin-top: 0
}

.footer-layout2 .scroll-btn {
	position: absolute;
	right: 50%;
	bottom: 53px;
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	transform: translateX(50%)
}

.footer-layout2 .scroll-btn:before {
	background-color: #0f1b31
}

.footer-layout2 .scroll-btn:hover i {
	background-color: var(--white-color);
	color: var(--theme-color)
}

@media (max-width: 767px) {
	.footer-layout2 .scroll-btn {
		bottom: 62px
	}
}

@media (max-width: 575px) {
	.footer-layout2 .scroll-btn {
		bottom: 87px
	}
}

.footer-layout3 {
	--body-color: #fff;
	--border-color: #224d9c
}

.footer-layout3 .widget-area {
	padding-top: 100px;
	padding-bottom: 55px;
	padding-left: 66px
}

.footer-layout3 .footer-top {
	padding-top: 80px;
	padding-bottom: 80px;
	border-bottom: 1px solid var(--border-color)
}

.footer-layout3 .copyright-wrap {
	padding: 22px 0;
	border-top: 1px solid var(--border-color)
}

.footer-layout3 .copyright-text {
	text-align: center;
	color: var(--white-color)
}

.footer-layout3 .footer-links a {
	color: var(--white-color)
}

.footer-layout3 .footer-links a:hover {
	color: var(--theme-color)
}

.footer-layout3 .as-social a {
	--icon-size: 40px;
	font-size: 13px;
	background-color: #193F85;
	border: 1px solid var(--border-color);
	margin-right: 1px
}

.footer-layout3 .footer-info-title {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase
}

.footer-layout3 .widget_meta a:hover,
.footer-layout3 .widget_pages a:hover,
.footer-layout3 .widget_archive a:hover,
.footer-layout3 .widget_categories a:hover,
.footer-layout3 .widget_nav_menu a:hover {
	color: var(--theme-color)
}

.footer-layout3 .widget_meta a:hover:before,
.footer-layout3 .widget_pages a:hover:before,
.footer-layout3 .widget_archive a:hover:before,
.footer-layout3 .widget_categories a:hover:before,
.footer-layout3 .widget_nav_menu a:hover:before {
	color: var(--theme-color);
	-webkit-transform: translateX(4px);
	-ms-transform: translateX(4px);
	transform: translateX(4px)
}

.about-area {
	padding-top: 100px;
	padding-bottom: 60px;
	padding-right: 90px;
	border-right: 1px solid var(--border-color)
}

.info-box {
	display: inline-block
}

.info-box-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 45px
}

.info-box_text {
	display: block;
	color: var(--white-color);
	margin-top: -0.45em;
	margin-bottom: 5px
}

.info-box_link {
	font-size: 22px;
	font-weight: 600;
	color: var(--white-color)
}

.info-box_link i {
	margin-right: 8px
}

.info-box_link:hover {
	color: var(--theme-color)
}

.download-btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	background-color: #193F85;
	border: 1px solid var(--border-color);
	padding: 13px 33px;
	border-radius: 999px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.download-btn i {
	font-size: 30px;
	color: var(--white-color)
}

.download-btn .text {
	color: #85A4DD;
	font-size: 12px;
	line-height: 1;
	display: block;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.download-btn .store-name {
	font-size: 16px;
	color: var(--white-color);
	font-weight: 500;
	display: block;
	margin-bottom: -0.3em
}

.download-btn:hover {
	background-color: var(--theme-color);
	border-color: var(--theme-color)
}

.download-btn:hover .text {
	color: var(--white-color)
}

.newsletter-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 10px 20px
}

.newsletter-wrap .newsletter-title {
	margin-bottom: 0;
	max-width: 285px
}

.newsletter-form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 680px
}

.newsletter-form .form-group {
	margin-bottom: 0;
	width: 100%
}

.newsletter-form .form-group>i {
	top: 19px;
	color: var(--white-color)
}

.newsletter-form input {
	background-color: #052A6F;
	border: 1px solid #2A4F93;
	margin-bottom: 0;
	height: 55px;
	color: var(--white-color);
	border-radius: 999px
}

.newsletter-form input::-moz-placeholder {
	color: var(--white-color)
}

.newsletter-form input::-webkit-input-placeholder {
	color: var(--white-color)
}

.newsletter-form input:-ms-input-placeholder {
	color: var(--white-color)
}

.newsletter-form input::-ms-input-placeholder {
	color: var(--white-color)
}

.newsletter-form input::placeholder {
	color: var(--white-color)
}

.newsletter-form input:focus {
	border-color: var(--theme-color);
	background-color: #052A6F
}

.newsletter-form .as-btn {
	min-width: 200px;
	border-radius: 999px;
	box-shadow: none;
	margin-left: -50px
}

@media (max-width: 767px) {
	.newsletter-wrap {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.newsletter-wrap .newsletter-title {
		text-align: center;
		max-width: 100%
	}
}

@media (max-width: 575px) {
	.newsletter-form {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 15px
	}

	.newsletter-form .as-btn {
		margin-left: 0
	}
}

.footer-social {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	margin-top: 22px
}

.footer-social a {
	color: var(--white-color)
}

.footer-social a:hover {
	color: var(--theme-color)
}

.footer-layout4 {
	--body-color: #fff;
	--border-color: #254684;
	background-color: #0D5EF4
}

.footer-layout4 .widget-area {
	padding-top: 120px;
	padding-bottom: 80px
}

.footer-layout4 .footer-widget.style2 .widget_title {
	font-size: 20px
}

.footer-layout4 .copyright-wrap {
	border-top: 1px solid var(--border-color)
}

.footer-layout4 .copyright-text {
	color: var(--white-color)
}

.footer-layout4 .widget_meta a:hover,
.footer-layout4 .widget_pages a:hover,
.footer-layout4 .widget_archive a:hover,
.footer-layout4 .widget_categories a:hover,
.footer-layout4 .widget_nav_menu a:hover {
	color: var(--theme-color)
}

.footer-layout4 .widget_meta a:hover:before,
.footer-layout4 .widget_pages a:hover:before,
.footer-layout4 .widget_archive a:hover:before,
.footer-layout4 .widget_categories a:hover:before,
.footer-layout4 .widget_nav_menu a:hover:before {
	color: var(--theme-color);
	-webkit-transform: translateX(4px);
	-ms-transform: translateX(4px);
	transform: translateX(4px)
}

.breadcumb-menu {
	max-width: 100%;
	padding: 0;
	margin: 23px 0 -0.5em 0;
	list-style-type: none;
	position: relative
}

.breadcumb-menu li {
	display: inline-block;
	margin-right: 3px;
	padding-right: 5px;
	list-style: none;
	position: relative
}

.breadcumb-menu li:after {
	content: '\f054';
	position: relative;
	margin-left: 10px;
	font-weight: 600;
	font-size: 15px;
	color: var(--white-color);
	font-family: var(--icon-font)
}

.breadcumb-menu li:last-child {
	padding-right: 0;
	margin-right: 0
}

.breadcumb-menu li:last-child:after {
	display: none
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
	white-space: normal;
	color: inherit;
	word-break: break-word;
	font-weight: 400;
	font-size: 18px;
	color: var(--white-color)
}

.breadcumb-title {
	font-size: 48px;
	font-weight: 600;
	line-height: 1.18;
	text-transform: uppercase;
	color: var(--white-color);
	margin: -0.2em 0 -0.2em 0
}

.breadcumb-wrapper {
	background-color: var(--title-color);
	padding: 140px 0;
	text-align: center;
	overflow: hidden
}

@media (max-width: 767px) {
	.breadcumb-wrapper {
		padding: 80px 0
	}

	.breadcumb-title {
		font-size: 34px
	}
}

.as-pagination {
	margin-bottom: 30px
}

.as-pagination ul {
	margin: 0;
	padding: 0
}

.as-pagination li {
	display: inline-block;
	margin: 0 3px;
	list-style-type: none
}

.as-pagination li:last-child {
	margin-right: 0
}

.as-pagination li:first-child {
	margin-left: 0
}

.as-pagination span,
.as-pagination a {
	display: inline-block;
	text-align: center;
	position: relative;
	border: none;
	color: var(--title-color);
	background-color: var(--smoke-color);
	width: 55px;
	height: 55px;
	line-height: 55px;
	z-index: 1;
	font-size: 16px;
	font-weight: 500;
	border-radius: 5px
}

.as-pagination span.active,
.as-pagination span:hover,
.as-pagination a.active,
.as-pagination a:hover {
	color: var(--white-color);
	background-color: var(--theme-color);
	box-shadow: none
}

@media (max-width: 767px) {

	.as-pagination span,
	.as-pagination a {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 14px
	}
}

blockquote,
.wp-block-quote {
	font-size: 20px;
	line-height: 1.56;
	padding: 40px 40px 40px 40px;
	font-weight: 400;
	display: block;
	position: relative;
	background-color: var(--smoke-color);
	overflow: hidden;
	margin: 35px 0;
	color: var(--title-color);
	font-style: italic;
	border-left: 3px solid var(--theme-color);
	border-radius: 10px
}

blockquote p,
.wp-block-quote p {
	font-size: inherit;
	font-family: inherit;
	margin-top: -0.3em;
	margin-bottom: 16px;
	line-height: inherit;
	color: inherit;
	width: 100%;
	position: relative;
	z-index: 3
}

blockquote p a,
.wp-block-quote p a {
	color: inherit
}

blockquote:before,
.wp-block-quote:before {
	content: "\f10e";
	font-family: var(--icon-font);
	position: absolute;
	right: 40px;
	bottom: 40px;
	font-size: 6rem;
	font-weight: 600;
	opacity: 1;
	line-height: 3.8rem;
	color: rgba(13, 94, 244, 0.1);
	font-style: normal
}

blockquote cite,
.wp-block-quote cite {
	display: block;
	font-size: 22px;
	position: relative;
	border-color: inherit;
	line-height: 1;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: -0.1em;
	font-style: normal;
	font-family: var(--title-font);
	padding-left: 50px;
	margin-left: 10px
}

blockquote cite:before,
.wp-block-quote cite:before {
	content: "";
	height: 2px;
	width: 40px;
	background-color: var(--theme-color);
	position: absolute;
	bottom: 9px;
	left: -10px
}

blockquote.style-left-icon,
blockquote.is-large,
blockquote.is-style-large,
blockquote.has-text-align-right,
.wp-block-quote.style-left-icon,
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-quote.has-text-align-right {
	padding: 40px
}

blockquote.style-left-icon,
.wp-block-quote.style-left-icon {
	font-size: 18px;
	color: var(--body-color);
	font-weight: 400;
	line-height: 1.556;
	background-color: var(--smoke-color);
	padding-left: 160px
}

blockquote.style-left-icon:before,
.wp-block-quote.style-left-icon:before {
	right: unset;
	left: 56px;
	top: 60px;
	font-size: 6rem;
	font-weight: 400;
	line-height: 4rem;
	color: var(--theme-color);
	text-shadow: none
}

blockquote.style-left-icon cite,
.wp-block-quote.style-left-icon cite {
	color: var(--title-color)
}

blockquote.style-left-icon cite:before,
.wp-block-quote.style-left-icon cite:before {
	background-color: var(--title-color);
	top: 8px
}

blockquote.is-large cite:before,
blockquote.is-style-large cite:before,
.wp-block-quote.is-large cite:before,
.wp-block-quote.is-style-large cite:before {
	top: unset;
	bottom: 13px
}

blockquote.has-text-align-right:before,
.wp-block-quote.has-text-align-right:before {
	content: "\f10d";
	right: unset;
	left: 60px
}

.wp-block-pullquote {
	color: var(--white-color);
	padding: 0
}

blockquote.has-very-dark-gray-color {
	color: var(--white-color) !important
}

.wp-block-column blockquote,
.wp-block-column .wp-block-quote {
	padding: 100px 15px 30px 15px
}

.wp-block-column blockquote:before,
.wp-block-column .wp-block-quote:before {
	width: 100%;
	height: 60px;
	font-size: 30px
}

.wp-block-column blockquote.style-left-icon,
.wp-block-column blockquote.is-large:not(.is-style-plain),
.wp-block-column blockquote.is-style-large:not(.is-style-plain),
.wp-block-column blockquote.has-text-align-right,
.wp-block-column .wp-block-quote.style-left-icon,
.wp-block-column .wp-block-quote.is-large:not(.is-style-plain),
.wp-block-column .wp-block-quote.is-style-large:not(.is-style-plain),
.wp-block-column .wp-block-quote.has-text-align-right {
	padding: 100px 15px 30px 15px
}

.blog-meta span,
.blog-meta a {
	display: inline-block;
	margin-right: 15px;
	padding-right: 20px;
	font-size: 16px;
	color: var(--body-color);
	position: relative
}

.blog-meta span:after,
.blog-meta a:after {
	content: "";
	width: 1px;
	height: 20px;
	background-color: #D3DBEB;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.blog-meta span:last-child,
.blog-meta a:last-child {
	margin-right: 0;
	padding-right: 0
}

.blog-meta span:last-child:after,
.blog-meta a:last-child:after {
	display: none
}

.blog-meta span i,
.blog-meta a i {
	margin-right: 10px;
	color: var(--theme-color)
}

.blog-meta span img,
.blog-meta a img {
	margin-right: 10px
}

.blog-meta a:hover {
	color: var(--theme-color)
}

.blog-bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-top: 1px dashed #d3dbeb;
	padding-top: 26px;
	margin-bottom: -0.4em
}

.blog-bottom span:not(.link-btn),
.blog-bottom a:not(.link-btn) {
	color: var(--body-color)
}

.blog-bottom span:not(.link-btn) i,
.blog-bottom a:not(.link-btn) i {
	margin-right: 8px;
	color: var(--theme-color)
}

.blog-bottom a:hover {
	color: var(--theme-color)
}

.blog-audio img,
.blog-img img,
.blog-video img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.blog-title a {
	color: inherit
}

.blog-title a:hover {
	color: var(--theme-color)
}

.as-blog {
	margin-bottom: 30px
}

.blog-inner-title {
	font-size: 36px;
	margin-top: -0.3em;
	margin-bottom: 30px
}

.blog-author,
.course-author-box {
	margin-top: 40px;
	margin-bottom: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	background-color: var(--smoke-color);
	border-radius: 8px;
	overflow: hidden
}

.blog-author .auhtor-img,
.course-author-box .auhtor-img {
	min-height: 100%
}

.blog-author .auhtor-img img,
.course-author-box .auhtor-img img {
	height: 100%;
	object-fit: cover;
	object-position: center center
}

.blog-author .author-name,
.course-author-box .author-name {
	font-size: 24px;
	margin-top: -0.2em;
	margin-bottom: 10px
}

.blog-author .author-text,
.course-author-box .author-text {
	margin-bottom: 15px
}

.blog-author .media-body,
.course-author-box .media-body {
	padding: 35px 40px 30px 40px;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center
}

.blog-author .as-social a,
.course-author-box .as-social a {
	border-radius: 6px;
	--icon-size: 36px;
	font-size: 13px
}

.blog-single {
	position: relative;
	margin-bottom: var(--blog-space-y, 40px);
	padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
	border: 1px solid var(--border-color);
	box-shadow: 0px 9px 14px #fbfbfb;
	border-radius: 10px
}

.blog-single:not(.has-post-thumbnail) {
	background-color: var(--smoke-color)
}

.blog-single .blog-title {
	margin-bottom: 13px;
	font-size: 36px;
	font-weight: 600
}

.blog-single .blog-text {
	margin-bottom: 29px
}

.blog-single .social-links {
	margin: 0;
	padding: 5px 20px;
	list-style-type: none;
	display: inline-block;
	background-color: var(--smoke-color);
	border-radius: 999px
}

.blog-single .social-links li {
	display: inline-block;
	margin-right: 13px
}

.blog-single .social-links li:last-child {
	margin-right: 0
}

.blog-single .social-links a {
	line-height: 1;
	font-size: 16px;
	color: var(--title-color);
	text-align: center;
	display: block
}

.blog-single .social-links a:hover {
	color: var(--theme-color)
}

.blog-single .blog-meta {
	margin: 0 0 18px 0
}

.blog-single .blog-content {
	margin: 0 0 0 0;
	padding: 0;
	position: relative
}

.blog-single .blog-audio {
	line-height: 1
}

.blog-single .blog-audio,
.blog-single .blog-img,
.blog-single .blog-video {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: var(--blog-space-y, 40px);
	background-color: var(--smoke-color)
}

.blog-single .blog-img .slick-arrow {
	--pos-x: 50px;
	border: none;
	background-color: var(--white-color);
	color: var(--theme-color)
}

.blog-single .blog-img .slick-arrow:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.blog-single .blog-img .play-btn {
	--icon-size: 60px;
	--icon-font-size: 20px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: calc(var(--icon-size) / -2) 0 0 calc(var(--icon-size) / -2)
}

.blog-single:hover .blog-img .slick-arrow {
	opacity: 1;
	visibility: visible
}

.share-links-title {
	font-size: 20px;
	color: var(--title-color);
	font-family: var(--title-font);
	font-weight: 700;
	margin: 0 15px 0 0;
	display: inline-block
}

.share-links {
	margin: 20px 0 40px 0;
	border-top: 1px dashed #d3dbeb;
	border-bottom: 1px dashed #d3dbeb;
	padding: 30px 0
}

.share-links>.row {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	--bs-gutter-y: 20px
}

.share-links .tagcloud {
	display: inline-block
}

.blog-details .blog-single {
	background-color: transparent
}


@media (max-width: 767px) {
	.wp-block-pullquote.is-style-solid-color blockquote {
		max-width: 90%
	}

	.blog-inner-title {
		font-size: 26px
	}

	.blog-author,
	.course-author-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.blog-author .auhtor-img img,
	.course-author-box .auhtor-img img {
		width: 100%
	}

	.blog-details .blog-single {
		--blog-space-x: 20px;
		--blog-space-y: 20px
	}

	.blog-single {
		--blog-space-y: 20px;
		--blog-space-x: 20px
	}

	.blog-single .blog-title {
		font-size: 24px;
		line-height: 1.3
	}

	.blog-single .blog-text {
		margin-bottom: 15px
	}

	.blog-single .blog-bottom {
		padding-top: 15px
	}

	.blog-single .share-links-title {
		font-size: 18px;
		display: block;
		margin: 0 0 10px 0
	}
}

@media (max-width: 575px) {

	.blog-author .media-body,
	.course-author-box .media-body {
		padding: 35px 20px 30px 20px
	}

	.blog-meta a,
	.blog-meta span {
		padding-right: 0
	}

	.blog-meta a::after,
	.blog-meta span::after {
		display: none
	}
}

.as-comment-form {
	margin-top: var(--blog-space-y, 60px);
	margin-bottom: 30px;
	padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
	border: 1px solid var(--border-color);
	box-shadow: 0px 9px 14px #fbfbfb;
	border-radius: 10px;
	position: relative
}

.as-comment-form .row {
	--bs-gutter-x: 20px
}

.as-comment-form .blog-inner-title {
	margin-bottom: 0px
}

.as-comment-form .form-title {
	margin-top: -0.35em
}

.as-comment-form .form-title a#cancel-comment-reply-link {
	font-size: 0.7em;
	text-decoration: underline
}

.as-comment-form .form-text {
	margin-bottom: 25px
}

.blog-comment-area {
	margin-bottom: 25px
}

.as-comments-wrap {
	margin-top: var(--blog-space-y, 50px);
	margin-bottom: -30px
}

.as-comments-wrap .description p:last-child {
	margin-bottom: -0.5em
}

.as-comments-wrap .comment-respond {
	margin: 30px 0
}

.as-comments-wrap pre {
	background: #ededed;
	color: #666;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre-wrap;
	word-wrap: break-word
}

.as-comments-wrap li {
	margin: 0
}

.as-comments-wrap .as-post-comment {
	padding: 0;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
	padding-bottom: 30px;
	position: relative;
	border-bottom: 1px dashed #d3dbeb
}

.as-comments-wrap .as-post-comment ol,
.as-comments-wrap .as-post-comment ul,
.as-comments-wrap .as-post-comment dl {
	margin-bottom: 1rem
}

.as-comments-wrap .as-post-comment ol ol,
.as-comments-wrap .as-post-comment ol ul,
.as-comments-wrap .as-post-comment ul ol,
.as-comments-wrap .as-post-comment ul ul {
	margin-bottom: 0
}

.as-comments-wrap ul.comment-list {
	list-style: none;
	margin: 0;
	padding: 0
}

.as-comments-wrap ul.comment-list ul ul,
.as-comments-wrap ul.comment-list ul ol,
.as-comments-wrap ul.comment-list ol ul,
.as-comments-wrap ul.comment-list ol ol {
	margin-bottom: 0
}

.as-comments-wrap .comment-avater {
	width: 110px;
	height: 110px;
	margin-right: 25px;
	overflow: hidden;
	border-radius: 5px
}

.as-comments-wrap .comment-avater img {
	width: 100%
}

.as-comments-wrap .comment-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin-top: -6px;
	position: relative
}

.as-comments-wrap .commented-on {
	font-size: 14px;
	display: inline-block;
	margin-bottom: 8px;
	font-weight: 400;
	color: var(--body-color)
}

.as-comments-wrap .commented-on i {
	margin-right: 7px;
	font-size: 0.9rem
}

.as-comments-wrap .name {
	margin-bottom: 6px;
	font-size: 20px
}

.as-comments-wrap .comment-top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.as-comments-wrap .text {
	margin-bottom: -0.5em
}

.as-comments-wrap .text:last-child {
	margin-bottom: 0
}

.as-comments-wrap .comment-content p:last-of-type {
	margin-bottom: -0.5em
}

.as-comments-wrap .children {
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: 80px
}

.as-comments-wrap .reply_and_edit {
	position: absolute;
	top: 0;
	right: 0
}

.as-comments-wrap .reply_and_edit a {
	margin-right: 10px
}

.as-comments-wrap .reply_and_edit a:last-child {
	margin-right: 0
}

.as-comments-wrap .reply-btn {
	font-weight: 600;
	font-size: 16px;
	color: var(--theme-color);
	display: inline-block
}

.as-comments-wrap .reply-btn i {
	margin-right: 7px
}

.as-comments-wrap .reply-btn:hover {
	color: var(--title-color)
}

.as-comments-wrap .star-rating {
	font-size: 12px;
	margin-bottom: 10px;
	position: absolute;
	top: 5px;
	right: 0;
	width: 80px
}

ul.comment-list .as-comment-item:last-child>.as-post-comment {
	border-bottom: none;
	padding-bottom: 0
}

ul.comment-list .as-comment-item:first-child>.as-post-comment {
	padding-bottom: 30px;
	border-bottom: 1px dashed #d3dbeb
}

.as-comments-wrap.as-comment-form {
	margin: 0
}

@media (max-width: 767px) {
	.as-comments-wrap .as-post-comment {
		display: block
	}

	.as-comments-wrap .star-rating {
		position: relative;
		top: 0;
		right: 0
	}

	.as-comments-wrap .comment-top {
		display: block
	}

	.as-comments-wrap .comment-avater {
		margin-right: 0;
		margin-bottom: 25px
	}

	.as-comments-wrap .children {
		margin-left: 40px
	}

	.as-comments-wrap .children {
		margin-left: 30px
	}
}

@media (max-width: 767px) {
	.as-comment-form {
		--blog-space-x: 20px
	}
}

.as-hero-wrapper {
	position: relative;
	z-index: 2;
	overflow: hidden
}

.as-hero-wrapper .checklist ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px 30px
}

.as-hero-wrapper .checklist li {
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	font-size: 18px;
	font-weight: 500;
	color: var(--title-color)
}

.hero-shape {
	position: absolute
}

@media (max-width: 767px) {
	.as-hero-wrapper .checklist ul {
		gap: 10px 25px
	}

	.as-hero-wrapper .checklist li {
		font-size: 16px
	}
}

.ripple-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2
}

.ripple-1,
.ripple-2,
.ripple-3,
.ripple-4,
.ripple-5,
.ripple-6 {
	height: 40px;
	width: 40px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: transparent;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	-webkit-transform: translate3d(-25%, 25%, 0);
	transform: translate3d(-25%, 25%, 0);
	-webkit-animation: heroripple 8s ease-out infinite;
	animation: heroripple 8s ease-out infinite
}

.ripple-1 {
	-webkit-animation-delay: 0;
	animation-delay: 0
}

.ripple-2 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}

.ripple-3 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.ripple-4 {
	-webkit-animation-delay: 3s;
	animation-delay: 3s
}

.ripple-4 {
	-webkit-animation-delay: 4s;
	animation-delay: 4s
}

.ripple-5 {
	-webkit-animation-delay: 5s;
	animation-delay: 5s
}

.ripple-6 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}

@-webkit-keyframes heroripple {
	0% {
		-webkit-transform: translate3d(-25%, 25%, 0);
		transform: translate3d(-25%, 25%, 0);
		opacity: 0.5
	}

	100% {
		-webkit-transform: translate3d(-25%, 25%, 0);
		transform: translate3d(-25%, 25%, 0);
		opacity: 0;
		width: 310px;
		height: 310px
	}
}

@keyframes heroripple {
	0% {
		-webkit-transform: translate3d(-25%, 25%, 0);
		transform: translate3d(-25%, 25%, 0);
		opacity: 0.5
	}

	100% {
		-webkit-transform: translate3d(-25%, 25%, 0);
		transform: translate3d(-25%, 25%, 0);
		opacity: 0;
		width: 310px;
		height: 310px
	}
}

.as-hero-bg {
	position:relative;
	width: 100%;
}

.as-hero-bg img {
	width: 100%;
}

.hero-subtitle {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase
}

.hero-text {
	font-size: 18px;
	margin-bottom: 39px
}

.hero-1 .shape1 {
	bottom: 0;
	right: 0;
	z-index: 2;
	height: 100%;
	max-width: 60%
}

.hero-1 .shape1 img {
	height: 100%
}

.hero-1 .shape2 {
	right: 0;
	top: 22%;
	z-index: 2;
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

.hero-1 .shape3 {
	top: -420px;
	left: -330px;
	width: 619.52px;
	height: 619.52px;
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 100px;
	-webkit-transform: rotate(25.36deg);
	-ms-transform: rotate(25.36deg);
	transform: rotate(25.36deg);
	z-index: 2;
	-webkit-animation: spin 40s linear infinite;
	animation: spin 40s linear infinite
}

.hero-1 .as-social {
	position: absolute;
	z-index: 3;
	top: 34%;
	right: 0
}

.hero-1 .as-social a {
	background-color: var(--title-color);
	color: #B3C1D3
}

.hero-1 .as-social a:hover {
	color: var(--white-color)
}

.hero-style1 {
	position: relative;
	z-index: 6;
	padding: 210px 0 210px 0;
	max-width: 620px
}

.hero-style1 .hero-title,
.hero-style1 .hero-text {
	color: var(--white-color)
}

.hero-style1 .hero-subtitle {
	background-color: var(--theme-color);
	color: var(--white-color);
	padding: 5px 17px;
	margin-bottom: 30px
}

.hero-style1 .hero-title {
	margin-bottom: 27px;
	font-weight: 600
}

.hero-style1 .hero-title:first-of-type {
	margin-bottom: 0 !important
}

.hero-style1 .hero-title:nth-of-type(2) {
	font-weight: 200
}

.hero-1 .hero-img1 {
	position: absolute;
	bottom: 0;
	right: -25px
}

.hero-1 .hero-img1 img {
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content
}

.hero-1 .hero-img1:before {
	content: "";
	box-sizing: border-box;
	width: 385px;
	height: 385px;
	background: rgba(255, 255, 255, 0.34);
	border: 12px solid var(--theme-color);
	box-shadow: 0px 4px 30px rgba(29, 94, 172, 0.2);
	border-radius: 50%;
	position: absolute;
	top: -200px;
	left: 30%;
	z-index: -1;
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

@media (max-width: 1399px) {
	.hero-style1 {
		padding: 160px 0
	}

	.hero-1 .hero-img1 {
		max-width: 55%
	}

	.hero-1 .hero-img1:before {
		top: -100px;
		width: 200px;
		height: 200px
	}

	.hero-1 .hero-img1 img {
		max-width: 100%
	}
}


@media (max-width: 767px) {
	.hero-1 .hero-img1 {
		display: none
	}

	.hero-1 .shape1,
	.hero-1 .shape2 {
		display: none
	}
}

@media (max-width: 375px) {
	.hero-subtitle {
		font-size: 12px;
		font-weight: 500
	}
}

.hero-2 {
	background-color: #EAF2FD;
	overflow: hidden
}

.hero-2 .big-circle {
	position: absolute;
	width: 1380px;
	height: 1380px;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: -webkit-radial-gradient(50% 50%, 50% 50%, rgba(255, 255, 255, 0.04) 0%, #D6E6FC 100%);
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, #D6E6FC 100%)
}

.hero-2 .shape1 {
	top: 75px;
	left: -55px;
	-webkit-animation: spin 15s linear infinite;
	animation: spin 15s linear infinite
}

.hero-2 .shape2 {
	top: 15%;
	left: 10%;
	-webkit-animation: movingX 8s linear infinite;
	animation: movingX 8s linear infinite
}

.hero-2 .shape3 {
	top: 0%;
	right: 30%;
	-webkit-animation: movingX 8s linear infinite;
	animation: movingX 8s linear infinite;
	-webkit-animation-delay: 3s;
	animation-delay: 3s
}

.hero-2 .shape4 {
	bottom: 0%;
	left: 24%;
	-webkit-animation: movingX 8s linear infinite;
	animation: movingX 8s linear infinite;
	-webkit-animation-delay: 5s;
	animation-delay: 5s
}

.hero-2 .hero-img1 {
	position: absolute;
	bottom: 0;
	left: 5%;
	z-index: 2
}

.hero-2 .hero-img1::before,
.hero-2 .hero-img1:after {
	content: '';
	position: absolute;
	z-index: -1
}

.hero-2 .hero-img1:before {
	height: 520px;
	width: 320px;
	background-color: var(--white-color);
	bottom: 0;
	left: -60px;
	border-radius: 999px 999px 0 0;
	-webkit-animation: movingX 7s linear infinite;
	animation: movingX 7s linear infinite
}

.hero-2 .hero-img1:after {
	height: 237px;
	width: 237px;
	border: 2px solid var(--theme-color);
	border-radius: 50%;
	top: 21%;
	right: -35px;
	-webkit-animation: jumpReverseAni 7s linear infinite;
	animation: jumpReverseAni 7s linear infinite
}

.hero-2 .hero-img2 {
	position: absolute;
	bottom: 0;
	right: 4%;
	z-index: 2
}

.hero-2 .hero-img2 .shape {
	position: absolute;
	top: 30%;
	right: 10px;
	z-index: -1;
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

.hero-style2 {
	padding: 243px 0;
	text-align: center
}

.hero-style2 .checklist {
	margin-bottom: 50px
}

.hero-style2 .checklist ul {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}

.hero-style2 .hero-title {
	font-weight: 600;
	margin-bottom: 27px
}

.hero-style2 .big-title {
	font-size: 80px;
	color: var(--theme-color);
	margin-top: -0.2em;
	margin-bottom: 14px
}

.hero-style2 .btn-group {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}


@media (max-width: 767px) {
	.hero-2 .hero-img1 {
		max-width: 110px
	}

	.hero-2 .hero-img2 {
		max-width: 100px
	}

	.hero-2 .big-circle {
		width: 110%;
		height: 110%
	}

	.hero-2 .shape1 {
		top: 40px;
		left: -40px;
		max-width: 100px
	}

	.hero-2 .shape2 {
		top: 5%;
		max-width: 60px
	}

	.hero-2 .shape3 {
		max-width: 150px
	}

	.hero-2 .shape4 {
		left: 8%;
		max-width: 270px
	}

	.hero-style2 {
		padding: 100px 0
	}

	.hero-style2 .big-title {
		font-size: 44px
	}
}

@media (max-width: 575px) {
	.hero-style2 .hero-title {
		max-width: 360px;
		margin-left: auto;
		margin-right: auto
	}

	.hero-style2 .big-title {
		font-size: 40px
	}
}

.hero-3 {
	background-color: #F3F7FB;
	overflow: hidden
}

.hero-3 .hero-img1 {
	position: absolute;
	top: 155px;
	right: 0;
	height: calc(100% - 155px);
	width: 47%
}

.hero-3 .hero-img1 img {
	height: 100%;
	width: 100%
}

.hero-3 .shape1 {
	top: 48px;
	left: 0
}

.hero-3 .shape2 {
	bottom: 0;
	left: 0
}

.hero-3 .shape3 {
	top: 115px;
	left: 31%;
	-webkit-animation: movingX 8s linear infinite;
	animation: movingX 8s linear infinite
}

.hero-3 .shape4 {
	bottom: 136px;
	right: 42%;
	-webkit-animation: movingX 8s linear infinite;
	animation: movingX 8s linear infinite;
	-webkit-animation-delay: 3s;
	animation-delay: 3s
}

.hero-3 .shape5 {
	bottom: 10%;
	right: 5%;
	-webkit-animation: jumpReverseAni 7s linear infinite;
	animation: jumpReverseAni 7s linear infinite
}

.hero-3 .shape6 {
	top: 105px;
	left: 0;
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

.hero-style3 {
	padding: 350px 0 200px 0;
	max-width: 640px
}

.hero-style3 .hero-title {
	margin-bottom: 27px
}

.hero-style3 .hero-text {
	margin-bottom: 34px
}

.hero-style3 .search-form {
	background: var(--white-color);
	box-shadow: 0px 7px 35px #E8F2FD;
	padding: 10px;
	border-radius: 5px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.hero-style3 .search-form .form-group {
	width: 100%
}

.hero-style3 .search-form .form-group>i {
	top: 18px;
	left: 25px;
	pointer-events: none
}

.hero-style3 .search-form .form-group input {
	padding-left: 48px;
	padding-right: 10px;
	border: none;
	background-color: var(--white-color);
	z-index: 2
}

.hero-style3 .search-form .as-btn {
	min-width: 170px;
	padding: 15px;
	box-shadow: none
}

.hero-counter {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px 30px
}

.hero-counter-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 30px 50px;
	margin-top: 50px
}

.hero-counter_icon {
	width: 65px;
	height: 65px;
	line-height: 65px;
	background-color: var(--white-color);
	text-align: center;
	border-radius: 50%;
	position: relative
}

.hero-counter_icon:after {
	content: '';
	width: 100%;
	height: 100%;
	border: 1px solid var(--theme-color);
	position: absolute;
	top: 10px;
	left: 10px;
	border-radius: inherit;
	z-index: -1
}

.hero-counter_number {
	font-size: 36px;
	margin-bottom: 0px
}

.hero-counter_text {
	font-size: 14px;
	font-weight: 500;
	display: block;
	text-transform: uppercase;
	margin-bottom: -10px
}

@media (max-width: 767px) {
	.hero-3 .shape1 {
		max-width: 100%
	}

	.hero-style3 .search-form .as-btn {
		min-width: 50px;
		font-size: 0
	}

	.hero-style3 .search-form .as-btn i {
		font-size: 16px
	}
}

@media (max-width: 575px) {
	.hero-counter_number {
		font-size: 28px;
		margin-bottom: 2px
	}
}

@media (max-width: 375px) {
	.hero-style3 .search-form {
		padding: 4px
	}

	.hero-style3 .search-form .form-group input {
		padding-left: 30px;
		font-size: 14px;
		padding-right: 0px
	}

	.hero-style3 .search-form .form-group>i {
		left: 10px;
		font-size: 14px
	}
}

.hero-4 {
	overflow: hidden
}

.hero-4 .shape1 {
	top: 0;
	left: 0;
	z-index: -1
}

.hero-4 .shape2 {
	top: 21%;
	right: 4.5%;
	-webkit-animation: jumpAni 6s linear infinite;
	animation: jumpAni 6s linear infinite
}

.hero-style4 {
	padding: 190px 0
}

.hero-style4 .hero-subtitle {
	color: var(--theme-color);
	margin-bottom: 24px
}

.hero-style4 .hero-title {
	margin-bottom: 37px
}

.hero-style4 .checklist {
	margin-bottom: 40px
}


@media (max-width: 767px) {
	.hero-4 {
		background-position: 26% center
	}

	.hero-4 .shape2 {
		max-width: 50px;
		top: 11%
	}
}

.error-content {
	padding: 210px;
	text-align: center
}

.error-img {
	margin-bottom: -50px
}

.error-title {
	margin-bottom: 22px
}

.error-text {
	margin-bottom: 30px
}

@media (max-width: 1399px) {
	.error-content {
		padding: 160px
	}
}



@media (max-width: 767px) {
	.error-img {
		margin-bottom: -25px
	}
}

.popup-search-box {
	position: fixed;
	top: 0;
	left: 50%;
	background-color: rgba(0, 0, 0, 0.95);
	height: 0;
	width: 0;
	overflow: hidden;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	border-radius: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.popup-search-box button.searchClose {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 40px;
	right: 40px;
	border-width: 1px;
	border-style: solid;
	border-color: var(--theme-color);
	background-color: transparent;
	font-size: 22px;
	border-radius: 50%;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	color: var(--theme-color)
}

.popup-search-box button.searchClose:hover {
	color: var(--body-color);
	background-color: #fff;
	border-color: transparent;
	border-color: transparent;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg)
}

.popup-search-box form {
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-block;
	padding-bottom: 40px;
	cursor: auto;
	width: 100%;
	max-width: 700px;
	-webkit-transform: translate(-50%, -50%) scale(0);
	-ms-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	-webkit-transition: -webkit-transform ease 0.4s;
	transition: -webkit-transform ease 0.4s;
	transition: transform ease 0.4s;
	transition: transform ease 0.4s, -webkit-transform ease 0.4s
}

.popup-search-box form input {
	font-size: 18px;
	height: 70px;
	width: 100%;
	border: 2px solid var(--theme-color);
	background-color: transparent;
	padding-left: 30px;
	color: #fff;
	border-radius: 50px
}

.popup-search-box form input::-moz-placeholder {
	color: #fff
}

.popup-search-box form input::-webkit-input-placeholder {
	color: #fff
}

.popup-search-box form input:-ms-input-placeholder {
	color: #fff
}

.popup-search-box form input::-ms-input-placeholder {
	color: #fff
}

.popup-search-box form input::placeholder {
	color: #fff
}

.popup-search-box form button {
	position: absolute;
	top: 0px;
	background-color: transparent;
	border: none;
	color: #fff;
	font-size: 24px;
	right: 12px;
	color: var(--white-color);
	cursor: pointer;
	width: 70px;
	height: 70px;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	-webkit-transform: scale(1.001);
	-ms-transform: scale(1.001);
	transform: scale(1.001)
}

.popup-search-box form button:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.popup-search-box.show {
	opacity: 1;
	visibility: visible;
	width: 100.1%;
	height: 100%;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	border-radius: 0
}

.popup-search-box.show form {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
	-webkit-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1)
}

.sidemenu-wrapper {
	position: fixed;
	z-index: 99999;
	right: 0;
	top: 0;
	height: 100%;
	width: 0;
	background-color: rgba(0, 0, 0, 0.75);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease 0.8s;
	transition: all ease 0.8s
}

.sidemenu-wrapper .closeButton {
	display: inline-block;
	border: 2px solid;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 24px;
	padding: 0;
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: var(--white-color);
	border-radius: 50%;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.sidemenu-wrapper .closeButton:hover {
	color: var(--theme-color);
	border-color: var(--theme-color);
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg)
}

.sidemenu-wrapper .sidemenu-content {
	background-color: var(--white-color);
	width: 450px;
	margin-left: auto;
	padding: 80px 30px;
	height: 100%;
	overflow: scroll;
	position: relative;
	right: -500px;
	cursor: auto;
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
	-webkit-transition: right ease 1s;
	transition: right ease 1s
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
	box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
	background-color: #F5F5F5
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
	width: 2px;
	background-color: #F5F5F5
}

.sidemenu-wrapper .widget {
	padding: 0;
	border: none;
	background-color: transparent
}

.sidemenu-wrapper.show {
	opacity: 1;
	visibility: visible;
	width: 100%;
	-webkit-transition: all ease 0.8s;
	transition: all ease 0.8s
}

.sidemenu-wrapper.show .sidemenu-content {
	right: 0;
	opacity: 1;
	visibility: visible
}

.woocommerce-message,
.woocommerce-info {
	position: relative;
	padding: 11px 20px 11px 50px;
	background-color: #d3d3d3;
	color: var(--body-color);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	border-radius: 5px
}

.woocommerce-message a,
.woocommerce-info a {
	color: var(--theme-color);
	text-decoration: underline
}

.woocommerce-message a:hover,
.woocommerce-info a:hover {
	color: var(--title-color)
}

.woocommerce-message:before,
.woocommerce-info:before {
	content: '\f06a';
	font-family: var(--icon-font);
	font-weight: 400;
	margin-right: 10px;
	font-size: 18px;
	position: absolute;
	left: 20px;
	top: 11px
}

.woocommerce-notices-wrapper .woocommerce-message {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.woocommerce-notices-wrapper .woocommerce-message:before {
	content: '\f14a';
	font-weight: 300
}

.woocommerce-form-login-toggle .woocommerce-info {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.woocommerce-form-login-toggle .woocommerce-info a {
	color: inherit
}

.woocommerce-form-login-toggle .woocommerce-info a:hover {
	color: var(--title-color)
}

.woocommerce-form-register,
.woocommerce-form-coupon,
.woocommerce-form-login {
	margin-bottom: 30px;
	padding: 35px 40px 35px 40px;
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	box-shadow: 0px 9px 14px #fbfbfb;
	border-radius: 10px
}

@media (max-width: 575px) {

	.woocommerce-form-register,
	.woocommerce-form-coupon,
	.woocommerce-form-login {
		padding: 40px 20px
	}
}

.woocommerce-form-register .form-group,
.woocommerce-form-coupon .form-group,
.woocommerce-form-login .form-group {
	margin-bottom: 20px
}

.woocommerce-form-register .form-group:last-child,
.woocommerce-form-coupon .form-group:last-child,
.woocommerce-form-login .form-group:last-child {
	margin-bottom: 0
}

.woocommerce-error {
	background-color: var(--error-color);
	color: #fff;
	list-style: none;
	padding: 10px 26px;
	margin: 0 0 30px 0;
	border-radius: 5px;
	font-weight: 700;
	font-size: 14px
}

nav.woocommerce-MyAccount-navigation li {
	border: 1px solid #ddd;
	margin: 0;
	border-top: none
}

nav.woocommerce-MyAccount-navigation li:first-child {
	border-top: 1px solid #ddd
}

nav.woocommerce-MyAccount-navigation li a {
	color: var(--title-color);
	font-weight: 700;
	padding: 7px 17px;
	display: block
}

nav.woocommerce-MyAccount-navigation li.is-active a,
nav.woocommerce-MyAccount-navigation li a:hover {
	color: var(--white-color);
	background-color: var(--theme-color)
}

.woocommerce-MyAccount-content h3 {
	margin-top: -0.3em
}

.woocommerce-MyAccount-content .btn {
	background-color: var(--theme-color);
	color: var(--white-color);
	font-size: 14px;
	padding: 10px 25px;
	font-weight: 700
}

.woocommerce-MyAccount-content .btn:hover {
	background-color: var(--title-color);
	color: var(--white-color)
}

table.variations,
.woocommerce-grouped-product-list-item {
	border-collapse: separate;
	border-spacing: 0 15px;
	margin-bottom: 5px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border: none
}

table.variations td,
.woocommerce-grouped-product-list-item td {
	border: none;
	vertical-align: middle;
	padding: 0 5px
}

table.variations td:first-child,
.woocommerce-grouped-product-list-item td:first-child {
	padding: 0
}

table.variations label,
.woocommerce-grouped-product-list-item label {
	margin: 0;
	font-size: 14px;
	text-transform: capitalize
}

table.variations label a,
.woocommerce-grouped-product-list-item label a {
	color: var(--title-color)
}

table.variations label a:hover,
.woocommerce-grouped-product-list-item label a:hover {
	color: var(--theme-color)
}

table.variations .label,
.woocommerce-grouped-product-list-item .label {
	border: none
}

table.variations__label,
.woocommerce-grouped-product-list-item__label {
	border: none !important;
	font-weight: 600
}

table.variations__price,
.woocommerce-grouped-product-list-item__price {
	border: none !important
}

table.variations__price .price,
table.variations__price .amount,
.woocommerce-grouped-product-list-item__price .price,
.woocommerce-grouped-product-list-item__price .amount {
	font-size: 18px !important
}

table.variations del,
.woocommerce-grouped-product-list-item del {
	margin-left: 12px
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
	border: 1px solid var(--border-color)
}

.woocommerce-product-attributes th p:last-child,
.woocommerce-product-attributes td p:last-child {
	margin-bottom: 0
}

.woocommerce-grouped-product-list.group_table {
	border-collapse: collapse;
	margin-bottom: 15px
}

.woocommerce-grouped-product-list.group_table .woocommerce-Price-amount.amount {
	font-size: 16px;
	color: var(--title-color)
}

.woocommerce-grouped-product-list.group_table label {
	margin: 0 0 0 10px;
	margin: 0 0 0 10px;
	font-family: var(--title-font);
	font-size: 18px
}

.woocommerce-grouped-product-list.group_table .qty-input {
	border-color: #e3e6e9
}

.woocommerce-grouped-product-list.group_table tr {
	border-bottom: 1px solid #e3e6e9
}

.woocommerce-grouped-product-list.group_table tr:last-child {
	border-bottom: none
}

.woocommerce-grouped-product-list.group_table td {
	padding: 30px 5px
}

table.variations {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	position: relative
}

table.variations td {
	padding: 0
}

table.variations td.label {
	padding-right: 10px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content
}

table.variations select {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	font-weight: 400;
	line-height: 1.5;
	vertical-align: middle;
	margin: 0;
	padding-right: 54px;
	padding-left: 20px;
	height: 50px
}

table.variations .reset_variations {
	margin-left: 16px;
	display: inline-block;
	position: absolute;
	left: 100%;
	bottom: 25px
}

.woosq-product .product .woocommerce-grouped-product-list-item__quantity,
.woosq-product .product .woocommerce-grouped-product-list-item__label,
.woosq-product .product .woocommerce-grouped-product-list-item__price {
	width: auto !important
}

.woocommerce-variation.single_variation {
	margin-bottom: 30px
}

.woocommerce-variation.single_variation .price {
	color: var(--title-color);
	font-weight: 700
}

.wooscp-table-items td.woocommerce-product-attributes-item__value {
	padding-left: 15px !important
}

.wooscp-table-items a.added_to_cart.wc-forward {
	margin-left: 15px;
	text-decoration: underline
}

.tinvwl_added_to_wishlist.tinv-modal.tinv-modal-open {
	z-index: 1111
}

table.woocommerce-product-attributes {
	margin-bottom: 30px
}

#woosq-popup .product_meta {
	margin-top: 20px
}

#woosq-popup .product_title {
	font-size: 24px;
	margin-bottom: 5px
}

#woosq-popup .single-product .product .actions {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px
}

#woosq-popup .single-product .product .actions>div {
	height: auto;
	overflow: visible;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content
}

#woosq-popup .single-product .product .actions>div .quantity.style2.woocommerce-grouped-product-list-item__quantity {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content
}

.login-tab {
	margin-bottom: 30px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}

.login-tab button.nav-link {
	background-color: var(--smoke-color);
	color: var(--title-color);
	padding: 11px 39px;
	font-size: 18px;
	font-weight: 500;
	border-radius: 15px ​15px 0
}

.login-tab button.nav-link.active {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.star-rating {
	overflow: hidden;
	position: relative;
	width: 100px;
	height: 1.2em;
	line-height: 1.2em;
	display: block;
	font-family: var(--icon-font);
	font-weight: 300;
	font-size: 14px
}

.star-rating:before {
	content: "\e28b\e28b\e28b\e28b\e28b";
	color: var(--theme-color);
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	letter-spacing: 3px
}

.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em
}

.star-rating span:before {
	content: "\e28b\e28b\e28b\e28b\e28b";
	top: 0;
	position: absolute;
	left: 0;
	color: var(--theme-color);
	letter-spacing: 3px;
	font-weight: 700
}

.rating-select label {
	margin: 0;
	margin-right: 10px
}

.rating-select p.stars {
	margin-bottom: 0;
	line-height: 1
}

.rating-select p.stars a {
	position: relative;
	height: 14px;
	width: 18px;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none
}

.rating-select p.stars a::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 14px;
	line-height: 1;
	font-family: var(--icon-font);
	content: "\f005";
	font-weight: 400;
	text-indent: 0;
	color: var(--yellow-color)
}

.rating-select p.stars a:hover~a::before {
	content: "\f005";
	font-weight: 400
}

.rating-select p.stars:hover a::before {
	content: "\f005";
	font-weight: 700
}

.rating-select p.stars.selected a.active::before {
	content: "\f005";
	font-weight: 700
}

.rating-select p.stars.selected a.active~a::before {
	content: "\f005";
	font-weight: 400
}

.rating-select p.stars.selected a:not(.active)::before {
	content: "\f005";
	font-weight: 700
}

@media (max-width: 767px) {

	.woocommerce-message,
	.woocommerce-info {
		font-size: 14px;
		line-height: 22px;
		padding: 10px 15px 10px 37px
	}

	.woocommerce-message:before,
	.woocommerce-info:before {
		font-size: 16px;
		top: 10px;
		left: 15px
	}
}

.as-product {
	text-align: center;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.as-product .product-title {
	font-size: 20px;
	margin: 10px 0 7px 0
}

.as-product .product-title a {
	color: inherit
}

.as-product .product-title a:hover {
	color: var(--theme-color)
}

.as-product .price {
	display: block;
	color: var(--body-color);
	font-weight: 500;
	margin-bottom: -0.45em;
	font-family: var(--title-font)
}

.as-product .price del {
	margin-left: 10px;
	color: #c5c5c5
}

.as-product .product-img {
	background-color: var(--smoke-color);
	overflow: hidden;
	position: relative;
	margin: 0 0 25px 0;
	text-align: center;
	background-color: var(--smoke-color);
	z-index: 2;
	border-radius: 8px
}

.as-product .product-img img {
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.as-product .category {
	color: var(--white-color);
	font-size: 14px;
	font-family: var(--title-font);
	font-weight: 500;
	padding: 1px 20px;
	display: inline-block;
	background-color: var(--theme-color);
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 3;
	border-radius: 5px
}

.as-product .star-rating {
	margin: 0 auto 5px auto;
	width: 93px
}

.as-product .actions {
	height: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	right: 0;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: rgba(15, 34, 57, 0.7);
	z-index: 3;
	margin-top: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.as-product .actions .icon-btn {
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05)
}

.as-product .actions>* {
	margin: 0 var(--icon-gap-x, 5px)
}

.as-product .actions>*>a {
	margin: 0
}

.as-product .actions .tutor-btn {
	padding: unset;
	border-radius: 999px;
	min-width: unset
}

.as-product .icon-btn {
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.as-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.as-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: inline-block
}

.as-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.as-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
	position: relative;
	top: 0;
	left: 0;
	line-height: inherit;
	margin: 0;
	font-size: 24px
}

.as-product .tinv-wishlist a {
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: var(--white-color);
	color: var(--title-color);
	border-radius: 50%
}

.as-product .tinv-wishlist a:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.as-product .add_to_cart_button.added {
	display: none
}

.as-product .added_to_cart {
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: var(--white-color);
	color: var(--title-color);
	font-size: 0;
	text-align: center;
	border-radius: 50%
}

.as-product .added_to_cart:after {
	content: "\f07a";
	position: relative;
	font-family: var(--icon-font);
	font-size: 16px;
	font-weight: 700
}

.as-product .added_to_cart:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.as-product .added_to_cart .tutor-mr-8 {
	margin-right: 0 !important
}

.as-product .action-btn {
	background-color: var(--white-color);
	font-size: 14px;
	font-family: var(--title-font);
	text-transform: uppercase;
	font-weight: bold;
	display: inline-block;
	padding: 13px 25px
}

.as-product:hover .actions {
	margin-top: 0;
	opacity: 1;
	visibility: visible
}

.as-product:hover .icon-btn {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}

.as-product.list-view {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	text-align: left;
	height: 100%
}

.as-product.list-view .product-img {
	width: 100%;
	max-width: 200px;
	margin: 0;
	border-radius: 8px 0 0 8px
}

.as-product.list-view .star-rating {
	margin: 0 auto 10px 0;
	width: 93px
}

.as-product.list-view .product-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border: 1px solid var(--border-color);
	border-left: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 0 25px;
	border-radius: 0 8px 8px 0
}

.as-product.list-view .actions {
	--btn-size: 35px;
	--btn-font-size: 13px;
	--icon-gap-x: 2px
}

.as-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.as-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
	width: 35px;
	height: 35px;
	line-height: 35px
}

.as-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.as-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
	font-size: 20px
}

.as-product.list-view .tinv-wishlist a {
	width: 35px;
	height: 35px;
	line-height: 35px
}

.as-product.list-view .added_to_cart {
	width: 35px;
	height: 35px;
	line-height: 35px
}

.as-product.list-view .added_to_cart:after {
	font-size: 12px
}

.as-product.list-view .action-btn {
	padding: 8px 15px
}

.as-product.list-view .tag {
	top: 8px;
	right: 8px;
	padding: 0px 15px
}

.as-product.list-view .product-title {
	font-size: 18px;
	margin: 0 0 5px 0
}

.as-product.list-view .product-price {
	font-size: 14px
}

.as-sort-bar {
	padding: 0;
	margin: 0 0 34px 0
}

.as-sort-bar .row {
	--bs-gutter-x: 0;
	--bs-gutter-y: 15px
}

.as-sort-bar select {
	height: 50px;
	border: 1px solid var(--border-color);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 250px;
	font-size: 16px;
	margin: 0;
	color: var(--body-color)
}

.as-sort-bar .woocommerce-result-count {
	margin-bottom: 0;
	color: var(--body-color)
}

.as-sort-bar .nav a {
	display: inline-block;
	position: relative;
	font-family: var(--title-font);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.3;
	text-transform: capitalize;
	color: var(--title-color);
	margin: 0 0 0 20px;
	padding-left: 20px;
	border-left: 1px solid #D9D9D9
}

.as-sort-bar .nav a:first-child {
	margin-left: 0;
	padding-left: 0;
	border-left: none
}

.as-sort-bar .nav a i {
	margin-right: 3px
}

.as-sort-bar .nav a.active,
.as-sort-bar .nav a:hover {
	color: var(--theme-color)
}

.quantity {
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	vertical-align: middle
}

.quantity>.screen-reader-text {
	display: inline-block;
	font-weight: 600;
	color: var(--title-color);
	font-family: var(--title-font);
	margin: 0;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	margin-right: 10px
}

.quantity .qty-btn,
.quantity .qty-input {
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 1px solid var(--border-color);
	border-right: none;
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	text-align: center;
	color: var(--body-color);
	font-size: 18px;
	font-weight: 600
}

.quantity .qty-btn:last-child,
.quantity .qty-input:last-child {
	border-right: 1px solid var(--border-color)
}

.quantity .qty-btn {
	font-size: 16px
}

@media (max-width: 767px) {
	.as-sort-bar {
		text-align: center
	}

	.as-sort-bar .nav {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.as-sort-bar select {
		margin: 0 auto
	}
}

@media (max-width: 375px) {
	.as-product.list-view .product-img {
		max-width: 130px
	}
}

.woocommerce-cart-form {
	text-align: center
}

.cart_table {
	border: 1px solid #eaf0f2;
	margin-bottom: 45px
}

.cart_table thead {
	background-color: #ecf0f1
}

.cart_table thead th {
	border: none !important
}

.cart_table td:before,
.cart_table th {
	font-family: var(--title-font);
	color: var(--title-color);
	font-weight: 600;
	border: none;
	padding: 27px 15px
}

.cart_table td:before {
	content: attr(data-title);
	position: absolute;
	left: 15px;
	top: 50%;
	vertical-align: top;
	padding: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: none
}

.cart_table td {
	border: none;
	border-bottom: 1px solid #f3f3f3;
	color: #8b8b8b;
	padding: 20px 10px;
	position: relative;
	vertical-align: middle
}

.cart_table .product-quantity {
	color: var(--title-color)
}

.cart_table .product-quantity input {
	position: relative;
	top: -2px
}

.cart_table .cart-productname {
	font-weight: 400;
	font-family: var(--body-font);
	color: var(--body-color)
}

.cart_table .cart-productimage {
	display: inline-block;
	border: 0 solid var(--smoke-color);
	border-radius: 5px;
	overflow: hidden
}

.cart_table .remove {
	color: var(--theme-color);
	font-size: 18px
}

.cart_table .quantity {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.cart_table .qty-btn {
	border: 2px solid var(--smoke-color);
	background-color: transparent;
	color: #b8c6d0;
	padding: 0;
	width: 30px;
	height: 30px;
	line-height: 28px;
	font-size: 16px;
	border-radius: 4px
}

.cart_table .qty-btn:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.cart_table .qty-input {
	vertical-align: middle;
	border: 2px solid var(--smoke-color);
	width: 70px;
	height: 30px;
	font-size: 14px;
	text-align: center;
	color: var(--title-color);
	font-weight: 700;
	margin: 0 10px;
	border-radius: 4px;
	padding: 0
}

.cart_table .qty-input::-moz-placeholder {
	color: var(--title-color)
}

.cart_table .qty-input::-webkit-input-placeholder {
	color: var(--title-color)
}

.cart_table .qty-input:-ms-input-placeholder {
	color: var(--title-color)
}

.cart_table .qty-input::-ms-input-placeholder {
	color: var(--title-color)
}

.cart_table .qty-input::placeholder {
	color: var(--title-color)
}

.cart_table .qty-input::-webkit-outer-spin-button,
.cart_table .qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0
}

.cart_table .qty-input[type=number] {
	-moz-appearance: textfield
}

.cart_table .actions {
	text-align: right;
	vertical-align: middle
}

.cart_table .actions>.as-btn {
	font-size: 16px;
	padding: 17px 28px;
	margin-right: 15px
}

.cart_table .actions>.as-btn:last-child {
	margin-right: 0
}

.cart_table .as-cart-coupon {
	float: left;
	margin: 0;
	width: 455px;
	max-width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.cart_table .as-cart-coupon input {
	height: 50px;
	width: calc(100% - 200px);
	margin-right: 10px
}

.cart_table .as-cart-coupon .as-btn {
	font-size: 16px;
	padding: 17px 22px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content
}

.cart_totals {
	border: 1px solid #ecf0f1
}

.cart_totals th,
.cart_totals td {
	vertical-align: top;
	padding: 20px 20px;
	border: none;
	border-bottom: 1px solid #ecf0f1;
	font-size: 14px;
	color: var(--title-color);
	width: 55%
}

.cart_totals th:first-child,
.cart_totals td:first-child {
	width: 45%;
	background-color: #f9fbfb;
	font-weight: 700;
	font-size: 14px;
	color: #333333
}

.cart_totals .shipping-calculator-button {
	display: inline-block;
	border-bottom: 1px solid;
	color: var(--title-color);
	font-weight: 700
}

.cart_totals .shipping-calculator-button:hover {
	color: var(--theme-color)
}

.cart_totals .woocommerce-shipping-destination {
	margin-bottom: 10px
}

.cart_totals .woocommerce-shipping-methods {
	margin-bottom: 0
}

.cart_totals .shipping-calculator-form {
	display: none
}

.cart_totals .shipping-calculator-form p:first-child {
	margin-top: 20px
}

.cart_totals .shipping-calculator-form p:last-child {
	margin-bottom: 0
}

.cart_totals .shipping-calculator-form .as-btn {
	padding: 5px 30px
}

.cart_totals .amount {
	font-weight: 700
}

.cart_totals .order-total .amount {
	color: var(--theme-color)
}


@media (max-width: 767px) {
	.cart_table {
		text-align: left;
		min-width: auto;
		border-collapse: separate;
		border-spacing: 0 20px;
		border: none
	}

	.cart_table thead {
		display: none
	}

	.cart_table td {
		padding: 15px;
		display: block;
		width: 100%;
		padding-left: 25%;
		text-align: right;
		border: 1px solid #f3f3f3;
		border-bottom: none
	}

	.cart_table td::before {
		display: block
	}

	.cart_table td:last-child {
		border-bottom: 1px solid #f3f3f3
	}

	.cart_table td.actions {
		padding-left: 15px;
		text-align: center
	}

	.cart_table td.actions>.as-btn {
		margin-top: 10px;
		margin-right: 0;
		display: block;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin-left: auto;
		margin-right: auto
	}

	.cart_table td.actions>.as-btn:last-child {
		margin-right: auto
	}

	.cart_table .as-cart-coupon {
		width: 100%;
		text-align: center;
		float: none;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		display: block;
		padding-bottom: 10px
	}

	.cart_table .as-cart-coupon input {
		width: 100%;
		margin-bottom: 10px
	}

	.cart_totals th,
	.cart_totals td {
		padding: 15px 10px
	}

	.cart_totals th:first-child,
	.cart_totals td:first-child {
		width: 17%;
		line-height: 1.4
	}
}

.woocommerce-checkout .form-group,
.woocommerce-checkout .form-row {
	margin-bottom: 0
}

.woocommerce-checkout .form-select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .form-control {
	margin-bottom: 0
}

.woocommerce-checkout .select2-container--open .select2-dropdown--below {
	margin-top: -35px
}

.woocommerce-checkout .select2-container--open .select2-dropdown--above {
	position: relative;
	bottom: -30px
}

.woocommerce-checkout .select2-dropdown {
	border: 1px solid #e3e6e9;
	border-top: none
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
	border-radius: 0
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .select2-container--default .select2-selection--single .form-control:focus {
	color: var(--body-color)
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #eee;
	padding: 0
}

.woocommerce-form-login select,
.woocommerce-form-login .form-select,
.woocommerce-form-login .form-control,
.woocommerce-form-login .select2,
.woocommerce-form-login .select2-container,
.woocommerce-form-coupon select,
.woocommerce-form-coupon .form-select,
.woocommerce-form-coupon .form-control,
.woocommerce-form-coupon .select2,
.woocommerce-form-coupon .select2-container,
.woocommerce-checkout select,
.woocommerce-checkout .form-select,
.woocommerce-checkout .form-control,
.woocommerce-checkout .select2,
.woocommerce-checkout .select2-container {
	margin-bottom: var(--bs-gutter-x)
}

#ship-to-different-address {
	margin-top: 15px
}

.select2-container--default .select2-selection--single {
	height: 60px;
	border: 1px solid #e3e6e9
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 60px;
	padding-left: 30px;
	padding-right: 25px
}

.woocommerce-billing-fields .form-row {
	margin-bottom: 0
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
	content: '\f107';
	font-family: var(--icon-font)
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	margin: 0;
	border: none;
	top: 0
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 60px;
	line-height: 60px;
	margin-right: 30px
}

span.select2-selection.select2-selection--single:focus {
	outline: none
}

.shipping-calculator-form .form-select,
.shipping-calculator-form .form-control {
	height: 40px;
	padding-left: 15px;
	font-size: 16px;
	border-radius: 5px;
	background-position: right 13px center
}

.shipping-calculator-form .as-btn {
	font-size: 14px;
	padding: 0 20px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	height: 40px
}

.checkout-ordertable th,
.checkout-ordertable td {
	border: none;
	vertical-align: top;
	padding: 5px 0;
	font-size: 14px;
	font-weight: 700;
	color: #2c3e50
}

.checkout-ordertable ul {
	margin: 0;
	padding: 0
}

.checkout-ordertable .order-total .amount {
	color: var(--theme-color)
}

.checkout-ordertable input[type="hidden"]~label {
	color: var(--theme-color)
}

.woocommerce-checkout .form-group input:not(:last-child) {
	margin-bottom: var(--bs-gutter-x)
}

.checkout-ordertable th,
.checkout-ordertable td {
	border: 1px solid #ededed;
	text-align: right;
	padding: 5px 20px
}

.checkout-ordertable th {
	text-align: left
}

.woocommerce-checkout-payment {
	text-align: left
}

.woocommerce-checkout-payment ul {
	margin: 0;
	padding: 0;
	list-style-type: none
}

.woocommerce-checkout-payment ul li {
	padding-top: 10px;
	border-bottom: 1px solid #d8d8d8;
	border-radius: 4px;
	font-size: 16px
}

.woocommerce-checkout-payment ul input[type="radio"]~label {
	margin-bottom: 14px;
	color: var(--body-color)
}

.woocommerce-checkout-payment ul input[type="radio"]~label img {
	margin-bottom: -2px;
	margin-left: 10px
}

.woocommerce-checkout-payment .place-order {
	padding-top: 30px
}

.woocommerce-checkout-payment .payment_box {
	color: #a1b1bc;
	background-color: #ecf0f1;
	border: 1px solid #d8d8d8;
	border-bottom: none;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 4px;
	display: none
}

.woocommerce-checkout-payment .payment_box p {
	margin: 0
}

.as-checkout-wrapper form.woocommerce-form {
	margin-bottom: 25px
}

@media (max-width: 767px) {
	tfoot.checkout-ordertable th {
		display: none
	}

	.woocommerce-checkout-payment ul input[type="radio"]~label img {
		max-width: 150px
	}

	.checkout-ordertable th,
	.checkout-ordertable td {
		padding: 5px 20px 5px 60px
	}
}

.tinv-wishlist input[type=checkbox] {
	display: inline-block;
	opacity: 1;
	visibility: visible;
	vertical-align: middle;
	width: auto;
	height: auto
}

.tinv-wishlist .tinv-header {
	margin-top: -0.8rem
}

.tinv-wishlist .cart-empty {
	padding: 12px 25px;
	background-color: #eee;
	border-radius: 5px;
	font-weight: 700;
	font-size: 14px
}

.tinv-wishlist p.return-to-shop .button {
	display: inline-block;
	background-color: var(--theme-color);
	color: #fff;
	font-size: 14px;
	padding: 10px 25px;
	margin-top: 10px;
	font-weight: 700
}

.tinv-wishlist p.return-to-shop .button:Hover {
	background-color: var(--title-color);
	color: var(--white-color)
}

.tinv-wishlist table {
	border: none
}

.tinv-wishlist table th {
	color: var(--title-color)
}

.tinv-wishlist table td,
.tinv-wishlist table th {
	padding: 15.3px 10px;
	border-bottom: 1px solid var(--border-color);
	text-align: center
}

.tinv-wishlist table thead {
	background-color: var(--smoke-color)
}

.tinv-wishlist .product-cb,
.tinv-wishlist .product-remove {
	width: 40px;
	text-align: center
}

.tinv-wishlist .product-thumbnail {
	width: 110px
}

.tinv-wishlist .product-thumbnail img {
	border-radius: 5px
}

.tinv-wishlist .stock.in-stock {
	margin-bottom: 0
}

.tinv-wishlist ins {
	text-decoration: none
}

.tinv-wishlist .product-remove button {
	border: none;
	height: 22px;
	width: 22px;
	text-align: center;
	font-size: 12px;
	line-height: 22px;
	border-radius: 4px;
	padding-top: 0
}

.tinv-wishlist .product-remove button i {
	line-height: 22px;
	font-size: 14px
}

.tinv-wishlist .tinvwl-mobile {
	display: none
}

.tinv-wishlist .social-buttons {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	max-width: 295px;
	margin-left: auto;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.tinv-wishlist .social-buttons ul {
	padding-left: 0;
	margin-bottom: 0;
	margin-left: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 6px
}

.tinv-wishlist table.tinvwl-table-manage-list {
	font-size: 16px
}

.tinv-wishlist .product-stock .stock {
	display: block
}

.tinv-wishlist .product-stock span {
	display: inline
}

.tinv-wishlist .product-stock i {
	margin-right: 5px
}

.tinv-wishlist .tinv-modal .icon_big_times {
	margin-bottom: 5px;
	color: var(--theme-color)
}

.tinv-wishlist button.button {
	border: none;
	height: 40px;
	line-height: 40px;
	font-size: 12px;
	font-weight: 600;
	background-color: var(--theme-color);
	color: #fff;
	padding: 1px 15px;
	min-width: 140px
}

.tinv-wishlist button.button.mask-btn {
	padding: 0
}

.tinv-wishlist button.button .btn-text-mask {
	padding: 0.5px 21px
}

.tinv-wishlist button.button:hover {
	background-color: var(--title-color);
	color: #fff
}

.tinv-wishlist button.button i {
	font-size: 13px !important;
	margin-right: 3px !important
}

.tinv-wishlist th,
.tinv-wishlist td.product-name {
	font-size: 16px;
	font-weight: 600;
	font-family: var(--title-font)
}

.tinv-wishlist td.product-name a {
	color: var(--body-color)
}

.tinv-wishlist td.product-name a:hover {
	color: var(--theme-color)
}

.tinv-wishlist td.product-price del {
	margin-left: 8px;
	font-size: 0.9em
}

.tinv-wishlist .social-buttons>span {
	font-weight: 700;
	margin-right: 10px;
	font-family: var(--title-font);
	color: var(--title-color)
}

.tinv-wishlist .social-buttons li {
	display: inline-block;
	margin-right: 0
}

.tinv-wishlist .social-buttons li a.social {
	background-color: var(--theme-color);
	color: #fff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	display: inline-block;
	text-align: center;
	border-radius: 50px;
	margin-left: 3px
}

.tinv-wishlist .social-buttons li a.social:first-child {
	margin-left: 0
}

.tinv-wishlist .social-buttons li a.social i {
	line-height: inherit
}

.tinv-wishlist .social-buttons li a.social:hover {
	background-color: var(--title-color);
	color: var(--white-color)
}


@media (max-width: 767px) {
	.tinv-wishlist table {
		table-layout: fixed;
		border-bottom: 1px solid var(--border-color)
	}

	.tinv-wishlist .product-action .tinvwl-txt {
		display: inline-block
	}

	.tinv-wishlist button.button {
		min-width: 140px
	}

	.tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove,
	.tinv-wishlist table.tinvwl-table-manage-list thead th:not(.product-name) {
		display: none
	}

	.tinv-wishlist table td,
	.tinv-wishlist table th {
		border: 1px solid var(--border-color)
	}

	.tinv-wishlist table.tinvwl-table-manage-list tbody td {
		display: block;
		width: 100% !important;
		text-align: center
	}

	.product-name {
		text-align: center
	}

	.tinv-wishlist table td,
	.tinv-wishlist table th {
		border-bottom: none
	}

	.tinv-wishlist table tfoot {
		border-bottom: 1px solid var(--border-color)
	}

	.tinv-wishlist .social-buttons {
		max-width: 100%;
		margin-left: unset;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.tinv-wishlist .social-buttons ul {
		margin-left: unset;
		margin-top: 5px
	}

	.tinvwl-txt {
		display: inline-block
	}
}

.map-sec {
	position: relative
}

.map-sec .map {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%
}

.map-sec .map iframe {
	height: 100%;
	width: 100%;
	-webkit-filter: grayscale(100);
	filter: grayscale(100)
}

.map-contact {
	max-width: 590px;
	padding: 60px;
	background-color: var(--white-color);
	border-radius: 10px;
	position: relative;
	z-index: 3
}

.border-title {
	position: relative;
	padding-bottom: 14px;
	margin-bottom: 25px;
	margin-top: -0.22em;
	font-weight: 600
}

.border-title:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 80px;
	background-color: var(--theme-color)
}

.contact-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 340px;
	gap: 25px;
	margin-bottom: 40px
}

.contact-info:last-of-type {
	margin-bottom: 0
}

.contact-info_icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	font-size: 30px;
	background-color: rgba(13, 94, 244, 0.07);
	text-align: center;
	color: var(--theme-color);
	border-radius: 5px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.contact-info_title {
	font-size: 20px;
	margin-bottom: 6px;
	margin-top: -0.2em
}

.contact-info_text {
	margin-bottom: -0.45em;
	line-height: 1.5;
	display: block;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content
}

.contact-info_text a {
	color: var(--title-color)
}

.contact-info_text a:hover {
	color: var(--theme-color)
}

.contact-info:hover .contact-info_icon {
	background-color: var(--theme-color);
	color: var(--white-color)
}

@media (max-width: 767px) {
	.map-contact {
		padding: 40px 40px
	}

	.contact-info {
		margin-bottom: 30px
	}

	.contact-info:last-of-type {
		margin-bottom: 0
	}
}

@media (max-width: 575px) {
	.map-contact {
		padding: 40px 20px
	}
}

@media (max-width: 375px) {
	.contact-info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 20px
	}

	.contact-info .media-body {
		width: 100%
	}
}

.contact-form {
	max-width: 720px
}

.contact-form-wrap {
	background-color: var(--smoke-color);
	padding: 100px;
	border-radius: 10px;
	background-position: left center
}

@media (max-width: 767px) {
	.contact-form-wrap {
		padding: 50px 20px
	}
}

.feature-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px 20px
}

.feature-box-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 40px;
	-moz-column-gap: 40px;
	column-gap: 40px;
	row-gap: 20px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-top: 1px solid;
	border-bottom: 1px solid;
	border-color: #E3E9F0;
	padding-top: 35px;
	padding-bottom: 35px
}

.feature-box_title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 8px
}

.feature-box_text {
	margin-bottom: 0
}

.feature-box_icon {
	position: relative;
	text-align: center;
	z-index: 2
}

.img-box1 {
	position: relative;
	padding-right: 56px
}

.img-box1 .counter-box {
	position: absolute;
	bottom: 60px;
	left: 50%;
	-webkit-transform: translateX(-70%);
	-ms-transform: translateX(-70%);
	transform: translateX(-70%)
}

.counter-box {
	background-color: var(--white-color);
	padding: 25px 30px;
	border-radius: 10px;
	box-shadow: 0px 4px 30px rgba(19, 61, 117, 0.12)
}

.counter-box .counter-title {
	color: var(--theme-color);
	margin-bottom: 0
}

.counter-box .counter-text {
	font-size: 14px;
	font-weight: 600;
	color: var(--theme-color);
	text-transform: uppercase
}

@media (max-width: 375px) {
	.feature-box {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

.img-box2 {
	position: relative;
	padding-right: 56px
}

.img-box2 img {
	border-radius: 10px
}

.img-box2 .student-count {
	position: absolute;
	bottom: 60px;
	left: -70px
}

.student-count {
	display: inline-block;
	background-color: var(--white-color);
	box-shadow: 0px 4px 18px rgba(158, 165, 177, 0.23);
	border-radius: 10px;
	padding: 30px
}

.avater-list {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 22px
}

.avater-list .avater,
.avater-list .count {
	width: 56px;
	min-width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--white-color);
	margin-left: -25px
}

.avater-list .avater img,
.avater-list .count img {
	width: 100%;
	height: 100%
}

.avater-list .count {
	background-color: var(--theme-color);
	color: var(--white-color);
	display: inline-block;
	text-align: center;
	line-height: 50px
}

.about-content {
	padding-bottom: 40px;
	padding-left: 56px;
	padding-top: 40px
}

.img-box3 img {
	border-radius: 10px
}

@media (max-width: 767px) {
	.about-sec.bg-bottom-right {
		background-size: 240% 60%
	}
}

@media (max-width: 575px) {
	.about-sec.bg-bottom-right {
		background-size: 240% 80%
	}
}

.img-box5 {
	position: relative;
	margin-bottom: -120px
}

.img-box5 .img1 {
	text-align: center
}

.img-box5 .shape {
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}



.img-box7 {
	position: relative;
	margin-right: 36px
}

.img-box7 .img1,
.img-box7 .img2 {
	z-index: 2;
	position: relative
}

.img-box7 .img1 {
	border-radius: 10px;
	overflow: hidden;
	display: inline-block
}

.img-box7 .img2 {
	border-radius: 10px;
	overflow: hidden;
	display: inline-block;
	background-color: var(--white-color);
	padding: 10px 0 10px 10px;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.img-box7 .img2 img {
	border-radius: inherit
}

.moto-box {
	box-shadow: 1px 0px 28px rgba(131, 139, 154, 0.19);
	border-radius: 10px;
	background-color: var(--white-color);
	padding: 40px
}

.moto-box-wrap {
	margin-top: -180px;
	position: relative;
	z-index: 3;
	--bs-gutter-y: 24px
}

.moto-box_icon {
	margin-bottom: 30px;
	position: relative;
	z-index: 2
}

.moto-box_icon img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.moto-box_icon::before {
	content: '';
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(13, 94, 244, 0.07);
	z-index: -1;
	border-radius: 999px
}

.moto-box_title {
	margin-top: -0.28em;
	font-size: 24px
}

.moto-box_text {
	margin-bottom: -0.48em;
	max-width: 300px
}

.moto-box:hover .moto-box_icon img {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg)
}


.img-box8 {
	position: relative
}

.img-box8 .img1 {
	text-align: center
}

.img-box8 .img1 img {
	border-radius: 10px
}

.img-box8 .img2 {
	border-radius: 10px;
	background-color: var(--white-color);
	padding-top: 10px;
	padding-left: 10px;
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 0
}

.img-box8 .img2 img {
	border-radius: 10px
}

.img-box8 .img3 {
	position: absolute;
	top: 80px;
	left: 0;
	-webkit-animation: jumpReverseAni 7s linear infinite;
	animation: jumpReverseAni 7s linear infinite
}

.img-box8 .img3 img {
	border-radius: 6px
}

.img-box8 .shape {
	position: absolute;
	bottom: 0px;
	left: -100px;
	z-index: -1;
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

.img-box9 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px
}

.img-box9 .img2 {
	margin-bottom: 30px
}

.img-box9 img {
	border-radius: 10px
}

.img-box4 {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 32px;
	padding-left: 56px
}

.img-box4 .img1,
.img-box4 .img2 {
	width: 100%;
	border-radius: 10px;
	overflow: hidden
}

.img-box4 .img1 img,
.img-box4 .img2 img {
	width: 100%
}

.img-box4 .img1 {
	margin-top: -50px
}

.img-box4 .img2 {
	margin-top: 50px
}

.img-box4 .shape {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

@media (max-width: 575px) {
	.img-box4 {
		gap: 10px
	}
}

.team-box {
	border-radius: 10px;
	overflow: hidden;
	position: relative
}

.team-box .team-img {
	position: relative;
	overflow: hidden;
	border-radius: 11px
}

.team-box .team-img img {
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.team-box .team-content {
	background-color: var(--white-color);
	position: absolute;
	bottom: -150px;
	left: 0;
	width: 100%;
	padding: 30px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.team-box .team-title {
	font-size: 24px;
	margin-bottom: 0;
	margin-top: -0.23em;
	font-weight: 500
}

.team-box .team-title a {
	color: inherit
}

.team-box .team-title a:hover {
	color: var(--theme-color)
}

.team-box .team-desig {
	color: var(--theme-color);
	display: block;
	font-family: var(--title-font);
	margin-bottom: -0.45em
}

.team-box .as-social {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	visibility: hidden;
	opacity: 0
}

.team-box:hover .team-img img {
	-webkit-filter: grayscale(100) blur(1px) brightness(0.5);
	filter: grayscale(100) blur(1px) brightness(0.5)
}

.team-box:hover .team-content {
	bottom: 0;
	visibility: visible;
	opacity: 1
}

.team-box:hover .as-social {
	top: 30%;
	visibility: visible;
	opacity: 1
}

#team-sec {
	background-position: center bottom;
	border-radius: 15px;
	max-width: 1680px;
	margin-left: auto;
	margin-right: auto
}

.team-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative
}

.team-info .line {
	height: 16px;
	width: 1px;
	display: inline-block;
	background-color: #B3C1D3
}

.team-info span {
	color: var(--title-color)
}

.team-info span i {
	color: var(--theme-color);
	margin-right: 8px
}

.team-card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	background-color: var(--white-color);
	box-shadow: 0px 5px 18px rgba(76, 88, 104, 0.06)
}

.team-card .team-img {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 35px));
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 35px))
}

.team-card .team-img img {
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.team-card .team-title {
	font-size: 24px;
	margin-bottom: 0;
	margin-top: -0.23em;
	font-weight: 600
}

.team-card .team-title a {
	color: inherit
}

.team-card .team-title a:hover {
	color: var(--theme-color)
}

.team-card .team-desig {
	color: var(--theme-color);
	display: block;
	font-family: var(--title-font);
	margin-bottom: -0.45em
}

.team-card .team-content {
	background-color: var(--white-color);
	padding: 20px 30px 30px 30px
}

.team-card .team-info {
	padding: 23px 30px;
	border-top: 1px solid #ECF1F9
}

.team-card .icon-btn {
	background-color: var(--theme-color);
	color: var(--white-color);
	position: relative;
	z-index: 3
}

.team-card .icon-btn:hover i {
	-webkit-transition: 0.3s;
	transition: 0.3s
}

.team-card .icon-btn:hover i:before {
	content: "\f068"
}

.team-card .as-social {
	position: absolute;
	width: 45px;
	bottom: 50px;
	left: 2.5px
}

.team-card .as-social a {
	margin-right: 0;
	margin-bottom: 5px;
	background-color: var(--white-color);
	color: var(--theme-color);
	box-shadow: 0px 5px 18px rgba(76, 88, 104, 0.06);
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(45px);
	-ms-transform: translateY(45px);
	transform: translateY(45px);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out
}

.team-card .as-social a:nth-child(1) {
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

.team-card .as-social a:nth-child(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s
}

.team-card .as-social a:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s
}

.team-card .as-social a:nth-child(4) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s
}

.team-card .as-social a:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.team-card .team-social {
	position: absolute;
	bottom: 175px;
	left: 30px
}

.team-card .team-social:hover .as-social a {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}

.team-card .team-social:hover .as-social a:nth-child(4) {
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

.team-card .team-social:hover .as-social a:nth-child(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s
}

.team-card .team-social:hover .as-social a:nth-child(2) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s
}

.team-card .team-social:hover .as-social a:nth-child(1) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s
}

.team-card:hover .team-img img {
	-webkit-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08)
}

.team-card.style2 .team-social {
	bottom: 100px
}

.team-grid {
	position: relative;
	overflow: hidden;
	background-color: var(--white-color);
	border: 1px solid #ECF1F9;
	box-shadow: 0px 9px 14px #FBFBFB;
	border-radius: 10px
}

.team-grid .team-img {
	margin: -1px;
	overflow: hidden;
	position: relative
}

.team-grid .team-img img {
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.team-grid .team-img:before {
	content: '';
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(5, 10, 16, 0.0728) 55.88%, rgba(8, 18, 31, 0.91) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(5, 10, 16, 0.0728) 55.88%, rgba(8, 18, 31, 0.91) 100%);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1
}

.team-grid .team-content {
	text-align: center;
	position: absolute;
	bottom: 72px;
	left: 0;
	width: 100%;
	padding: 40px 15px;
	z-index: 3
}

.team-grid .team-title {
	color: var(--white-color);
	font-size: 24px;
	margin-bottom: 0;
	margin-top: -0.23em;
	font-weight: 600
}

.team-grid .team-title a {
	color: inherit
}

.team-grid .team-title a:hover {
	color: var(--theme-color)
}

.team-grid .team-desig {
	color: var(--white-color);
	display: block;
	font-family: var(--title-font);
	margin-bottom: -0.45em
}

.team-grid .team-info {
	padding: 23px 40px
}

.team-grid .icon-btn {
	background-color: var(--theme-color);
	color: var(--white-color);
	position: relative;
	z-index: 3
}

.team-grid .icon-btn:hover i {
	-webkit-transition: 0.3s;
	transition: 0.3s
}

.team-grid .icon-btn:hover i:before {
	content: "\f068"
}

.team-grid:hover .team-img img {
	-webkit-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08)
}



@media (max-width: 767px) {
	.team-grid .team-info {
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around
	}
}

@media (max-width: 430px) {
	.team-grid .team-info {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
}

.team-details-img {
	border-radius: 10px;
	overflow: hidden;
	margin-right: 20px
}

.about-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.about-box .as-social a {
	border: 1px solid #DBE3EE;
	color: var(--body-color);
	border-radius: 3px;
	--icon-size: 34px;
	font-size: 13px
}

.about-box .as-social a:hover {
	color: var(--white-color);
	border-color: var(--theme-color)
}

.about-info .title {
	font-size: 40px;
	margin-bottom: 5px;
	margin-top: -0.2em
}

.about-info .desig {
	display: block;
	color: var(--theme-color)
}

.social-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px
}

.social-box .title {
	font-weight: 500;
	color: var(--title-color)
}

.about-quality {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;
	border-top: 1px dashed;
	border-bottom: 1px dashed;
	border-color: #E0E0E0;
	margin-top: 38px
}

.quality-box .quality-text {
	display: block
}

.quality-box .quality-text i {
	color: var(--theme-color);
	margin-right: 10px
}

.quality-box .quality-text a {
	color: var(--body-color)
}

.quality-box .quality-text a:hover {
	color: var(--theme-color)
}


@media (max-width: 767px) {
	.about-quality {
		padding-top: 20px;
		padding-bottom: 20px;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 15px
	}

	.quality-box {
		min-width: calc(50% - 8px)
	}

	.about-info .title {
		font-size: 32px
	}

	.about-box {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 15px 5px
	}
}

@media (max-width: 575px) {
	.about-info .title {
		font-size: 28px;
		margin-bottom: 2px
	}
}

.testi-card-slide .slick-arrow {
	--pos-x: -164px;
	top: 111%;
	margin-top: 0;
	visibility: visible;
	opacity: 1
}

.testi-card-tab {
	border-bottom: 2px solid #284A75;
	margin-bottom: 30px;
	padding-bottom: 30px;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px
}

.testi-card-tab .tab-btn {
	border: none;
	background-color: transparent;
	padding: 0;
	border-radius: 999px;
	overflow: hidden
}

.testi-card-tab .tab-btn img {
	width: 100%
}

.testi-card-tab .indicator {
	position: absolute;
	bottom: -2px;
	left: var(--pos-x);
	height: 2px;
	width: var(--width-set);
	background-color: var(--theme-color);
	-webkit-transition: 0.6s ease;
	transition: 0.6s ease
}

.testi-card_name {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 4px;
	color: var(--white-color)
}

.testi-card_desig {
	margin-bottom: -0.491em;
	font-weight: 500;
	display: block;
	color: var(--theme-color)
}

.testi-card_text {
	font-size: 20px;
	margin-top: -0.4em;
	margin-bottom: 25px;
	color: var(--white-color)
}

@media (max-width: 767px) {
	.testi-card-tab {
		gap: 10px
	}

	.testi-card_text {
		font-size: 16px
	}
}

@media (max-width: 575px) {
	.testi-card-tab {
		gap: 5px
	}
}

.testi-box {
	padding: 50px;
	background-color: var(--smoke-color);
	border-radius: 10px;
	overflow: hidden
}

.testi-box_content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 30px
}

.testi-box_img {
	min-width: 120px
}

.testi-box_img img {
	border-radius: 10px
}

.testi-box_bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.testi-box_name {
	font-size: 24px;
	margin-bottom: 3px;
	margin-top: -0.24em;
	font-weight: 500
}

.testi-box_desig {
	color: var(--theme-color);
	margin-bottom: -0.45em;
	display: block
}

.testi-box_text {
	font-size: 20px;
	font-family: var(--title-font);
	line-height: 1.5;
	margin-bottom: 0
}

.testi-box_bottom {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #DAE5F0
}

.testi-box_review {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 3px
}

.testi-box_review i {
	font-size: 14px;
	color: var(--theme-color)
}


@media (max-width: 767px) {
	.testi-box {
		padding: 40px 20px
	}

	.testi-box_content {
		gap: 25px
	}

	.testi-box_bottom {
		margin-top: 25px;
		padding-top: 30px
	}

	.testi-box_text {
		font-size: 18px
	}
}

@media (max-width: 767px) {
	.testi-box_content {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

@media (max-width: 375px) {
	.testi-box_name {
		font-size: 20px;
		margin-bottom: 0
	}

	.testi-box_bottom {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

.testi-grid {
	background-color: transparent;
	border: 2px solid #0B2950;
	padding: 60px;
	border-radius: 10px;
	background-color: transparent;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}


.testi-grid_name {
	font-size: 24px;
	margin-bottom: 3px;
	margin-top: -0.24em;
	font-weight: 500;
	color: var(--white-color)
}

.testi-grid_desig {
	color: var(--theme-color);
	margin-bottom: -0.45em;
	display: block
}

.testi-grid_text {
	font-size: 20px;
	font-family: var(--title-font);
	line-height: 1.5;
	margin-bottom: -0.4em;
	color: var(--light-color)
}

.testi-grid_bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px dashed #29456A
}

.testi-grid_author {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px
}

.testi-grid_avater {
	border-radius: 999px;
	overflow: hidden;
	width: 60px
}

.testi-grid_review {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 3px
}

.testi-grid_review i {
	font-size: 14px;
	color: var(--yellow-color)
}

.slick-center .testi-grid {
	background-color: #092141;
	border-color: #092141
}

@media (max-width: 767px) {
	.testi-grid_text {
		font-size: 18px
	}
}

@media (max-width: 400px) {
	.testi-grid_name {
		font-size: 20px;
		margin-bottom: 0
	}

	.testi-grid_avater {
		width: 50px
	}

	.testi-grid_bottom {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 10px
	}
}

.testi-grid-style2 {
	background: var(--white-color);
	border: 1px solid #ECF1F9;
	box-shadow: 0px 9px 14px rgba(60, 79, 115, 0.04)
}

.testi-grid-style2 .testi-grid_text {
	color: var(--body-font)
}

.testi-grid-style2 .testi-grid_name {
	color: var(--title-color)
}

.testi-grid-style2 .testi-grid_bottom {
	border-color: #D0D7E3
}
.counter-card {
	text-align: center;
	padding: 100px 0
}

.counter-card-wrap {
	border-right: 1px solid;
	border-color: #2F78FF !important
}

.counter-card-wrap:last-child {
	border-right: 0
}

.counter-card_number {
	color: var(--white-color);
	margin-bottom: 6px;
	margin-top: -0.24em;
	font-weight: 600
}

.counter-card_text {
	color: var(--white-color);
	display: block;
	margin-bottom: -0.2em;
	font-size: 24px
}

.counter-card_text strong {
	font-weight: 600
}


@media (max-width: 767px) {
	.counter-card {
		padding: 40px 0
	}

	.counter-card_number {
		margin-bottom: 0
	}

	.counter-card_text {
		font-size: 18px
	}
}

@media (max-width: 575px) {
	.counter-card-wrap {
		border-right: 0 !important
	}

	.counter-card-wrap:nth-child(3) {
		border-bottom: 1px solid
	}
}

.counter-grid {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.counter-grid-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 25px 20px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.counter-grid_icon {
	min-width: 55px
}

.counter-grid_icon img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.counter-grid_number {
	color: var(--theme-color);
	margin-bottom: 0;
	margin-top: -0.2em
}

.counter-grid_text {
	color: var(--title-color);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	display: block;
	margin-bottom: -0.45em
}

.counter-grid:hover .counter-grid_icon img {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg)
}

.blog-meta.style2 span,
.blog-meta.style2 a {
	font-family: var(--body-font);
	margin-right: 25px;
	padding-right: 0;
	color: #6A6E71
}

.blog-meta.style2 span:after,
.blog-meta.style2 a:after {
	display: none
}

.blog-meta.style2 span:last-child,
.blog-meta.style2 a:last-child {
	margin-right: 0
}

.blog-meta a:hover {
	color: var(--theme-color)
}

.blog-grid {
	--space: 50px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	border: 1px solid var(--border-color);
	background-color: var(--white-color);
	position: relative;
	border-radius: 10px;
	overflow: hidden
}

.blog-grid-wrap {
	display: grid;
	grid-template-areas: "one one one one one one two two two two two two""one one one one one one three three three three three three"
}

.blog-grid .tag {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--theme-color);
	background-color: #ECF3FF;
	padding: 5px 16px;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 15px
}

.blog-grid .blog-img {
	position: relative;
	min-width: 250px;
	height: 220px;
	overflow: hidden;
	margin: -1px
}

.blog-grid .blog-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.blog-grid .blog-content {
	padding: 30px;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center
}

.blog-grid .blog-title {
	font-size: 24px;
	margin-bottom: 20px;
	line-height: 1.417;
	font-weight: 600
}

.blog-grid .blog-meta {
	margin-bottom: -0.4em
}

.blog-grid:nth-child(1) {
	grid-area: one;
	margin-right: 12px;
	display: block;
	background-color: transparent
}

.blog-grid:nth-child(1) .blog-content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: var(--space);
	z-index: 2
}

.blog-grid:nth-child(1) .blog-img {
	min-width: 100%;
	height: 100%
}

.blog-grid:nth-child(1) .blog-img:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.06) 0%, #020F21 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, #020F21 100%);
	width: 100%;
	height: 100%;
	z-index: 1
}

.blog-grid:nth-child(1) .category {
	top: var(--space);
	left: var(--space)
}

.blog-grid:nth-child(1) .blog-meta a,
.blog-grid:nth-child(1) .blog-meta span {
	color: var(--white-color)
}

.blog-grid:nth-child(1) .blog-meta a i,
.blog-grid:nth-child(1) .blog-meta span i {
	color: var(--white-color)
}

.blog-grid:nth-child(1) .blog-title {
	color: var(--white-color);
	font-size: 30px;
	line-height: 1.333
}

.blog-grid:nth-child(1) .link-btn {
	color: var(--white-color)
}

.blog-grid:nth-child(1) .link-btn:before {
	background-color: var(--white-color)
}

.blog-grid:nth-child(2) {
	grid-area: two;
	margin-left: 12px;
	margin-bottom: 24px
}

.blog-grid:nth-child(3) {
	grid-area: three;
	margin-left: 12px
}

.blog-grid:hover .blog-img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

@media (max-width: 767px) {
	.blog-grid {
		--space: 30px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.blog-grid .blog-img {
		height: 100%
	}

	.blog-grid .blog-content {
		-webkit-align-self: flex-start;
		-ms-flex-item-align: start;
		align-self: flex-start
	}
}

@media (max-width: 575px) {
	.blog-grid:nth-child(1) .blog-title {
		font-size: 22px
	}

	.blog-grid:nth-child(1) .blog-img {
		min-height: 280px
	}
}

@media (max-width: 375px) {
	.blog-grid .blog-title {
		font-size: 20px
	}

	.blog-grid:nth-child(1) .blog-content {
		padding: 35px 15px
	}

	.blog-grid:nth-child(1) .blog-title {
		font-size: 20px
	}

	.blog-grid .blog-content {
		padding: 30px 15px
	}
}

.blog-card {
	box-shadow: 0px 3px 0px #DFEAF4;
	border-radius: 10px;
	background-color: var(--white-color);
	overflow: hidden
}

.blog-card .blog-title {
	font-size: 24px;
	margin-top: -0.23em;
	line-height: 1.417;
	font-weight: 500;
	margin-bottom: 20px
}

.blog-card .blog-img {
	overflow: hidden
}

.blog-card .blog-img img {
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.blog-card .blog-content {
	padding: 40px
}

.blog-card .blog-meta {
	margin-top: -0.4em;
	margin-bottom: 20px
}

.blog-card .link-btn {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: -0.2em;
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content
}

.blog-card:hover .blog-img img {
	-webkit-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08)
}

@media (max-width: 767px) {
	.blog-card .blog-content {
		padding: 40px 40px
	}
}

@media (max-width: 410px) {
	.blog-card .blog-content {
		padding: 40px 20px
	}
}

@media (max-width: 375px) {
	.blog-card .blog-title {
		font-size: 20px
	}

	.blog-card .blog-meta {
		margin-bottom: 15px
	}

	.blog-card .blog-meta a,
	.blog-card .blog-meta span {
		margin-right: 15px;
		font-size: 14px
	}

	.blog-card .blog-meta a:last-child,
	.blog-card .blog-meta span:last-child {
		margin-right: 0
	}

	.blog-card .blog-meta a i,
	.blog-card .blog-meta span i {
		margin-right: 5px
	}
}

.blog-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: var(--bs-gutter-x);
	margin-bottom: var(--bs-gutter-x)
}

.blog-box .blog-title {
	font-size: 24px;
	margin-top: -0.28em;
	line-height: 1.417;
	font-weight: 600;
	margin-bottom: 15px
}

.blog-box .blog-img {
	overflow: hidden;
	border-radius: 10px;
	min-width: -webkit-fit-content;
	min-width: -moz-fit-content;
	min-width: fit-content
}

.blog-box .blog-img img {
	width: 100%;
	min-width: -webkit-fit-content;
	min-width: -moz-fit-content;
	min-width: fit-content;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.blog-box .blog-meta {
	margin-top: -0.4em;
	padding-bottom: 19px;
	margin-bottom: 24px;
	border-bottom: 1px dashed #D9D9D9
}

.blog-box .blog-meta span,
.blog-box .blog-meta a {
	font-family: var(--title-font);
	margin-right: 20px
}

.blog-box .blog-meta span:last-child,
.blog-box .blog-meta a:last-child {
	margin-right: 0
}

.blog-box .blog-meta span i,
.blog-box .blog-meta a i {
	color: var(--body-color)
}

.blog-box .link-btn {
	margin-bottom: -0.2em;
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content
}

.blog-box .as-btn {
	color: var(--theme-color);
	border-color: var(--theme-color)
}

.blog-box .as-btn::before {
	background-color: var(--white-color)
}

.blog-box .as-btn:hover {
	color: var(--white-color)
}

.blog-box .as-btn:hover::before {
	background-color: var(--theme-color)
}

.blog-box.style-big {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start
}

.blog-box.style-big .blog-title {
	font-size: 36px;
	line-height: 1.278;
	margin-bottom: 25px;
	margin-top: 0
}

.blog-box.style-big .blog-img {
	margin-bottom: 15px;
	min-width: 100%
}

.blog-box.style-big .blog-img img {
	min-width: 100%
}

@media (max-width: 767px) {
	.blog-box {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 35px
	}

	.blog-box .blog-img {
		width: 100%;
		height: 260px
	}

	.blog-box.style-big .blog-img {
		height: auto
	}

	.blog-box.style-big .blog-title {
		font-size: 26px;
		line-height: 1.378
	}
}

@media (max-width: 375px) {
	.blog-box .blog-title {
		font-size: 20px
	}
}

.blog-block {
	background: var(--white-color);
	box-shadow: 4px 7px 20px rgba(234, 237, 242, 0.7);
	border-radius: 10px;
	padding: 30px;
	overflow: hidden
}

.blog-block .blog-img {
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden
}

.blog-block .blog-img img {
	width: 100%
}

.blog-block .blog-title {
	font-size: 24px;
	margin-top: -0.28em;
	line-height: 1.417;
	font-weight: 500;
	margin-bottom: 16px
}

.blog-block .blog-meta {
	margin-bottom: 22px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
	position: relative
}

.blog-block .blog-meta:after {
	content: '';
	height: 1px;
	width: calc(100% + 60px);
	position: absolute;
	left: -30px;
	bottom: -1px;
	background-color: var(--border-color)
}

.blog-block .blog-meta a i,
.blog-block .blog-meta span i {
	color: var(--body-color)
}

.blog-block .blog-meta a:hover i,
.blog-block .blog-meta span:hover i {
	color: var(--theme-color)
}

.blog-block .link-btn {
	margin-bottom: -0.7em;
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content
}

.blog-block:hover .blog-img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

@media (max-width: 991px) {
	.blog-block {
		padding: 20px 20px 30px 20px
	}
}

@media (max-width: 767px) {
	.blog-block {
		padding: 30px
	}
}

@media (max-width: 575px) {
	.blog-block {
		padding: 20px 20px 30px 20px
	}

	.blog-block .blog-title {
		font-size: 22px
	}
}

@media (max-width: 375px) {
	.blog-block .blog-img {
		margin-bottom: 20px
	}

	.blog-block .blog-title {
		font-size: 20px;
		margin-bottom: 12px
	}

	.blog-block .blog-meta {
		padding-bottom: 15px;
		margin-bottom: 17px
	}

	.blog-block .blog-meta a,
	.blog-block .blog-meta span {
		font-size: 14px;
		margin-right: 14px
	}

	.blog-block .blog-meta a i,
	.blog-block .blog-meta span i {
		margin-right: 5px
	}
}

.brand-box {
	text-align: center
}

.brand-box-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 40px 24px
}

@media (max-width: 430px) {
	.brand-box-wrap {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px 24px;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.feature-card {
	padding: 45px 30px;
	background-color: var(--white-color);
	box-shadow: 0px 4px 21px rgba(179, 193, 219, 0.15);
	border-radius: 10px;
	text-align: center
}

.feature-card-wrap:nth-child(even) {
	-webkit-transform: translateY(24px);
	-ms-transform: translateY(24px);
	transform: translateY(24px)
}

.feature-card_icon {
	margin-bottom: 25px
}

.feature-card_icon img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.feature-card_title {
	font-size: 22px;
	margin-bottom: 12px;
	margin-top: -0.28em;
	font-weight: 600
}

.feature-card_text {
	margin-bottom: -0.45em
}

.feature-card:hover .feature-card_icon img {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg)
}

@media (max-width: 767px) {
	.feature-card-wrap:nth-child(even) {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.feature-grid {
	padding: 60px 50px;
	border-radius: 10px;
	text-align: center;
	border: 2px solid #0B2950;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.feature-grid_icon {
	width: 100px;
	height: 100px;
	line-height: 100px;
	background-color: var(--theme-color);
	border-radius: 50%;
	text-align: center;
	margin: 0 auto 40px auto
}

.feature-grid_icon img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.feature-grid_title {
	font-size: 24px;
	margin-bottom: 14px;
	margin-top: -0.28em;
	font-weight: 600;
	color: var(--white-color)
}

.feature-grid_text {
	margin-bottom: -0.48em;
	color: var(--light-color)
}

.feature-grid:hover {
	background-color: #092141
}

.feature-grid:hover .feature-grid_icon img {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg)
}

@media (max-width: 1199px) {
	.feature-grid {
		padding: 45px 15px
	}

	.feature-grid_icon {
		margin: 0 auto 30px auto
	}
}

@media (max-width: 767px) {
	.feature-grid_text {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto
	}
}

.video-btn {
	font-size: 36px;
	color: var(--white-color);
	background-color: var(--theme-color);
	padding: 42px 57px
}

.video-btn:hover {
	background-color: var(--title-color);
	color: var(--white-color)
}

@media (max-width: 767px) {
	.video-btn {
		font-size: 24px;
		padding: 22px 37px
	}
}

.checklist ul {
	padding-left: 0;
	list-style: none;
	text-align: left;
	margin-bottom: 0
}

.checklist li {
	color: var(--title-color);
	margin-bottom: 10px;
	font-weight: 500;
	position: relative;
	padding-left: 28px
}

.checklist li:before {
	content: "\f058";
	font-family: var(--icon-font);
	font-weight: 900;
	color: var(--theme-color);
	position: absolute;
	left: 0;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out
}

.checklist li:first-child {
	margin-top: -0.5em
}

.checklist li:last-child {
	margin-bottom: -0.5em
}

.checklist .check-text {
	margin-bottom: 0
}

.checklist .check-title {
	margin-bottom: 10px;
	font-size: 24px
}

.checklist.style2 ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-webkit-column-gap: 50px;
	-moz-column-gap: 50px;
	column-gap: 50px
}

@media (max-width: 1399px) {
	.checklist.style2 ul {
		gap: 20px
	}
}

@media (max-width: 767px) {
	.checklist.style2 ul {
		grid-template-columns: repeat(1, 1fr)
	}
}

.checklist.style2 li {
	color: var(--body-color);
	padding-left: 40px;
	margin-bottom: 0
}

.checklist.style2 li:before {
	font-size: 24px;
	top: 5px
}

.checklist.style2 li:first-child {
	margin-top: 0
}

.checklist.style3 li {
	font-family: var(--body-font);
	font-weight: 400
}

.checklist.style3 li:before {
	content: "\f14a";
	font-size: 22px
}

.checklist.style4 li {
	font-family: var(--body-font);
	font-weight: 400
}

.checklist.style4 li:before {
	content: "\f00c";
	font-size: 18px
}

@media (max-width: 1199px) {
	.checklist.mb-40 {
		margin-bottom: 32px
	}
}

@media (max-width: 1199px) {
	.checklist.mb-45 {
		margin-bottom: 35px
	}
}

.notification-box {
	background-color: var(--white-color);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 910px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0px 5px 30px #E7EBF0;
	border-radius: 10px;
	padding: 40px;
	gap: 30px;
	position: relative;
	z-index: 3
}

.notification-box .as-btn {
	margin-left: auto
}

.notification-box .notification-title {
	margin-bottom: 6px
}

.notification-box .notification-text {
	margin-bottom: 0
}

@media (max-width: 991px) {
	.notification-box {
		padding: 25px;
		gap: 20px
	}
}

@media (max-width: 767px) {
	.notification-box {
		padding: 35px 15px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.notification-box .notification-content {
		text-align: center
	}

	.notification-box .as-btn {
		margin-left: unset
	}
}

.course-form input,
.course-form select {
	background-color: transparent;
	border-color: #29375F;
	color: var(--white-color);
	height: 55px
}

.course-form input::-moz-placeholder,
.course-form select::-moz-placeholder {
	color: var(--white-color)
}

.course-form input::-webkit-input-placeholder,
.course-form select::-webkit-input-placeholder {
	color: var(--white-color)
}

.course-form input:-ms-input-placeholder,
.course-form select:-ms-input-placeholder {
	color: var(--white-color)
}

.course-form input::-webkit-input-placeholder,
.course-form select::-webkit-input-placeholder {
	color: var(--white-color)
}

.course-form input::-moz-placeholder,
.course-form select::-moz-placeholder {
	color: var(--white-color)
}

.course-form input:-ms-input-placeholder,
.course-form select:-ms-input-placeholder {
	color: var(--white-color)
}

.course-form input::-ms-input-placeholder,
.course-form select::-ms-input-placeholder {
	color: var(--white-color)
}

.course-form input::placeholder,
.course-form select::placeholder {
	color: var(--white-color)
}

.course-form input:focus,
.course-form select:focus {
	border-color: var(--theme-color)
}

.bg-img {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%
}

.bg-img img {
	width: 100%;
	height: 100%
}

.img-left {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
	width: 48%
}

.img-left img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top right
}

@media (max-width: 1199px) {
	.img-left {
		position: relative;
		width: 100%
	}
}

.insta-box {
	position: relative;
	border-radius: 8px;
	overflow: hidden
}

.insta-box .icon-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	-ms-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s
}

.insta-box img {
	width: 100%
}

.insta-box::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #001D52;
	position: absolute;
	inset: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	border-radius: inherit
}

.insta-box:hover:before {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	visibility: visible;
	opacity: 0.6
}

.insta-box:hover .icon-btn {
	-webkit-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1)
}

.as-box {
	text-align: center
}

.as-box_img {
	margin-bottom: -110px;
	max-width: 476px;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
	position: relative;
	padding-top: 30px
}

@media (max-width: 575px) {
	.as-box_img {
		margin-bottom: -68px
	}
}

.as-box_img:before,
.as-box_img:after {
	content: "";
	width: 100%;
	height: 80%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	background-color: var(--smoke-color);
	z-index: -1;
	border-width: 9px 15px 0 15px;
	border-style: solid;
	border-color: var(--theme-color);
	border-radius: 999px
}

.as-box_img::after {
	border: none;
	top: 9px;
	left: 13px;
	width: calc(100% - 26px)
}

.as-box_content {
	padding: 140px 60px 60px 60px;
	background-color: var(--smoke-color);
	border-radius: 15px
}

@media (max-width: 575px) {
	.as-box_content {
		padding: 100px 20px 45px 20px
	}
}

.as-box_text {
	max-width: 450px;
	margin: 0 auto 23px auto
}

.as-box.theme2 {
	--theme-color: #F20F10;
	--smoke-color: #FFF3F3
}

.as-box.theme2 .as-btn {
	box-shadow: 0px 6px 16px rgba(242, 15, 16, 0.24)
}

.as-video {
	position: relative;
	background-color: var(--white-color);
	border-radius: 10px;
	box-shadow: 0px 4px 16px #EBEEF3;
	padding: 20px
}

.as-video img {
	border-radius: inherit;
	width: 100%
}

.as-video .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.as-video .play-btn>i {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.as-video .play-btn:after,
.as-video .play-btn:before {
	background-color: var(--theme-color)
}

@media (max-width: 1199px) {
	p.mb-30 {
		margin-bottom: 25px
	}

	p.mb-35 {
		margin-bottom: 28px
	}

	p.mb-40 {
		margin-bottom: 32px
	}

	p.mb-45 {
		margin-bottom: 35px
	}
}

.img-box6 {
	position: relative;
	padding-right: 56px
}

.img-box6 .img1,
.img-box6 .img2 {
	z-index: 2;
	position: relative
}

.img-box6 .img1 {
	border-radius: 10px;
	overflow: hidden;
	display: inline-block
}

.img-box6 .img2 {
	z-index: 4;
	margin-top: -27%;
	border-radius: 10px;
	overflow: hidden;
	display: inline-block;
	background-color: var(--smoke-color);
	padding-left: 10px;
	padding-top: 10px
}

.img-box6 .img2 img {
	border-radius: inherit
}

.img-box6 .shape1,
.img-box6 .shape2 {
	position: absolute
}

.img-box6 .shape1 {
	bottom: 70px;
	left: 20%;
	z-index: 3;
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

.img-box6 .shape2 {
	top: 70px;
	left: -70px;
	-webkit-animation: jumpReverseAni 7s linear infinite;
	animation: jumpReverseAni 7s linear infinite
}

.check-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	background-color: var(--white-color);
	padding: 30px;
	border-radius: 10px;
	max-width: 560px;
	margin-bottom: 24px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.check-box:nth-of-type(even) {
	margin-left: auto
}

.check-box:last-of-type {
	margin-bottom: 0
}

.check-box .icon i {
	font-size: 22px;
	color: var(--theme-color);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.check-box .title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: -0.28em;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.check-box .text {
	margin-bottom: -0.48em;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.check-box:hover {
	background-color: var(--theme-color)
}

.check-box:hover .title,
.check-box:hover .text {
	color: var(--white-color)
}

.check-box:hover .icon i {
	color: var(--white-color)
}

@media (max-width: 1399px) {
	.img-box6 {
		padding-right: 0
	}
}

@media (max-width: 1199px) {
	.img-box6 {
		margin-bottom: 10px
	}
}

@media (max-width: 991px) {
	.img-box6 {
		margin-bottom: 30px
	}
}

@media (max-width: 575px) {
	.check-box {
		padding: 30px 15px
	}

	.check-box .title {
		font-size: 20px;
		margin-top: -0.2em
	}
}

.tab-menu1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px
}

.tab-menu1 button {
	font-size: 14px;
	color: var(--title-color);
	font-weight: 500;
	text-transform: uppercase;
	border: none;
	background-color: var(--white-color);
	padding: 9.5px 30px;
	box-shadow: 0px 4px 10px rgba(107, 131, 174, 0.04);
	border-radius: 999px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.tab-menu1 button:hover {
	color: var(--theme-color)
}

.tab-menu1 button.active {
	color: var(--white-color);
	background-color: var(--theme-color)
}

@media (max-width: 1399px) {
	.tab-menu1 {
		gap: 10px
	}

	.tab-menu1 button {
		padding: 9.5px 25px
	}
}

@media (max-width: 1199px) {
	.tab-menu1 {
		margin-bottom: 30px
	}

	.tab-menu1 button {
		font-size: 13px;
		padding: 7px 17px
	}
}

.tab-menu2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 40px;
	position: relative;
	margin-bottom: -0.4em
}

.tab-menu2 button {
	font-size: 14px;
	color: var(--title-color);
	font-weight: 500;
	line-height: 1.556;
	text-transform: uppercase;
	border: none;
	padding: 0;
	background-color: transparent;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	position: relative
}

.tab-menu2 button:before {
	content: 'New';
	background-color: var(--theme-color);
	color: var(--white-color);
	display: inline-block;
	font-family: var(--body-font);
	font-size: 14px;
	line-height: 1.5;
	border-radius: 3px;
	padding: 0px 7px;
	position: absolute;
	bottom: 0;
	right: 0;
	visibility: hidden;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.tab-menu2 button:after {
	content: '';
	border-style: solid;
	border-width: 9px 9px 0 0;
	border-color: var(--theme-color) transparent transparent transparent;
	position: absolute;
	bottom: 100%;
	right: 20px;
	visibility: hidden;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.tab-menu2 button:hover {
	color: var(--theme-color)
}

.tab-menu2 button.active {
	color: var(--theme-color)
}

.tab-menu2 button.active:before,
.tab-menu2 button.active:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	visibility: visible
}

.tab-menu2 button.active:before {
	bottom: calc(100% + 9px)
}

.tab-menu2 button.active:after {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s
}

@media (max-width: 767px) {
	.tab-menu2 {
		gap: 26px 20px
	}
}

.gallery-img {
	position: relative;
	z-index: 2;
	border-radius: 10px;
	overflow: hidden
}

.gallery-img img {
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.gallery-img:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #0A2548;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	z-index: 1
}

.gallery-btn {
	background-color: var(--white-color);
	color: var(--theme-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	z-index: 2
}

.gallery-btn:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.gallery-card {
	position: relative
}

.gallery-card .gallery-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px 15px;
	text-align: center;
	z-index: 3;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	visibility: visible;
	opacity: 0;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s
}

.gallery-card .gallery-title {
	font-size: 24px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 0
}

.gallery-card .gallery-tag {
	color: var(--white-color);
	font-weight: 500;
	display: block;
	margin-bottom: 4px
}

.gallery-card:hover .gallery-img:before {
	visibility: visible;
	opacity: 0.8
}

.gallery-card:hover .gallery-img img {
	-webkit-transform: scale(1.06);
	-ms-transform: scale(1.06);
	transform: scale(1.06)
}

.gallery-card:hover .gallery-btn {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	visibility: visible;
	opacity: 1
}

.gallery-card:hover .gallery-content {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}

@media (max-width: 1199px) {
	.gallery-card .gallery-tag {
		margin-bottom: 0
	}
}

@media (max-width: 991px) {
	.gallery-img img {
		min-height: 320px;
		object-fit: cover
	}
}

.accordion-card {
	margin-bottom: 20px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.accordion-card .accordion-button {
	font-size: 18px;
	font-weight: 500;
	font-family: var(--title-font);
	border: 0;
	color: var(--title-color);
	background-color: var(--white-color);
	box-shadow: 0px 5px 15px rgba(42, 77, 113, 0.04);
	border-radius: 5px;
	padding: 15px 60px 15px 25px;
	min-height: 50px;
	gap: 10px;
	margin-bottom: 0;
	text-align: left;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	position: relative
}

.accordion-card .accordion-button:after {
	content: "\f067";
	width: 55px;
	height: 55px;
	height: 100%;
	line-height: 1;
	background-image: none;
	font-family: var(--icon-font);
	color: var(--title-color);
	font-weight: 900;
	font-size: 1em;
	display: grid;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 0;
	right: 0
}

.accordion-card .accordion-button:focus {
	outline: none;
	box-shadow: none
}

.accordion-card .accordion-button:not(.collapsed) {
	color: var(--white-color);
	background-color: var(--theme-color);
	box-shadow: none;
	border-radius: 5px 5px 0 0
}

.accordion-card .accordion-button:not(.collapsed):after {
	content: "\f068";
	color: var(--white-color)
}

.accordion-card .accordion-collapse {
	border: none
}

.accordion-card .accordion-body {
	box-shadow: 0px 5px 15px rgba(42, 77, 113, 0.04);
	border-radius: 0 0 5px 5px;
	background-color: var(--white-color);
	padding: 23px 25px 30px 25px
}

.accordion-card .faq-text {
	margin-bottom: -0.48em
}

.accordion-card .faq-img {
	height: 100%
}

.accordion-card .faq-img img {
	height: 100%;
	object-fit: cover
}

.accordion-card:last-child {
	margin-bottom: 0
}

@media (max-width: 575px) {
	.accordion-card .accordion-button {
		font-size: 16px
	}
}

.cta-content {
	padding: 80px 0 80px 80px
}

.cta-wrap {
	background-color: var(--white-color);
	position: relative;
	z-index: 3;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 8px 40px rgba(15, 27, 49, 0.12)
}

.cta-img {
	height: 100%
}

.cta-img img {
	height: 100%;
	width: 100%
}

@media (max-width: 1199px) {
	.cta-content {
		padding: 40px 0 40px 20px
	}
}

.cta-card {
	padding: 60px;
	border-radius: 10px;
	overflow: hidden
}

@media (max-width: 575px) {
	.cta-card {
		padding: 45px 15px
	}
}

.course-title {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.417
}

.course-title a {
	color: inherit
}

.course-title a:hover {
	color: var(--theme-color)
}

.course-img {
	border-radius: 10px;
	overflow: hidden;
	position: relative
}

.course-img img {
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.course-img .tag {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: var(--theme-color2);
	color: var(--white-color);
	font-weight: bold;
	font-size: 14px;
	font-family: var(--body-font);
	padding: 0 17px;
	border-radius: 999px
}

.course-author {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 10px
}

.author-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px
}

.author-info img {
	border-radius: 999px
}

.author-info .author-name {
	font-size: 18px;
	color: var(--body-color);
	display: block
}

.author-info .author-name:hover {
	color: var(--theme-color) !important
}

.author-info .desig {
	display: block;
	font-size: 13px;
	color: var(--theme-color);
	line-height: 1
}

.author-info .info .author-name {
	color: var(--title-color);
	font-weight: 500;
	margin-top: -0.2em
}

.course-rating {
	display: -webkit-inline-box !important;
	display: -webkit-inline-flex !important;
	display: -ms-inline-flexbox !important;
	display: inline-flex !important;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 12px;
	font-family: var(--body-font);
	gap: 3px
}

.course-rating .star-rating {
	width: 75px;
	font-size: 11px
}

.course-meta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.course-meta a,
.course-meta span {
	font-size: 12px
}

.course-meta a i,
.course-meta span i {
	margin-right: 5px
}

.course-box {
	border-radius: 10px;
	background-color: var(--white-color);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	padding: var(--box-space-x, 30px) var(--box-space-x, 30px) 0 var(--box-space-x, 30px);
	overflow: hidden
}

.course-box .course-img {
	margin-bottom: 20px
}

.course-box .course-title {
	margin-bottom: 21px
}

.course-box .course-meta {
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px dashed #D0D7E3
}

.course-box:hover:hover {
	box-shadow: 0px 3px 0px #DFEAF4
}

.course-box:hover .course-img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.course-box.style4 {
	box-shadow: none;
	border: none;
	border: 1px solid #ECF1F9;
	box-shadow: 0px 9px 14px #FBFBFB
}

@media (max-width: 1199px) {
	.course-author .author-name {
		font-size: 16px
	}

	.course-box {
		--box-space-x: 20px
	}

	.course-box .course-meta {
		padding-top: 12px;
		padding-bottom: 12px
	}

	.course-box .course-title {
		margin-bottom: 15px
	}

	.course-box.style2 .course-author {
		margin-bottom: 25px
	}
}

@media (max-width: 767px) {
	.course-box {
		--box-space-x: 30px
	}

	.course-box .course-meta {
		padding-top: 20px;
		padding-bottom: 20px
	}
}

@media (max-width: 375px) {
	.course-box {
		--box-space-x: 20px
	}

	.course-box .course-meta {
		padding-top: 12px;
		padding-bottom: 12px
	}
}

.course-box.style2 {
	box-shadow: 0px 3px 0px #DFEAF4
}

.course-box.style2 .course-meta a,
.course-box.style2 .course-meta span {
	font-size: 16px
}

.course-box.style2 .course-author {
	margin-bottom: 30px
}

@media (max-width: 1199px) {
	.course-box.style2 .course-author {
		margin-bottom: 25px
	}
}

@media (max-width: 991px) {

	.course-box.style2 .course-meta a,
	.course-box.style2 .course-meta span {
		font-size: 14px
	}
}

@media (max-width: 375px) {
	.course-box.style2 .course-title {
		font-size: 20px
	}

	.course-box.style2 .author-info img {
		max-width: 35px
	}

	.course-box.style2 .course-meta a,
	.course-box.style2 .course-meta span {
		font-size: 12px
	}
}

.course-box.style3 {
	background-color: var(--smoke-color);
	border-radius: 10px;
	padding: 0
}

.course-box.style3 .course-meta a,
.course-box.style3 .course-meta span {
	font-size: 16px
}

.course-box.style3 .course-title {
	font-weight: 600
}

.course-box.style3 .course-content {
	padding: 12px 40px 0 40px
}

.course-box.style3 .course-author {
	margin-bottom: 30px
}

.course-box.style3 .course-img {
	border-radius: 0
}

.course-box.style3 .tag {
	top: 30px;
	right: 30px
}

.course-box.style3:hover {
	box-shadow: none
}

@media (max-width: 1399px) {
	.course-box.style3 .course-content {
		padding: 2px 30px 0 30px
	}

	.course-box.style3 .course-author {
		margin-bottom: 25px
	}
}

@media (max-width: 1199px) {
	.course-box.style3 .course-meta {
		padding-top: 18px;
		padding-bottom: 18px
	}
}

@media (max-width: 991px) {

	.course-box.style3 .course-meta a,
	.course-box.style3 .course-meta span {
		font-size: 14px
	}
}

@media (max-width: 375px) {
	.course-box.style3 .course-content {
		padding: 0px 20px 0 20px
	}

	.course-box.style3 .course-title {
		font-size: 20px
	}

	.course-box.style3 .author-info img {
		max-width: 35px
	}

	.course-box.style3 .course-meta {
		padding-top: 12px;
		padding-bottom: 12px
	}

	.course-box.style3 .course-meta a,
	.course-box.style3 .course-meta span {
		font-size: 12px
	}
}

.course-sec {
	max-width: 1680px;
	margin-left: auto;
	margin-right: auto;
	position: relative
}

.course-sec .bg-shape {
	position: absolute;
	top: 180px;
	left: 0;
	border-radius: 10px;
	height: calc(100% - 180px);
	width: 100%
}

.meta-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px
}

.meta-box i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	background-color: var(--theme-color);
	color: var(--white-color);
	box-shadow: 0px 4px 18px rgba(13, 94, 244, 0.24);
	border-radius: 5px
}

.meta-box .text {
	font-size: 16px;
	color: var(--title-color);
	font-weight: 500;
	display: block;
	line-height: 1;
	margin-bottom: 6px
}

.meta-box .number {
	display: block;
	width: 100%;
	line-height: 1;
	font-size: 16px
}

.course-img {
	position: relative
}

.course-img .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.course-img .play-btn:after,
.course-img .play-btn:before {
	background-color: transparent;
	border: 1px solid var(--white-color)
}

.course-grid {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 50px;
	position: relative
}

.course-grid:last-of-type {
	margin-bottom: 0
}

.course-grid .course-img {
	min-width: -webkit-fit-content;
	min-width: -moz-fit-content;
	min-width: fit-content;
	width: 60%;
	position: relative;
	height: 392px
}

.course-grid .course-img img {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 100%;
	object-fit: cover
}

.course-grid .course-img::before {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #0D2139;
	opacity: 0.2
}

.course-grid .course-content {
	background-color: var(--white-color);
	min-width: 50%;
	box-shadow: 0px 4px 29px rgba(152, 170, 204, 0.15);
	border-radius: 10px;
	padding: 70px;
	position: absolute;
	bottom: 50%;
	right: 0;
	z-index: 3;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%)
}

.course-grid .course-title {
	font-size: 30px;
	font-weight: 600;
	margin-top: -0.3em;
	margin-bottom: 2px
}

.course-grid .course-author {
	display: block;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px dashed #D0D7E3
}

.course-grid:nth-of-type(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse
}

.course-grid:nth-of-type(even) .course-content {
	right: unset;
	left: 0
}

@media (max-width: 1399px) {
	.course-grid .course-img {
		min-width: auto
	}

	.course-grid .course-img img {
		width: 100%
	}
}

@media (max-width: 1199px) {
	.course-grid .course-img {
		width: 45%
	}
}

@media (max-width: 991px) {
	.course-grid .course-img {
		width: 80%
	}

	.course-grid .course-content {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		bottom: 0;
		padding: 30px
	}

	.course-img .play-btn {
		-webkit-transform: translate(-50%, -120%);
		-ms-transform: translate(-50%, -120%);
		transform: translate(-50%, -120%)
	}
}

@media (max-width: 767px) {
	.course-grid {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-webkit-flex-direction: column !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.course-grid .course-img {
		width: 100%;
		height: 280px
	}

	.course-grid .course-content {
		bottom: unset;
		top: -20px;
		padding: 30px 15px;
		position: relative
	}

	.course-img .play-btn {
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%)
	}
}

@media (max-width: 575px) {
	.course-meta {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 10px
	}

	.meta-box i {
		display: none
	}
}

@media (max-width: 375px) {
	.course-grid .course-title {
		font-size: 24px;
		margin-bottom: 9px;
		line-height: 1.3
	}
}

.video-course {
	--box-space: 30px;
	text-align: center
}

.video-course .course-img {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: 2
}

.video-course .course-img:before {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #11213D 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #11213D 100%);
	z-index: 1
}

.video-course .play-btn {
	--icon-size: 70px;
	font-size: 1em;
	color: var(--white-color);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.video-course .play-btn>i {
	border: 2px solid;
	background-color: transparent;
	color: var(--white-color)
}

.video-course .play-btn:after,
.video-course .play-btn:before {
	background-color: transparent;
	border: 2px solid
}

.video-course .play-btn:hover>i {
	color: var(--theme-color)
}

.video-course .play-btn:hover:after,
.video-course .play-btn:hover:before {
	border-color: var(--theme-color)
}

.video-course .tag {
	top: 30px;
	right: 30px
}

.video-course .course-content {
	max-width: calc(100% - var(--box-space)*2);
	margin-left: auto;
	margin-right: auto;
	background: var(--white-color);
	border: 1px solid #ECF1F9;
	box-shadow: 0px 9px 14px rgba(97, 94, 94, 0.06);
	border-radius: 10px;
	margin-top: -54px;
	padding: 30px 15px;
	position: relative;
	z-index: 3
}

.video-course .course-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 3px;
	margin-top: -0.28em
}

.video-course .author-name {
	display: block;
	margin-bottom: -0.45em;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: auto;
	margin-right: auto
}

.video-course:hover .course-img img {
	-webkit-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08)
}

.course-result-count {
	font-size: 18px;
	font-weight: 500;
	color: var(--title-color);
	display: inline-block
}

@media (max-width: 575px) {
	.course-result-count {
		font-size: 16px
	}
}

.course-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	position: relative;
	padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
	border: 1px solid var(--border-color);
	box-shadow: 0px 9px 14px #fbfbfb;
	border-radius: 10px;
	margin-bottom: 30px
}

.course-list .course-content {
	max-width: 730px
}

.course-list .course-img {
	min-width: 530px
}

.course-list .course-img .tag {
	right: unset;
	left: 20px
}

.course-list .course-title {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.333
}

.course-list .course-meta {
	max-width: 560px
}

.course-list .course-author {
	max-width: 360px;
	margin-bottom: 17px
}

.course-list .course-text {
	margin-bottom: 20px
}

@media (max-width: 1199px) {
	.course-list .course-img {
		display: none
	}
}

@media (max-width: 991px) {
	.course-list .course-title {
		font-size: 24px;
		margin-bottom: 10px
	}

	.course-list .course-author {
		max-width: 360px;
		margin-bottom: 10px
	}

	.course-list .course-text {
		margin-bottom: 15px
	}
}

@media (max-width: 767px) {
	.course-list {
		--blog-space-x: 20px
	}

	.course-list .course-author {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 3px 10px
	}
}

.course-tags a {
	display: inline-block;
	background-color: var(--theme-color);
	color: var(--white-color);
	border-radius: 999px;
	padding: 0 15px;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase
}

.course-tags a:hover {
	background-color: var(--theme-color2)
}

.course-single-meta>span,
.course-single-meta>a,
.course-single-meta>div {
	display: inline-block;
	margin-right: 15px;
	padding-right: 20px;
	font-size: 16px;
	font-weight: 500;
	color: var(--title-color);
	position: relative
}

.course-single-meta>span:after,
.course-single-meta>a:after,
.course-single-meta>div:after {
	content: "";
	width: 1px;
	height: 20px;
	background-color: #D3DBEB;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.course-single-meta>span:last-child,
.course-single-meta>a:last-child,
.course-single-meta>div:last-child {
	margin-right: 0;
	padding-right: 0
}

.course-single-meta>span:last-child:after,
.course-single-meta>a:last-child:after,
.course-single-meta>div:last-child:after {
	display: none
}

.course-single-meta>span i,
.course-single-meta>a i,
.course-single-meta>div i {
	margin-right: 10px;
	color: var(--theme-color)
}

.course-single-meta>span img,
.course-single-meta>a img,
.course-single-meta>div img {
	margin-right: 10px;
	border-radius: 99px
}

.course-single-meta a:hover {
	color: var(--theme-color)
}

.course-single-meta .course-rating {
	top: 3px
}

.course-single-meta .course-rating .star-rating {
	width: 100px;
	font-size: 15px !important
}

.course-tab {
	gap: 1px;
	position: relative
}

.course-tab .nav-link {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	background-color: var(--smoke-color);
	padding: 20px 20px;
	color: var(--body-color);
	width: 100%;
	text-align: center
}

.course-tab .nav-link:hover,
.course-tab .nav-link.active {
	color: var(--theme-color)
}

.course-tab .nav-link i {
	margin-right: 8px
}

.course-tab .nav-item {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1
}

.course-tab .indicator {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px !important;
	background-color: var(--theme-color);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.author-meta {
	margin-bottom: 18px
}

.author-meta a,
.author-meta span {
	color: var(--title-color);
	margin-right: 20px;
	font-weight: 500
}

.author-meta a i,
.author-meta span i {
	margin-right: 8px;
	color: var(--theme-color)
}

.author-meta a:hover,
.author-meta span:hover {
	color: var(--theme-color)
}

.author-meta a:last-child,
.author-meta span:last-child {
	margin-right: 0
}

.course-description {
	padding: var(--blog-space-y, 35px) var(--blog-space-x, 40px)
}

.course-description>p:last-of-type {
	margin-bottom: 0
}

.course-curriculam {
	padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px)
}

.course-instructor {
	padding: 0 var(--blog-space-x, 40px) 0 var(--blog-space-x, 40px)
}

.course-Reviews .as-comments-wrap {
	margin: var(--blog-space-y, 40px) var(--blog-space-x, 40px)
}

.course-Reviews .as-comment-form {
	margin-top: var(--blog-space-y, 40px);
	margin-bottom: 0;
	padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
	margin-left: -1px;
	margin-right: -1px
}

.course-single-top {
	position: relative;
	margin-bottom: var(--blog-space-y, 40px);
	padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
	border: 1px solid var(--border-color);
	box-shadow: 0px 9px 14px #fbfbfb;
	border-radius: 10px
}

.course-single .course-title {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.278;
	margin-bottom: 28px
}

.course-single .course-img {
	margin-bottom: var(--blog-space-y, 40px)
}

.course-single .course-tags {
	margin-bottom: 15px
}

.course-single-bottom {
	position: relative;
	margin-bottom: var(--blog-space-y, 40px);
	border: 1px solid var(--border-color);
	box-shadow: 0px 9px 14px #fbfbfb;
	border-radius: 10px;
	padding-bottom: 0;
	overflow: hidden
}

@media (max-width: 1199px) {
	.course-single {
		--blog-space-x: 20px
	}

	.course-single .course-title {
		font-size: 30px
	}

	.course-single-meta .text-theme {
		display: none
	}

	.course-single-meta>a,
	.course-single-meta>span,
	.course-single-meta>div {
		font-size: 14px;
		margin-right: 5px;
		padding-right: 10px
	}

	.course-author-box .auhtor-img {
		min-height: 100%;
		max-width: 200px
	}
}

@media (max-width: 991px) {
	.course-single {
		--blog-space-x: 40px
	}
}

@media (max-width: 767px) {
	.course-single {
		--blog-space-x: 20px
	}

	.course-single .course-title {
		font-size: 24px;
		margin-bottom: 18px
	}

	.course-single .course-img {
		margin-bottom: 25px
	}

	.course-single .course-img img {
		min-height: 230px;
		object-fit: cover
	}

	.course-tab .nav-link i {
		margin-right: 0;
		display: block
	}

	.course-single-meta>a,
	.course-single-meta>span,
	.course-single-meta>div {
		padding-right: 5px
	}

	.course-single-meta>a i,
	.course-single-meta>span i,
	.course-single-meta>div i {
		margin-right: 5px
	}

	.course-single-meta>a:after,
	.course-single-meta>span:after,
	.course-single-meta>div:after {
		display: none
	}

	.course-author-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.course-author-box .auhtor-img {
		min-height: 100%;
		max-width: 100%
	}

	.course-author-box .auhtor-img img {
		width: 100%
	}
}

@media (max-width: 575px) {
	.course-tab .nav-link {
		padding: 12px
	}

	.course-author-box .media-body {
		padding: 35px 20px 35px 20px
	}
}

@media (max-width: 460px) {
	.course-tab .nav-item {
		-webkit-flex-basis: 49%;
		-ms-flex-preferred-size: 49%;
		flex-basis: 49%
	}
}

@media (max-width: 375px) {
	.course-single .course-title {
		font-size: 20px
	}
}

.process-card {
	text-align: center;
	max-width: 290px;
	margin: 0 auto 0 auto
}

.process-card-wrap {
	border-right: 1px dashed #D0D7E3;
	margin-bottom: 40px
}

.process-card-wrap:last-child {
	border-right: none
}

.process-card_img {
	margin-bottom: 25px
}

.process-card_img img {
	border-radius: 999px
}

.process-card_title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px
}

.process-card_text {
	margin-bottom: -0.5em
}

@media (max-width: 991px) {
	.process-card-wrap:nth-child(2n) {
		border-right: none
	}

	.process-card_img {
		margin-bottom: 20px
	}
}

.event-meta {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 5px 20px
}

.event-meta p,
.event-meta span,
.event-meta a {
	margin-bottom: 0;
	font-size: 14px
}

.event-meta p i,
.event-meta span i,
.event-meta a i {
	margin-right: 5px
}

.event-author {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px
}

.event-author .avater {
	max-width: 45px;
	border-radius: 999px;
	overflow: hidden
}

.event-author .author-name {
	font-size: 14px;
	font-weight: 500;
	color: var(--title-color)
}

.event-card {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	margin-bottom: 24px;
	position: relative;
	padding: 30px 15px 30px 0;
	border-radius: 10px;
	background-color: var(--white-color);
	z-index: 2
}

.event-card:before {
	content: "";
	height: 100%;
	width: calc(100% - 75px);
	position: absolute;
	top: 0;
	left: 75px;
	border: 1px solid var(--border-color);
	border-radius: inherit;
	z-index: -1
}

.event-card_img {
	border-radius: 10px;
	overflow: hidden
}

.event-card_img img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.event-card .event-meta {
	margin-top: -0.3em;
	margin-bottom: 10px
}

.event-card_title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 25px
}

.event-card_title a {
	color: inherit
}

.event-card_title a:hover {
	color: var(--theme-color)
}

.event-card_bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 15px 25px
}

.event-card .as-btn {
	padding: 15.5px 27px
}

.event-card:hover .event-card_img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

@media (max-width: 767px) {
	.event-card {
		padding: 20px 15px 20px 0;
		gap: 20px
	}
}

@media (max-width: 575px) {
	.event-card {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0
	}

	.event-card::before {
		left: 0;
		top: 35px;
		width: 100%;
		height: calc(100% - 35px)
	}

	.event-card_content {
		padding: 0 15px 15px 15px
	}

	.event-card_title {
		margin-bottom: 20px
	}
}

.event-details .event-img {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 40px
}

.event-details .event-img img {
	min-height: 300px;
	object-fit: cover
}

.event-details .checklist ul li {
	font-weight: 400;
	font-family: var(--body-font);
	color: var(--body-color)
}

.event-details .checklist ul li:before {
	font-weight: 400
}

.category-card {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 30px
}

.category-card_icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	min-width: 60px;
	background-color: #DEE9FE;
	border-radius: 999px;
	text-align: center;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.category-card_icon img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.category-card_content {
	margin-bottom: -0.45em
}

.category-card_title {
	font-size: 24px;
	font-weight: 500;
	margin-top: -0.23em
}

.category-card_title a {
	color: inherit
}

.category-card_title a:hover {
	color: var(--theme-color)
}

.category-card_text {
	margin-bottom: 12px
}

.category-card:hover .category-card_icon {
	background-color: var(--theme-color)
}

.category-card:hover .category-card_icon img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1)
}

@media (max-width: 767px) {
	.category-card {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 22px
	}

	.category-card_content {
		text-align: center
	}

	.category-card_title {
		margin-bottom: 10px
	}

	.category-card_text {
		max-width: 360px;
		margin-left: auto;
		margin-right: auto
	}
}

.category-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 30px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	position: relative;
	z-index: 2
}

.category-list:before {
	content: '';
	background-color: var(--theme-color);
	width: 0;
	height: 0;
	border-radius: inherit;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transition: 0.4s linear;
	transition: 0.4s linear;
	z-index: -1
}

.category-list_icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	min-width: 60px;
	background-color: #EBF2FF;
	border-radius: 10px;
	text-align: center;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	margin-right: 15px
}

.category-list_icon img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.category-list .icon-btn {
	margin-left: auto;
	min-width: 50px;
	border: 1px solid var(--theme-color);
	color: var(--theme-color)
}

.category-list_title {
	font-size: 24px;
	font-weight: 500;
	margin-top: -0.23em;
	margin-bottom: 2px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.category-list_title a {
	color: inherit;
	-webkit-transition: 0s;
	transition: 0s
}

.category-list_text {
	display: block;
	margin-bottom: -0.4em;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.category-list:hover:before {
	width: 100%;
	height: 100%
}

.category-list:hover .category-list_title {
	color: var(--white-color)
}

.category-list:hover .category-list_text {
	color: var(--white-color)
}

.category-list:hover .icon-btn {
	background-color: var(--white-color);
	color: var(--theme-color);
	border-color: var(--white-color)
}

@media (max-width: 375px) {
	.category-list {
		padding: 15px
	}

	.category-list_title {
		font-size: 16px;
		margin-bottom: 0;
		margin-top: -0.1em;
		font-weight: 600
	}

	.category-list_text {
		font-size: 14px
	}

	.category-list_icon {
		width: 50px;
		height: 50px;
		line-height: 50px;
		min-width: 50px;
		margin-right: 7px
	}
}

.tab-menu1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px
}

.tab-menu1 button {
	font-size: 14px;
	color: var(--title-color);
	font-weight: 500;
	text-transform: uppercase;
	border: none;
	background-color: var(--white-color);
	padding: 9.5px 30px;
	box-shadow: 0px 4px 10px rgba(107, 131, 174, 0.04);
	border-radius: 999px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.tab-menu1 button:hover {
	color: var(--theme-color)
}

.tab-menu1 button.active {
	color: var(--white-color);
	background-color: var(--theme-color)
}

.tab-menu2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 40px;
	position: relative;
	margin-bottom: -0.4em
}

.tab-menu2 button {
	font-size: 14px;
	color: var(--title-color);
	font-weight: 500;
	line-height: 1.556;
	text-transform: uppercase;
	border: none;
	padding: 0;
	background-color: transparent;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	position: relative
}

.tab-menu2 button:before {
	content: 'New';
	background-color: var(--theme-color);
	color: var(--white-color);
	display: inline-block;
	font-family: var(--body-font);
	font-size: 14px;
	line-height: 1.5;
	border-radius: 3px;
	padding: 0px 7px;
	position: absolute;
	bottom: 0;
	right: 0;
	visibility: hidden;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.tab-menu2 button:after {
	content: '';
	border-style: solid;
	border-width: 9px 9px 0 0;
	border-color: var(--theme-color) transparent transparent transparent;
	position: absolute;
	bottom: 100%;
	right: 20px;
	visibility: hidden;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.tab-menu2 button:hover {
	color: var(--theme-color)
}

.tab-menu2 button.active {
	color: var(--theme-color)
}

.tab-menu2 button.active:before,
.tab-menu2 button.active:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	visibility: visible
}

.tab-menu2 button.active:before {
	bottom: calc(100% + 9px)
}

.tab-menu2 button.active:after {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s
}

@media (max-width: 767px) {
	.tab-menu2 {
		gap: 26px 20px
	}
}

.feature-card {
	padding: 45px 30px;
	background-color: var(--white-color);
	box-shadow: 0px 4px 21px rgba(179, 193, 219, 0.15);
	border-radius: 10px;
	text-align: center
}

.feature-card-wrap:nth-child(even) {
	-webkit-transform: translateY(24px);
	-ms-transform: translateY(24px);
	transform: translateY(24px)
}

.feature-card_icon {
	margin-bottom: 25px
}

.feature-card_icon img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.feature-card_title {
	font-size: 22px;
	margin-bottom: 12px;
	margin-top: -0.28em;
	font-weight: 600
}

.feature-card_text {
	margin-bottom: -0.45em
}

.feature-card:hover .feature-card_icon img {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg)
}

@media (max-width: 767px) {
	.feature-card-wrap:nth-child(even) {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.feature-grid {
	padding: 60px 50px;
	border-radius: 10px;
	text-align: center;
	border: 2px solid #0B2950;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.feature-grid_icon {
	width: 100px;
	height: 100px;
	line-height: 100px;
	background-color: var(--theme-color);
	border-radius: 50%;
	text-align: center;
	margin: 0 auto 40px auto
}

.feature-grid_icon img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.feature-grid_title {
	font-size: 24px;
	margin-bottom: 14px;
	margin-top: -0.28em;
	font-weight: 600;
	color: var(--white-color)
}

.feature-grid_text {
	margin-bottom: -0.48em;
	color: var(--light-color)
}

.feature-grid:hover {
	background-color: #092141
}

.feature-grid:hover .feature-grid_icon img {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg)
}

@media (max-width: 1199px) {
	.feature-grid {
		padding: 45px 15px
	}

	.feature-grid_icon {
		margin: 0 auto 30px auto
	}
}

@media (max-width: 767px) {
	.feature-grid_text {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto
	}
}

.px-5 {
	padding-right: 5px;
	padding-left: 5px
}

.px-10 {
	padding-right: 10px;
	padding-left: 10px
}

.px-15 {
	padding-right: 15px;
	padding-left: 15px
}

.px-20 {
	padding-right: 20px;
	padding-left: 20px
}

.px-25 {
	padding-right: 25px;
	padding-left: 25px
}

.px-30 {
	padding-right: 30px;
	padding-left: 30px
}

.px-35 {
	padding-right: 35px;
	padding-left: 35px
}

.px-40 {
	padding-right: 40px;
	padding-left: 40px
}

.px-45 {
	padding-right: 45px;
	padding-left: 45px
}

.px-50 {
	padding-right: 50px;
	padding-left: 50px
}

.py-5 {
	padding-top: 5px;
	padding-bottom: 5px
}

.py-10 {
	padding-top: 10px;
	padding-bottom: 10px
}

.py-15 {
	padding-top: 15px;
	padding-bottom: 15px
}

.py-20 {
	padding-top: 20px;
	padding-bottom: 20px
}

.py-25 {
	padding-top: 25px;
	padding-bottom: 25px
}

.py-30 {
	padding-top: 30px;
	padding-bottom: 30px
}

.py-35 {
	padding-top: 35px;
	padding-bottom: 35px
}

.py-40 {
	padding-top: 40px;
	padding-bottom: 40px
}

.py-45 {
	padding-top: 45px;
	padding-bottom: 45px
}

.py-50 {
	padding-top: 50px;
	padding-bottom: 50px
}

.pt-5 {
	padding-top: 5px
}

.pt-10 {
	padding-top: 10px
}

.pt-15 {
	padding-top: 15px
}

.pt-20 {
	padding-top: 20px
}

.pt-25 {
	padding-top: 25px
}

.pt-30 {
	padding-top: 30px
}

.pt-35 {
	padding-top: 35px
}

.pt-40 {
	padding-top: 40px
}

.pt-45 {
	padding-top: 45px
}

.pt-50 {
	padding-top: 50px
}

.pb-5 {
	padding-bottom: 5px
}

.pb-10 {
	padding-bottom: 10px
}

.pb-15 {
	padding-bottom: 15px
}

.pb-20 {
	padding-bottom: 20px
}

.pb-25 {
	padding-bottom: 25px
}

.pb-30 {
	padding-bottom: 30px
}

.pb-35 {
	padding-bottom: 35px
}

.pb-40 {
	padding-bottom: 40px
}

.pb-45 {
	padding-bottom: 45px
}

.pb-50 {
	padding-bottom: 50px
}

.pl-5 {
	padding-left: 5px
}

.pl-10 {
	padding-left: 10px
}

.pl-15 {
	padding-left: 15px
}

.pl-20 {
	padding-left: 20px
}

.pl-25 {
	padding-left: 25px
}

.pl-30 {
	padding-left: 30px
}

.pl-35 {
	padding-left: 35px
}

.pl-40 {
	padding-left: 40px
}

.pl-45 {
	padding-left: 45px
}

.pl-50 {
	padding-left: 50px
}

.pr-5 {
	padding-right: 5px
}

.pr-10 {
	padding-right: 10px
}

.pr-15 {
	padding-right: 15px
}

.pr-20 {
	padding-right: 20px
}

.pr-25 {
	padding-right: 25px
}

.pr-30 {
	padding-right: 30px
}

.pr-35 {
	padding-right: 35px
}

.pr-40 {
	padding-right: 40px
}

.pr-45 {
	padding-right: 45px
}

.pr-50 {
	padding-right: 50px
}

.mx-5 {
	margin-right: 5px;
	margin-left: 5px
}

.mx-10 {
	margin-right: 10px;
	margin-left: 10px
}

.mx-15 {
	margin-right: 15px;
	margin-left: 15px
}

.mx-20 {
	margin-right: 20px;
	margin-left: 20px
}

.mx-25 {
	margin-right: 25px;
	margin-left: 25px
}

.mx-30 {
	margin-right: 30px;
	margin-left: 30px
}

.mx-35 {
	margin-right: 35px;
	margin-left: 35px
}

.mx-40 {
	margin-right: 40px;
	margin-left: 40px
}

.mx-45 {
	margin-right: 45px;
	margin-left: 45px
}

.mx-50 {
	margin-right: 50px;
	margin-left: 50px
}

.my-5 {
	margin-top: 5px;
	margin-bottom: 5px
}

.my-10 {
	margin-top: 10px;
	margin-bottom: 10px
}

.my-15 {
	margin-top: 15px;
	margin-bottom: 15px
}

.my-20 {
	margin-top: 20px;
	margin-bottom: 20px
}

.my-25 {
	margin-top: 25px;
	margin-bottom: 25px
}

.my-30 {
	margin-top: 30px;
	margin-bottom: 30px
}

.my-35 {
	margin-top: 35px;
	margin-bottom: 35px
}

.my-40 {
	margin-top: 40px;
	margin-bottom: 40px
}

.my-45 {
	margin-top: 45px;
	margin-bottom: 45px
}

.my-50 {
	margin-top: 50px;
	margin-bottom: 50px
}

.mt-5 {
	margin-top: 5px
}

.mt-10 {
	margin-top: 10px
}

.mt-15 {
	margin-top: 15px
}

.mt-20 {
	margin-top: 20px
}

.mt-25 {
	margin-top: 25px
}

.mt-30 {
	margin-top: 30px
}

.mt-35 {
	margin-top: 35px
}

.mt-40 {
	margin-top: 40px
}

.mt-45 {
	margin-top: 45px
}

.mt-50 {
	margin-top: 50px
}

.mb-5 {
	margin-bottom: 5px
}

.mb-10 {
	margin-bottom: 10px
}

.mb-15 {
	margin-bottom: 15px
}

.mb-20 {
	margin-bottom: 20px
}

.mb-25 {
	margin-bottom: 25px
}

.mb-30 {
	margin-bottom: 30px
}

.mb-35 {
	margin-bottom: 35px
}

.mb-40 {
	margin-bottom: 40px
}

.mb-45 {
	margin-bottom: 45px
}

.mb-50 {
	margin-bottom: 50px
}

.ml-5 {
	margin-left: 5px
}

.ml-10 {
	margin-left: 10px
}

.ml-15 {
	margin-left: 15px
}

.ml-20 {
	margin-left: 20px
}

.ml-25 {
	margin-left: 25px
}

.ml-30 {
	margin-left: 30px
}

.ml-35 {
	margin-left: 35px
}

.ml-40 {
	margin-left: 40px
}

.ml-45 {
	margin-left: 45px
}

.ml-50 {
	margin-left: 50px
}

.mr-5 {
	margin-right: 5px
}

.mr-10 {
	margin-right: 10px
}

.mr-15 {
	margin-right: 15px
}

.mr-20 {
	margin-right: 20px
}

.mr-25 {
	margin-right: 25px
}

.mr-30 {
	margin-right: 30px
}

.mr-35 {
	margin-right: 35px
}

.mr-40 {
	margin-right: 40px
}

.mr-45 {
	margin-right: 45px
}

.mr-50 {
	margin-right: 50px
}

.mb-60 {
	margin-bottom: 60px
}

.mt-n1 {
	margin-top: -.25rem
}

.mt-n2 {
	margin-top: -.6rem
}

.mt-n3 {
	margin-top: -1rem
}

.mt-n4 {
	margin-top: -1.5rem
}

.mt-n5 {
	margin-top: -3rem
}

.mb-n1 {
	margin-bottom: -.25rem
}

.mb-n2 {
	margin-bottom: -.6rem
}

.mb-n3 {
	margin-bottom: -1rem
}

.mb-n4 {
	margin-bottom: -1.5rem
}

.mb-n5 {
	margin-bottom: -3rem
}

.space,
.space-top {
	padding-top: var(--section-space)
}

.space,
.space-bottom {
	padding-bottom: var(--section-space)
}

.space-extra,
.space-extra-top {
	padding-top: calc(var(--section-space) - 30px)
}

.space-extra,
.space-extra-bottom {
	padding-bottom: calc(var(--section-space) - 30px)
}

.space-extra2,
.space-extra2-top {
	padding-top: calc(var(--section-space) - 40px)
}

.space-extra2,
.space-extra2-bottom {
	padding-bottom: calc(var(--section-space) - 40px)
}

.as-btn.style6 {
	background-color: var(--white-color);
	color: var(--theme-color);
	box-shadow: none
}

.as-btn.style6:before {
	background-color: var(--smoke-color)
}

.as-btn.style6:hover {
	color: var(--white-color)
}

.as-btn.style6:hover:before {
	background-color: var(--title-color)
}

.video-link .play-btn {
	--icon-size: 56px;
	margin-right: 20px
}

.video-link .play-btn>i {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.video-link .play-btn:before,
.video-link .play-btn:after {
	background-color: transparent;
	border: 1px solid var(--white-color)
}

.video-link .btn-text {
	font-size: 14px;
	font-weight: 500;
	font-family: var(--title-font);
	text-transform: uppercase;
	color: var(--white-color)
}

.video-link:hover .btn-text {
	color: var(--theme-color)
}

.btn-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px 40px
}

.main-menu a .new-label {
	font-size: 13px;
	background-color: var(--theme-color);
	color: var(--white-color);
	padding: 2px 5px;
	border-radius: 4px;
	position: relative;
	top: -1px
}

.header-link {
	display: inline-block;
	color: var(--white-color);
	margin-right: 40px
}

.header-link:last-child {
	margin-right: 0
}

.header-link:hover {
	color: var(--theme-color)
}

.header-link .icon-btn {
	margin-right: 10px;
	font-size: 14px;
	border: none
}

.icon-btn.style2 {
	background-color: transparent;
	border: 2px solid var(--white-color);
	color: var(--white-color);
	line-height: 42px
}

.icon-btn.style2:hover {
	background-color: var(--title-color);
	border-color: var(--title-color)
}

.header-layout5 .top-area {
	background-color: var(--title-color)
}

.header-layout5 .header-top {
	padding: 12px 0;
	--body-color: #fff;
	border-bottom: 1px solid #202c3c
}

.header-layout5 .header-top a,
.header-layout5 .header-top li,
.header-layout5 .header-top p,
.header-layout5 .header-top span,
.header-layout5 .header-top i {
	color: var(--white-color)
}

.header-layout5 .header-top a:hover {
	color: var(--theme-color)
}

.header-layout5 .menu-top {
	padding: 20px 0
}

.header-layout5 .menu-top .icon-btn {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.header-layout5 .header-link {
	color: var(--white-color);
	padding-right: 30px;
	margin-right: 30px;
	border-right: 1px solid #202c3c
}

.header-layout5 .header-link:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: none
}

.header-layout5 .header-link:hover {
	color: var(--theme-color)
}

.header-layout5 .as-social a {
	background-color: #0f2239;
	border: 1px solid #4d5765;
	color: var(--white-color)
}

.header-layout5 .as-social a:hover {
	background-color: var(--theme-color);
	color: var(--white-color);
	border-color: var(--theme-color)
}

.header-layout5 .simple-icon {
	color: var(--white-color)
}

.header-layout5 .dropdown-menu {
	--body-color: #74787c
}

.header-layout5 .logo-shape {
	display: inline-block;
	height: 100%;
	width: 34%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--white-color);
	background-size: auto;
	background-repeat: repeat;
	-webkit-clip-path: polygon(0 0, calc(100% - 100px) 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, calc(100% - 100px) 0%, 100% 100%, 0% 100%);
	z-index: -1
}

.header-layout5 .icon-style2 {
	color: var(--title-color)
}

.header-layout5 .menu-area {
	position: relative;
	background-color: var(--theme-color);
	z-index: 2
}

.header-layout5 .menu-area .container {
	--main-container: 1562px;
	margin-left: auto;
	margin-right: 66px
}


.header-layout5 .main-menu>ul>li {
	margin: 0 18px
}

.header-layout5 .main-menu>ul>li>a {
	color: var(--white-color);
	padding: 39px 0
}

.header-layout5 .as-menu-toggle {
	margin: 20px 0;
	background-color: var(--title-color)
}

.header-layout5 .header-button {
	margin-left: 130px
}

@media (max-width: 767px) {
	.header-notice {
		text-align: center;
		font-size: 14px
	}

	.header-layout5 .menu-top {
		padding: 12px 0
	}
}

@media (max-width: 575px) {
	.header-layout5 .logo-shape {
		width: 280px
	}
}

.dropdown-link {
	position: relative
}

.dropdown-link>a {
	color: var(--white-color)
}

.dropdown-toggle::after {
	content: "\f107";
	border: none;
	font-family: var(--icon-font);
	vertical-align: middle;
	font-weight: 400;
	margin-left: 6px
}

.dropdown-menu {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: auto;
	top: calc(100% + 10px) !important;
	left: 50% !important;
	-webkit-transform: translateX(-50%) !important;
	-ms-transform: translateX(-50%) !important;
	transform: translateX(-50%) !important;
	padding: 8px 20px !important;
	text-align: center;
	border-color: var(--border-color)
}

.dropdown-menu li {
	padding-right: 0;
	margin-right: 0
}

.dropdown-menu li:after {
	display: none
}

.dropdown-menu li a {
	display: block
}

.dropdown-menu a {
	color: var(--body-color)
}

.dropdown-menu a:hover {
	color: var(--theme-color) !important
}

.dropdown-menu:before {
	content: "";
	position: absolute;
	left: 50%;
	top: -7px;
	width: 14px;
	height: 14px;
	margin-left: -7px;
	background-color: var(--white-color);
	z-index: -1;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	border-top: 1px solid var(--border-color);
	border-left: 1px solid var(--border-color)
}

.simple-icon {
	border: none;
	background-color: transparent
}

.simple-icon.style2 {
	font-size: 28px
}

.simple-icon:hover {
	color: var(--theme-color)
}

.header-layout6 {
	--main-container: 1440px
}

.header-layout6 .header-top {
	background-color: var(--theme-color);
	padding: 14px 0;
	--body-color: #fff
}

.header-layout6 .header-top a,
.header-layout6 .header-top li,
.header-layout6 .header-top p,
.header-layout6 .header-top span,
.header-layout6 .header-top i {
	color: var(--body-color)
}

.header-layout6 .header-top a:hover {
	color: var(--white-color)
}

.header-layout6 .header-top li:before {
	background-color: #5792ff
}

.header-layout6 .simple-icon {
	color: var(--white-color)
}

.header-layout6 .dropdown-menu {
	--body-color: #74787c
}

.header-layout6 .logo-shape {
	display: inline-block;
	height: 100%;
	width: 27.7%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--white-color);
	-webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
	z-index: -1
}

.header-layout6 .menu-area {
	position: relative;
	background-color: #050f2d;
	background-size: auto;
	background-repeat: repeat;
	z-index: 2
}

.header-layout6 .main-menu>ul>li {
	margin: 0 18px
}

.header-layout6 .main-menu>ul>li>a {
	color: var(--white-color);
	padding: 41.5px 0
}

.header-layout6 .as-menu-toggle {
	margin: 20px 0
}

.header-layout6 .header-button {
	margin-left: 100px
}

.header-layout6 .icon-btn:hover {
	border-color: var(--theme-color)
}

@media (max-width: 767px) {
	.header-layout6 .header-top {
		padding: 8px 0
	}
}

@media (max-width: 375px) {
	.header-layout6 .logo-shape {
		width: 75%
	}
}

.header-layout7 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	--main-container: 1920px
}

.header-layout7 .will-sticky .sticky-active {
	background-color: var(--title-color)
}

.header-layout7 .container {
	padding-left: 0;
	padding-right: 0
}

.header-layout7 .header-logo {
	background-color: rgba(255, 255, 255, 0.1);
	border-right: 5px solid var(--theme-color);
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.header-layout7 .header-top {
	padding: 15px 0;
	--body-color: #fff
}

.header-layout7 .header-top a,
.header-layout7 .header-top li,
.header-layout7 .header-top p,
.header-layout7 .header-top span,
.header-layout7 .header-top i {
	color: var(--white-color)
}

.header-layout7 .header-top a:hover {
	color: var(--theme-color)
}

.header-layout7 .header-top li:before {
	background-color: #d9d9d9
}

.header-layout7 .top-left {
	padding-left: 50px
}

.header-layout7 .top-right {
	width: 1080px;
	padding-right: 50px
}

.header-layout7 .simple-icon {
	color: var(--white-color)
}

.header-layout7 .dropdown-menu {
	--body-color: #74787c
}

.header-layout7 .menu-area {
	position: relative;
	padding: 0 50px;
	background-color: rgba(255, 255, 255, 0.1);
	width: 1080px
}

.header-layout7 .main-menu>ul>li {
	margin: 0 18px
}

.header-layout7 .main-menu>ul>li>a {
	color: var(--white-color);
	padding: 36.5px 0
}

.header-layout7 .as-menu-toggle {
	margin: 15px 0
}

.header-layout7 .header-button {
	margin-left: 10px;
	gap: 30px
}

.header-layout8 {
	--main-container: 1720px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3)
}

.header-layout8 .main-menu>ul>li>a {
	padding: 46.5px 0;
	color: var(--white-color)
}

.header-layout8:before {
	content: "";
	height: 100%;
	width: 22%;
	background-color: var(--white-color);
	opacity: 0.13;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-clip-path: polygon(100px 0%, 100% 0, 100% 100%, 0% 100%);
	clip-path: polygon(100px 0%, 100% 0, 100% 100%, 0% 100%);
	z-index: -1
}

.header-layout8 .header-button {
	margin-left: 110px
}

.header-layout8 .will-sticky .sticky-active {
	background-color: var(--title-color)
}




.hero-5 {
	padding-right: 80px
}

.hero-5 .slick-dots {
	--dots-bg: #fff;
	margin: 0;
	position: absolute;
	top: 50%;
	right: 20%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.hero-5 .slick-dots li {
	display: block;
	margin: 30px 0
}

.hero-5 .slick-dots button:before {
	border-color: var(--white-color)
}

.hero-5 .slick-dots .slick-active button {
	background-color: var(--white-color)
}

.hero-5 .hero-shape {
	display: inline-block;
	height: 350px;
	width: 80px;
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--theme-color);
	-webkit-clip-path: polygon(100% 0, 100% calc(100% - 100px), calc(100% - 140px) 100%, 0 100%, 0 0);
	clip-path: polygon(100% 0, 100% calc(100% - 100px), calc(100% - 140px) 100%, 0 100%, 0 0);
	z-index: -1
}

.hero-slider-5 .as-hero-slide {
	padding: 230px 0
}

.hero-style5,
.hero-style6,
.hero-style7,
.hero-style8 {
	position: relative;
	z-index: 4;
	margin: 0 auto;
	max-width: 700px
}

.hero-style5 .hero-subtitle,
.hero-style6 .hero-subtitle,
.hero-style7 .hero-subtitle,
.hero-style8 .hero-subtitle {
	font-size: 18px;
	font-weight: 600;
	display: block;
	color: var(--white-color);
	margin-top: -0.36em;
	margin-bottom: 35px;
	text-transform: capitalize
}

.hero-style5 .hero-title,
.hero-style6 .hero-title,
.hero-style7 .hero-title,
.hero-style8 .hero-title {
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 0
}

.hero-style5 .hero-title:last-of-type,
.hero-style6 .hero-title:last-of-type,
.hero-style7 .hero-title:last-of-type,
.hero-style8 .hero-title:last-of-type {
	margin-bottom: 30px
}

.hero-style5 .hero-text,
.hero-style6 .hero-text,
.hero-style7 .hero-text,
.hero-style8 .hero-text {
	color: var(--white-color);
	font-size: 18px
}




@media (max-width: 767px) {
	.hero-5 {
		padding-right: 0
	}

	.hero-5 .hero-shape {
		display: none
	}

	.hero-style5,
	.hero-style6,
	.hero-style7,
	.hero-style8 {
		text-align: center;
		padding-left: 0
	}

	.hero-style5 .btn-wrap,
	.hero-style6 .btn-wrap,
	.hero-style7 .btn-wrap,
	.hero-style8 .btn-wrap {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.hero-style5 .hero-title:last-of-type,
	.hero-style6 .hero-title:last-of-type,
	.hero-style7 .hero-title:last-of-type,
	.hero-style8 .hero-title:last-of-type {
		margin-bottom: 25px
	}
}

@media (max-width: 575px) {

	.hero-style5 .hero-subtitle,
	.hero-style6 .hero-subtitle,
	.hero-style7 .hero-subtitle,
	.hero-style8 .hero-subtitle {
		font-size: 16px;
		margin-bottom: 20px
	}

	.hero-style5 .hero-title,
	.hero-style6 .hero-title,
	.hero-style7 .hero-title,
	.hero-style8 .hero-title {
		font-size: 30px
	}
}

@media (max-width: 400px) {

	.hero-style5 .hero-title,
	.hero-style6 .hero-title {
		max-width: 280px;
		margin-left: auto;
		margin-right: auto
	}
}

.hero-6 {
	--main-container: 1440px
}

.hero-6 .icon-box {
	position: absolute;
	top: 50%;
	right: 115px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 60px
}

.hero-6 .icon-box .slick-arrow {
	--pos-x: 0;
	border-radius: 0;
	margin: 5px 0;
	border: none;
	background-color: rgba(255, 255, 255, 0.15);
	color: var(--white-color)
}

.hero-6 .icon-box .slick-arrow:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.hero-6 .icon-box .slick-arrow:first-child {
	margin-right: 0
}

.hero-slider-6 .as-hero-slide {
	padding: 245px 0
}

.hero-style6 {
	padding-left: 0
}

.hero-style6 .hero-title {
	font-weight: bold
}

.hero-style6 .checklist {
	margin-bottom: 43px
}

.hero-style6 .checklist li {
	color: var(--white-color)
}

@media (max-width: 1399px) {
	.hero-6 .icon-box {
		right: 40px
	}
}

@media (max-width: 1199px) {
	.hero-slider-6 .as-hero-slide {
		padding: 150px 0 150px 0
	}

	.hero-style6 .hero-title {
		font-size: 46px
	}
}

@media (max-width: 991px) {
	.hero-slider-6 .as-hero-slide {
		padding: 100px 0 100px 0
	}

	.hero-style6 .checklist {
		margin-bottom: 34px
	}
}

@media (max-width: 767px) {
	.hero-6 .icon-box {
		display: none
	}

	.as-hero-wrapper .checklist ul {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.hero-style6 .btn-group {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

@media (max-width: 575px) {
	.hero-slider-6 .as-hero-slide {
		padding: 90px 0
	}

	.hero-style6 .hero-title {
		font-size: 38px
	}
}

@media (max-width: 440px) {
	.hero-style6 .hero-title {
		font-size: 32px;
		max-width: 100%
	}
}

@media (max-width: 375px) {
	.hero-style6 .hero-title {
		font-size: 28px
	}
}

.hero-slider-7 .slick-dots {
	position: absolute;
	top: 50%;
	right: unset;
	left: 120px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 30px
}

.hero-slider-7 .slick-dots li {
	display: block;
	margin: 30px 0
}

.hero-slider-7 .slick-dots button {
	border-radius: 0 !important;
	visibility: visible;
	opacity: 1
}

.hero-slider-7 .slick-dots button:before {
	border-radius: 0 !important
}

.hero-style7 {
	max-width:700px;
	margin: 0px auto;
	text-align: center;
}

.hero-style7 .hero-text {
	max-width: 700px
}

.hero-slider-7 .as-hero-slide {
	padding:0;
}

.hero-slider-7 .hero-text {
	font-weight: 100;
	font-size: 20px
}

@media (max-width: 767px) {
	.hero-style7 .btn-group {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

@media (max-width: 575px) {
	.hero-slider-7 .hero-style7 .hero-text {
		font-size: 16px
	}
}

@media (max-width: 330px) {
	.hero-style7 .hero-title {
		font-size: 26px
	}
}

.as-hero-wrapper .slick-dots {
	position: absolute;
	top: 50%;
	right: 6%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media (min-width: 1922px) {
	.as-hero-wrapper .slick-dots {
		right: 20%
	}
}

.as-hero-wrapper .slick-dots li {
	display: block;
	margin: 25px 0 !important
}

.as-hero-wrapper .slick-dots button {
	font-size: 0;
	padding: 0;
	background-color: transparent;
	width: 8px;
	height: 8px;
	line-height: 0;
	border-radius: 9999px;
	border: none;
	background-color: var(--white-color)
}

.as-hero-wrapper .slick-dots button:hover {
	border-color: var(--theme-color)
}

.as-hero-wrapper .slick-dots button:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 26px;
	height: 26px;
	margin: -13px 0 0 -13px;
	border: 2px solid var(--theme-color);
	background-color: transparent;
	border-radius: 50%;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	opacity: 0;
	visibility: hidden
}

.as-hero-wrapper .slick-dots .slick-active button {
	background-color: var(--theme-color)
}

.as-hero-wrapper .slick-dots .slick-active button::before {
	opacity: 1;
	visibility: visible
}

.hero-style8 {
	padding: 340px 0 225px 0
}

.hero-style8 .hero-meta {
	margin-bottom: 30px
}

.hero-style8 .hero-meta span {
	display: inline-block;
	font-size: 24px;
	font-weight: 500;
	color: var(--white-color);
	text-transform: capitalize;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	position: relative
}

.hero-style8 .hero-meta span:not(:last-child) {
	padding-right: 12px;
	margin-right: 48px
}

.hero-style8 .hero-meta span:not(:last-child):after {
	content: '';
	height: 2px;
	width: 40px;
	background-color: var(--white-color);
	position: absolute;
	top: 50%;
	left: 100%
}

.hero-style8 .hero-meta span:hover {
	color: var(--theme-color)
}

.hero-style8 .hero-title .bg-theme {
	display: inline-block;
	padding: 0 6px
}

.hero-style8 .hero-title,
.hero-style8 .hero-text {
	color: var(--white-color)
}

.hero-style8 .hero-text {
	max-width: 720px
}

@media (max-width: 1199px) {
	.hero-style8 {
		padding: 240px 0 130px 0
	}

	.hero-style8 .hero-title {
		font-size: 48px
	}

	.hero-style8 .hero-meta span {
		font-size: 20px
	}

	.hero-style8 .hero-text {
		max-width: 500px;
		font-size: 16px
	}
}

@media (max-width: 991px) {
	.hero-style8 {
		padding: 210px 0 120px 0
	}

	.hero-style8 .hero-text {
		max-width: 540px
	}
}

@media (max-width: 767px) {
	.hero-style8 .hero-meta span {
		font-size: 18px
	}
}

@media (max-width: 767px) {
	.hero-style8 .btn-group {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

@media (max-width: 575px) {
	.hero-style8 {
		padding: 190px 0 100px 0
	}

	.hero-style8 .hero-meta {
		margin-bottom: 20px
	}

	.hero-style8 .hero-meta span {
		font-size: 18px
	}

	.hero-style8 .hero-title {
		font-size: 34px
	}
}

@media (max-width: 420px) {
	.hero-style8 .hero-title {
		font-size: 30px
	}
}

@media (max-width: 350px) {
	.hero-style8 .hero-title {
		font-size: 26px
	}
}

.form-group .form-select~i {
	background-color: var(--smoke-color);
	width: 16px
}

.sidemenu2 {
	--body-color: #b3c1d3
}

.sidemenu2 .sidemenu-content {
	background-color: #0f1b31
}

.sidemenu2 .closeButton {
	border: 2px solid var(--theme-color)
}

.sidemenu-wrapper .closeButton {
	line-height: 48px
}

.box-title {
	font-size: 24px;
	line-height: 1.417;
	font-weight: 600
}

.play-btn.style2>i {
	background-color: var(--theme-color);
	color: var(--white-color);
	--icon-size: 80px
}

.play-btn.style2:before,
.play-btn.style2:after {
	background-color: var(--theme-color)
}

.play-btn.style2:hover>i {
	background-color: var(--title-color)
}

.play-btn.style2:hover:before,
.play-btn.style2:hover:after {
	background-color: var(--title-color)
}

.video-box2 {
	position: relative;
	border-radius: 10px;
	overflow: hidden
}

.video-box2 img {
	width: 100%
}

.video-box2 .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px
}

.rounded-10 {
	border-radius: 10px
}

.rounded-10 img {
	border-radius: inherit
}

@-webkit-keyframes jumpIcon {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-8px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes jumpIcon {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-8px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.bg-smoke-half {
	background-image: -webkit-linear-gradient(right, var(--smoke-color), var(--smoke-color));
	background-image: linear-gradient(to left, var(--smoke-color), var(--smoke-color));
	background-repeat: no-repeat;
	background-size: 100% 50%;
	background-position: bottom center
}

.line-btn {
	font-weight: 600;
	font-size: 14px;
	display: inline-block;
	line-height: 0.8;
	position: relative;
	padding-bottom: 2px;
	margin-bottom: -2px;
	text-transform: uppercase;
	color: var(--theme-color)
}

.line-btn i {
	margin-left: 5px;
	font-size: 0.9rem
}

.line-btn:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color);
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.line-btn:hover {
	color: var(--theme-color)
}

.line-btn:hover::before {
	width: 50px
}

.z-index-3 .slick-slider {
	z-index: 3
}

.slick-arrow {
	width: var(--icon-size, 55px);
	height: var(--icon-size, 55px);
	font-size: var(--icon-font-size, 16px);
	margin-top: calc(var(--icon-size, 55px) / -2);
	color: var(--theme-color)
}

@media (max-width: 991px) {
	.slick-arrow {
		--icon-size: 40px;
		margin-right: 40px
	}

	.slick-arrow.slick-next {
		margin-right: 0;
		margin-left: 0
	}

	.icon-box .slick-arrow {
		margin: 0
	}

	.icon-box .slick-arrow.slick-next {
		margin: 0
	}
}

.as-social.style2 a {
	background-color: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color)
}

.as-social.style2 a:hover {
	background-color: var(--white-color);
	color: var(--theme-color)
}

.main-menu a .new-label {
	font-size: 12px;
	padding: 0px 5px;
	margin-left: 4px
}

.header-layout9 {
	--main-container: 1600px
}

.header-layout10 .header-top {
	background-color: var(--theme-color);
	padding: 11.5px 0;
	--body-color: #fff
}

.header-layout10 .header-top a,
.header-layout10 .header-top li,
.header-layout10 .header-top p {
	color: var(--body-color)
}

.header-layout10 .header-top a:hover {
	color: var(--title-color)
}

.header-layout10 .header-top li:before {
	background-color: var(--body-color)
}

.header-layout10 .menu-area {
	position: relative;
	z-index: 2
}

.header-layout10 .logo-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 29%;
	background-color: #F1F2F7;
	-webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0% 100%);
	z-index: -1
}

@media (min-width: 1922px) {
	.header-layout10 .logo-bg {
		width: 34%
	}
}

@media (max-width: 1500px) {
	.header-layout10 .logo-bg {
		width: 22%
	}
}

@media (max-width: 1399px) {
	.header-layout10 .logo-bg {
		width: 26%
	}
}

@media (max-width: 1199px) {
	.header-layout10 .logo-bg {
		width: 30%
	}
}

@media (max-width: 991px) {
	.header-layout10 .logo-bg {
		width: 55%
	}
}

@media (max-width: 420px) {
	.header-layout10 .logo-bg {
		width: 75%
	}

	.header-layout10 .header-social a {
		margin: 0 9px 0 0
	}

	.header-layout10 .header-social a:last-child {
		margin: 0
	}

	.header-layout10 .header-links li {
		font-size: 14px
	}
}

.hero-9 {
	background-size: 100% 100%
}

.hero-9 .hero-img {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	max-width: 55%
}

.hero-9 .hero-img img {
	height: 100%;
	object-fit: cover;
	object-position: left center
}

.hero-9 .hero-img img.image-mobile {
	display: none
}

.hero-9 .hero-shape {
	position: absolute
}

.hero-9 .hero-shape.shape1 {
	top: 7%;
	left: 34%;
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

.hero-9 .hero-shape.shape2 {
	bottom: 7%;
	left: 38%;
	-webkit-animation: movingX 8s linear infinite;
	animation: movingX 8s linear infinite
}

.hero-name {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--theme-color);
	display: block;
	margin: -0.32em 0 20px 0
}

.hero-style9 {
	padding: 230px 0
}

.hero-style9 .hero-title {
	margin-bottom: 0
}

.hero-style9 .hero-title:last-of-type {
	margin-bottom: 20px
}

.hero-style9 .hero-text {
	max-width: 660px
}

@media (max-width: 1399px) {
	.hero-style9 {
		padding: 160px 0
	}

	.hero-style9 .hero-text {
		max-width: 620px
	}
}

@media (max-width: 1199px) {
	.hero-style9 {
		padding: 120px 0
	}

	.hero-style9 .hero-text {
		max-width: 425px
	}

	.hero-9 .hero-shape.shape2 {
		max-width: 60px
	}
}

@media (max-width: 991px) {
	.hero-9 {
		background-size: 300% 100%
	}

	.hero-9 .hero-img {
		position: static;
		max-width: 100%;
		text-align: right;
		margin: 0 90px 30px 0
	}

	.hero-9 .hero-img img {
		object-position: center
	}

	.hero-9 .hero-img img.image-desktop {
		display: none
	}

	.hero-9 .hero-img img.image-mobile {
		display: inline-block
	}

	.hero-9 .hero-shape.shape1 {
		top: 8%;
		left: 10%
	}

	.hero-9 .hero-shape.shape2 {
		bottom: 4%;
		left: 85%
	}

	.hero-style9 {
		padding: 0 0 100px 0;
		text-align: center
	}

	.hero-style9 .hero-text {
		margin-left: auto;
		margin-right: auto
	}

	.hero-style9 .btn-group {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

@media (max-width: 767px) {
	.hero-9 .hero-img {
		margin: 0 0px 30px 0
	}

	.hero-9 .hero-img img {
		width: 100%
	}
}

@media (max-width: 575px) {
	.hero-9 {
		background-size: 400% 100%
	}

	.hero-name {
		font-size: 16px;
		letter-spacing: 0.12em;
		margin: -0.32em 0 15px 0
	}

	.hero-style9 {
		padding: 0 0 80px 0
	}
}

.hero-style10 {
	margin: 200px 0;
	max-width: 690px;
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 60px;
	position: relative;
	z-index: 4
}

.hero-style10 .hero-text {
	font-size: 16px
}

.hero-style10 .hero-title {
	margin-bottom: 20px
}

.hero-style10 .shadow-text {
	font-size: 110px;
	font-weight: 700;
	line-height: 1;
	color: #F1F2F7;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	opacity: 0.5
}

@media (max-width: 1399px) {
	.hero-style10 {
		margin: 150px 0
	}
}

@media (max-width: 1199px) {
	.hero-style10 {
		margin: 100px 0;
		max-width: 580px
	}

	.hero-style10 .shadow-text {
		font-size: 5.8em
	}
}

@media (max-width: 991px) {
	.hero-style10 {
		max-width: 480px;
		padding: 40px
	}

	.hero-style10 .shadow-text {
		font-size: 5em
	}
}

@media (max-width: 767px) {
	.hero-style10 {
		margin: 100px auto
	}
}

@media (max-width: 575px) {
	.hero-style10 {
		padding: 40px 20px
	}

	.hero-style10 .shadow-text {
		font-size: 4em
	}
}

@media (max-width: 375px) {
	.hero-style10 .shadow-text {
		font-size: 3em
	}
}

@media (max-width: 340px) {
	.hero-style10 .hero-title {
		font-size: 28px
	}

	.hero-style10 .hero-name {
		font-size: 14px;
		letter-spacing: 0.1em;
		margin: -0.32em 0 10px 0
	}
}

.award-box {
	background-color: var(--smoke-color);
	text-align: center;
	border-radius: 10px;
	padding: 20px 5px
}

.award-box-wrap {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px
}

.award-box_icon {
	margin-bottom: 15px
}

.award-box_title {
	margin-bottom: 2px
}

.award-box_time {
	margin-bottom: -0.5em
}

.img-box10 {
	position: relative;
	right: 2px
}

.img-box10:before {
	content: '';
	width: 277px;
	height: 277px;
	background-color: var(--theme-color);
	position: absolute;
	bottom: 0;
	left: -50px;
	z-index: -1;
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
	clip-path: polygon(0 0, 0% 100%, 100% 100%)
}

.img-box10 .img1 {
	padding-bottom: 50px
}

.img-box10 .img1 img {
	width: 100%;
	border-radius: 10px
}

@media (max-width: 767px) {
	.award-box-wrap {
		grid-template-columns: repeat(1, 1fr)
	}
}

.feature-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px
}

.feature-block_title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px
}

.feature-block_text {
	margin-bottom: -0.5em
}

@media (max-width: 767px) {
	.feature-block {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
		gap: 15px;
		max-width: 340px;
		margin-left: auto;
		margin-right: auto
	}
}

.list-column2 {
	display: grid;
	grid-template-columns: auto auto
}

.img-box11 {
	position: relative;
	text-align: right;
	margin-left: 30px;
	line-height: 0px
}

.img-box11 .img1 {
	display: inline-block;
	border-radius: 10px;
	overflow: hidden
}

.img-box11 .img2 {
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 10px;
	overflow: hidden;
	background-color: var(--white-color);
	padding: 10px 10px 0 0
}

.img-box11 .img2 img {
	border-radius: inherit
}

.img-box11 .student-count {
	padding: 20px 20px 15px 0;
	box-shadow: none;
	text-align: left;
	position: absolute;
	top: 20px;
	left: 0
}

.img-box11 .student-count .student-text {
	margin-top: 5px;
	margin-bottom: 0
}

@media (max-width: 1399px) {
	.img-box11 {
		margin-left: 0
	}
}

@media (max-width: 1199px) {
	.img-box11 {
		margin-bottom: 40px
	}

	.img-box11 .img2 {
		width: 60%;
		max-height: 300px
	}

	.img-box11 .img2 img {
		height: 100%;
		width: 100%;
		object-fit: cover
	}
}

@media (max-width: 575px) {
	.list-column2 {
		grid-template-columns: auto;
		gap: 25px
	}
}

.cta-box {
	padding: 60px 30px;
	border-radius: 10px
}

.cta-box .cta-title {
	font-size: 30px;
	font-weight: 600;
	margin-top: -0.2em;
	margin-bottom: 23px
}

.cta-box .cta-text {
	max-width: 390px;
	margin-bottom: 35px
}

@media (max-width: 1199px) {
	.cta-box {
		padding: 60px
	}
}

@media (max-width: 767px) {
	.cta-box {
		padding: 45px 20px;
		background-position: left center
	}

	.cta-box .cta-text {
		margin-bottom: 25px
	}

	.cta-box .cta-title {
		margin-bottom: 16px;
		font-size: 26px;
		line-height: 1.45
	}
}

.testi-block-slide {
	border-top: 1px solid #e0e0e0;
	padding-top: 30px
}

.testi-block-wrap {
	position: relative;
	margin-right: 56px
}

.testi-block-wrap .icon-box {
	position: absolute;
	bottom: 25px;
	right: 0
}

.testi-block-wrap .icon-box .slick-arrow {
	--icon-size: 50px !important;
	--icon-font-size: 16px;
	margin-right: 0
}

.testi-block_profile {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px
}

.testi-block_avater {
	border-radius: 8px;
	overflow: hidden
}

.testi-block_name {
	margin-bottom: 0px
}

.testi-block_text {
	font-style: italic;
	margin-bottom: 30px;
	position: relative
}

.testi-block_text i {
	font-size: 24px;
	font-style: normal;
	color: var(--theme-color);
	vertical-align: text-bottom
}

.testi-block_text .fa-quote-left {
	margin-right: 4px
}

.testi-block_text .fa-quote-right {
	margin-left: 4px
}

.testi-block_desig {
	color: var(--theme-color);
	font-size: 14px;
	margin-bottom: 0;
	font-weight: 500;
	display: block
}

.testi-block_review {
	color: var(--yellow-color);
	margin-top: 8px
}

.testi-block_review i {
	margin-right: 5px
}

.consult-form {
	background-color: var(--white-color);
	box-shadow: 0px 6px 40px rgba(0, 14, 57, 0.06);
	border-radius: 10px;
	padding: 50px
}

.consult-form .as-btn {
	width: 100%
}

.consult-form .as-btn:before,
.consult-form .as-btn:after {
	display: none
}

.consult-form .as-btn:hover {
	background-color: var(--title-color)
}

@media (max-width: 1399px) {
	.testi-block-wrap {
		margin-right: 0
	}
}

@media (max-width: 575px) {
	.testi-block-wrap .icon-box {
		display: none
	}

	.consult-form {
		padding: 40px 20px
	}
}

.testi-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 30px;
	position: relative
}

.testi-list_img {
	min-width: 120px;
	position: relative
}

.testi-list_img>img {
	width: 100%;
	border-radius: 10px
}

.testi-list_quote {
	position: absolute;
	bottom: -25px;
	left: 35px;
	background-color: var(--white-color);
	width: 50px;
	height: 50px;
	line-height: 38px;
	border: 4px solid var(--title-color);
	border-radius: 50%;
	text-align: center
}

.testi-list_text {
	color: var(--white-color);
	margin: 0 0 25px 0;
	font-style: italic
}

.testi-list_name {
	color: var(--white-color);
	margin-bottom: 0
}

.testi-list_desig {
	display: block;
	color: var(--white-color);
	margin-bottom: -0.5em
}

.testi-list_review {
	color: var(--yellow-color);
	position: absolute;
	right: 0;
	bottom: 6px
}

@media (max-width: 575px) {
	.testi-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.testi-list_text {
		margin-bottom: 20px
	}
}

.footer-widget .sidebar-gallery {
	max-width: 300px;
	gap: 10px
}

.newsletter-logo {
	margin-bottom: 32px
}

.footer-layout5 {
	background-color: #0f1b31;
	--body-color: #B3C1D3;
	overflow: hidden
}

.footer-layout5 .copyright-wrap {
	padding: 24px 0;
	background-color: var(--theme-color);
	--body-color: #fff
}

.footer-layout5 .footer-top {
	border-bottom: 1px solid #254684
}

.footer-layout5 .widget-area {
	padding-top: 110px;
	padding-bottom: 65px
}

.footer-contact {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	padding: 40px 0
}

.footer-contact-wrap {
	display: grid;
	grid-template-columns: auto auto auto auto auto;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.footer-contact-wrap .divider {
	background-color: #254684;
	height: 100%;
	width: 1px
}

.footer-contact_icon {
	background-color: rgba(13, 94, 244, 0.2) !important;
	border: 1px solid var(--theme-color);
	border-radius: 10px;
	color: var(--white-color);
	font-size: 24px;
	--btn-size: 60px
}

.footer-contact_text {
	margin-bottom: 2px;
	font-family: var(--title-font)
}

.footer-contact_link {
	font-size: 22px;
	font-weight: 500;
	color: var(--white-color);
	display: block;
	margin-bottom: -0.2em
}

.footer-contact_link:hover {
	color: var(--theme-color)
}

.footer-contact .as-social a {
	--icon-size: 32px;
	font-size: 12px;
	background-color: #193F85;
	border: 1px solid #2A4F93
}

@media (max-width: 1399px) {
	.footer-contact {
		gap: 20px
	}
}

@media (max-width: 991px) {
	.footer-contact {
		padding: 30px 0
	}

	.footer-contact-wrap {
		grid-template-columns: 100%
	}

	.footer-contact-wrap .divider {
		display: none
	}

	.footer-contact:not(:last-child) {
		border-bottom: 1px solid #254684
	}

	.footer-layout5 .widget-area {
		padding-top: 80px;
		padding-bottom: 40px
	}

	.footer-layout5 .copyright-wrap {
		padding: 20px 0
	}
}

.footer-layout6 {
	background-color: #01163E;
	--body-color: #fff;
	background-size: auto;
	background-position: top left
}

.footer-layout6 .copyright-wrap {
	padding: 24px 0;
	border-top: 1px solid #254684
}

.footer-layout6 .as-widget-about .about-logo {
	margin-bottom: 35px
}

.susbcribe-bg {
	border-radius: 10px;
	padding: 70px 60px;
	position: relative;
	z-index: 4
}

.newsletter-form.style2 .as-btn {
	background-color: var(--title-color);
	margin-left: 10px
}

.newsletter-form.style2 input {
	background-color: var(--white-color);
	color: var(--body-color);
	border-color: var(--white-color)
}

.newsletter-form.style2 input::-moz-placeholder {
	color: var(--body-color)
}

.newsletter-form.style2 input::-webkit-input-placeholder {
	color: var(--body-color)
}

.newsletter-form.style2 input:-ms-input-placeholder {
	color: var(--body-color)
}

.newsletter-form.style2 input::-ms-input-placeholder {
	color: var(--body-color)
}

.newsletter-form.style2 input::placeholder {
	color: var(--body-color)
}

.newsletter-form.style2 .form-group>i {
	color: var(--body-color);
	top: 18px
}

@media (max-width: 991px) {
	.footer-layout6 .widget-area {
		padding-top: 80px;
		padding-bottom: 40px
	}
}

@media (max-width: 767px) {
	.susbcribe-bg {
		padding: 40px 20px
	}
}

@media (max-width: 575px) {
	.susbcribe-bg {
		text-align: center
	}
}

.feature-list {
	padding: 40px 30px 55px 30px;
	background-color: var(--theme-color);
	box-shadow: 0px 6px 30px rgba(0, 6, 18, 0.06);
	text-align: center;
	position: relative;
	z-index: 2;
	margin-bottom: 25px
}

.feature-list:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--white-color);
	z-index: -1;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.feature-list_icon {
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-size: 36px;
	color: var(--white-color);
	background-color: var(--theme-color);
	border-radius: 50%;
	margin: 0 auto 25px auto;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	position: relative;
	z-index: 2;
	box-shadow: 0px 4px 20px rgba(13, 94, 244, 0.5)
}

.feature-list_title {
	font-size: 24px;
	margin-bottom: 15px;
	margin-top: -0.24em;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.feature-list_text {
	margin-bottom: -0.45em;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.feature-list .icon-btn {
	--btn-size: 50px;
	background-color: var(--theme-color);
	color: var(--white-color);
	box-shadow: 0px 4px 18px rgba(13, 94, 244, 0.24);
	position: absolute;
	bottom: -25px;
	left: 50%;
	margin-left: -25px
}

.feature-list:hover:after {
	height: 0
}

.feature-list:hover .feature-list_icon {
	background-color: var(--white-color);
	color: var(--theme-color)
}

.feature-list:hover .feature-list_title {
	color: var(--white-color)
}

.feature-list:hover .feature-list_text {
	color: var(--white-color)
}

.feature-list:hover .icon-btn {
	background-color: var(--white-color);
	color: var(--theme-color);
	-webkit-animation: jumpIcon 1s linear infinite;
	animation: jumpIcon 1s linear infinite
}

.feature-sec {
	background-image: -webkit-linear-gradient(right, var(--smoke-color), var(--smoke-color));
	background-image: linear-gradient(to left, var(--smoke-color), var(--smoke-color));
	background-size: 100% 60%;
	background-position: top center;
	background-repeat: no-repeat
}

.feature-card {
	box-shadow: 0px 4px 30px rgba(179, 193, 219, 0.3)
}

.admission-card {
	padding: 30px;
	background-color: var(--white-color);
	box-shadow: 0px 4px 50px rgba(0, 6, 18, 0.1);
	border-radius: 10px;
	text-align: center
}

.admission-card_img {
	margin-bottom: 23px;
	border-radius: 10px;
	overflow: hidden
}

.admission-card_img img {
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.admission-card:hover .admission-card_img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

@media (max-width: 375px) {
	.admission-card {
		padding: 20px
	}
}

.blog-recent {
	box-shadow: 0px 4px 15px rgba(0, 6, 18, 0.07);
	border-radius: 10px;
	background-color: var(--white-color);
	overflow: hidden
}

.blog-recent .blog-img {
	overflow: hidden
}

.blog-recent .blog-img img {
	width: 100%
}

.blog-recent .blog-content {
	padding: 40px
}

.blog-recent .blog-title {
	font-weight: 600;
	margin-bottom: 25px
}

.blog-recent .blog-meta {
	border-bottom: 1px dashed #D9D9D9;
	padding-bottom: 24px;
	margin-top: -0.2em;
	margin-bottom: 21px
}

.blog-recent:hover .blog-img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

@media (max-width: 375px) {
	.blog-recent .blog-content {
		padding: 30px 18px
	}

	.blog-recent .blog-title {
		font-size: 21px;
		line-height: 1.5;
		margin-bottom: 18px
	}

	.blog-recent .blog-meta {
		margin-bottom: 15px;
		padding-bottom: 16px
	}

	.blog-recent .blog-meta span,
	.blog-recent .blog-meta a {
		font-size: 14px
	}
}

.home-kindergarten {
	--theme-color: #FE5D37;
	--theme-color2: #786ACF;
	--theme-color3: #AED139;
	--smoke-theme: #F9F6EF;
	--title-font: 'Baloo 2', cursive
}

.bg-theme3 {
	background-color: var(--theme-color3)
}

.bg-theme-smoke {
	background-color: var(--smoke-theme)
}

.bg-mask {
	-webkit-mask-position: center center;
	mask-position: center center;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat
}

.shape-mockup-wrap.z-index-common {
	z-index: 3
}

.movingX-reverse {
	-webkit-animation: movingX-reverse 8s linear infinite;
	animation: movingX-reverse 8s linear infinite
}

@-webkit-keyframes movingX-reverse {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	50% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes movingX-reverse {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	50% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.icon-btn:has(.bg-theme2):hover {
	background-color: var(--theme-color2);
	border-color: var(--theme-color2)
}

.box-title {
	font-size: 24px;
	line-height: 1.417
}

.box-title a {
	color: inherit
}

.box-title a:hover {
	color: var(--theme-color)
}

.home-kindergarten .as-btn {
	box-shadow: none
}

.home-kindergarten .as-btn.style6 {
	background-color: var(--theme-color2);
	color: var(--white-color)
}

.home-kindergarten .as-btn.style6:before {
	background-color: var(--title-color)
}

.home-kindergarten .sub-title {
	text-transform: capitalize;
	font-size: 20px;
	font-weight: 600;
	color: var(--theme-color2)
}

.bg-style-1 {
	padding: 60px 0
}

.header-layout11 {
	--main-container: 1600px
}

.header-layout11 .header-shape {
	background-size: auto;
	background-repeat: repeat-x;
	background-position: top left;
	position: absolute;
	bottom: -30px;
	left: 0;
	width: 100%;
	height: 33px;
	-webkit-animation: headerShapeAnim 80s linear infinite;
	animation: headerShapeAnim 80s linear infinite
}

@-webkit-keyframes headerShapeAnim {
	0% {
		background-position: top left
	}

	100% {
		background-position: top left 2000px
	}
}

@keyframes headerShapeAnim {
	0% {
		background-position: top left
	}

	100% {
		background-position: top left 2000px
	}
}

.hero-11 .bottom-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 152px;
	background-size: auto;
	background-repeat: repeat-x;
	background-position: bottom center;
	z-index: 5
}

.hero-11 .hero-img {
	position: absolute;
	bottom: 0;
	right: 7%;
	z-index: 2
}

.hero-11 .shape {
	position: absolute
}

.hero-11 .shape-1 {
	left: 3%;
	top: 14%;
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

.hero-11 .shape-2 {
	left: 40%;
	top: 8%;
	-webkit-animation: jumpReverseAni 7s linear infinite;
	animation: jumpReverseAni 7s linear infinite
}

.hero-11 .shape-3 {
	left: 6%;
	bottom: 20%;
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

.hero-11 .shape-4 {
	left: 41%;
	bottom: 22%;
	-webkit-animation: jumpReverseAni 7s linear infinite;
	animation: jumpReverseAni 7s linear infinite
}

.hero-11 .shape-5,
.hero-11 .shape-6,
.hero-11 .shape-7 {
	top: 0;
	z-index: 0;
	-webkit-animation: cloudAni 15s linear infinite;
	animation: cloudAni 15s linear infinite
}

.hero-11 .shape-7 {
	right: 1%;
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.hero-11 .shape-6 {
	right: 10%
}

.hero-11 .shape-5 {
	right: 35%;
	-webkit-animation-delay: 4s;
	animation-delay: 4s
}

@-webkit-keyframes cloudAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}

	50% {
		-webkit-transform: translateY(-300px);
		transform: translateY(-300px);
		opacity: 0
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}
}

@keyframes cloudAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}

	50% {
		-webkit-transform: translateY(-300px);
		transform: translateY(-300px);
		opacity: 0
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}
}

.hero-style11 {
	max-width: 660px;
	padding: 230px 0 260px 0;
	position: relative;
	z-index: 6
}

.hero-style11 .hero-subtitle {
	color: var(--theme-color2);
	font-size: 20px;
	font-weight: 600;
	font-family: var(--title-font);
	text-transform: capitalize;
	display: block;
	margin-bottom: 18px
}

.hero-style11 .hero-subtitle:before {
	content: '';
	height: 3px;
	width: 60px;
	background-color: var(--theme-color2);
	display: inline-block;
	margin-right: 10px;
	vertical-align: top;
	border: 99px;
	position: relative;
	top: 11px
}

@media (max-width: 1500px) {
	.hero-11 .hero-img {
		right: 1%;
		max-width: 700px
	}
}

@media (max-width: 1400px) {
	.hero-style11 {
		max-width: 560px
	}
}

@media (max-width: 1199px) {
	.hero-11 .hero-img {
		right: 0%;
		max-width: 500px
	}

	.hero-style11 {
		padding: 150px 0 220px 0
	}
}

@media (max-width: 991px) {
	.hero-11 .hero-img {
		display: none
	}

	.hero-11 .shape-5,
	.hero-11 .shape-6,
	.hero-11 .shape-7 {
		max-width: 110px
	}
}

@media (max-width: 575px) {
	.hero-11 .shape-2 {
		display: none
	}

	.hero-style11 {
		padding: 130px 0 200px 0;
		text-align: center
	}

	.hero-style11 .btn-group {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.hero-style11 .hero-subtitle {
		font-size: 18px
	}

	.hero-style11 .hero-subtitle:before {
		display: none
	}
}

.footer-layout7 {
	--body-color: #fff;
	background-color: var(--title-color);
	background-size: 100% 100%;
	background-position: top center;
	margin-top: -80px;
	padding-top: 80px
}

.footer-layout7 .footer-widget.style2 .widget_title {
	font-size: 24px;
	text-transform: capitalize;
	padding: 0 0 15px 0;
	font-weight: 600
}

.footer-layout7 .footer-widget.style2 .widget_title:before {
	background-color: var(--theme-color)
}

@media (max-width: 1199px) {
	.footer-layout7 {
		padding-top: 20px
	}

	.footer-layout7 .copyright-wrap {
		padding: 25px 0
	}
}

@media (max-width: 767px) {
	.footer-layout7 .widget-area {
		padding-bottom: 50px
	}
}

.about-profile {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px
}

.about-profile .avater {
	width: 60px;
	height: 60px;
	border-radius: 999px;
	overflow: hidden
}

.about-profile .desig {
	margin-bottom: 0;
	margin-top: 5px
}

.btn-group:has(.about-profile) {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	max-width: 500px
}

.img-box12 {
	border-radius: 30px;
	overflow: hidden;
	margin-left: 70px
}

.img-box12 img {
	width: 100%
}

.checklist.style5 li {
	color: var(--body-color)
}

.checklist.style5 li:before {
	content: '\f336'
}

@media (max-width: 1399px) {
	.img-box12 {
		margin-left: 0
	}
}

@media (max-width: 1199px) {
	.img-box12 {
		margin-bottom: 40px
	}
}

.cta-cloud {
	text-align: center;
	max-width: 700px;
	background-size: 100% 100%;
	padding: 150px 100px 140px 100px
}

.cta-cloud .cta-call {
	color: var(--theme-color3);
	font-size: 36px;
	line-height: 1;
	font-weight: 700;
	display: block
}

.cta-cloud .cta-call:hover {
	color: var(--theme-color)
}

.mt-negative-v1 {
	background-size: 100% 100%;
	margin-top: -80px
}

@media (max-width: 1199px) {
	.cta-cloud {
		max-width: 600px
	}

	.cta-cloud .cta-call {
		font-size: 28px
	}
}

@media (max-width: 991px) {
	.cta-cloud {
		padding: 110px 100px 100px 100px
	}
}

@media (max-width: 575px) {
	.cta-cloud {
		padding: 110px 40px 100px 40px
	}

	.cta-cloud .cta-call {
		font-size: 22px
	}
}

@media (max-width: 375px) {
	.cta-cloud {
		padding: 110px 20px 100px 20px
	}
}

.program-card {
	text-align: center;
	background-color: var(--theme-color);
	border-radius: inherit;
	position: relative;
	padding: 0 27px 12px 27px;
	z-index: 2
}

.program-card-wrap {
	border: 1px dashed var(--theme-color);
	padding: 20px;
	border-radius: 20px
}

.program-card_img {
	max-width: 200px;
	margin: 0 auto 18px auto;
	padding: 0 20px 20px 20px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 0 0 999px 999px
}

.program-card_img img {
	border-radius: inherit
}

.program-card_title,
.program-card_year,
.program-card_text {
	color: var(--white-color)
}

.program-card_title {
	margin-bottom: 0
}

.program-card_title a:hover {
	color: var(--title-color)
}

.program-card_year {
	font-size: 14px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
	padding-bottom: 15px;
	margin-bottom: 20px
}

.program-card_text {
	max-width: 300px;
	margin: 0 auto 50px auto
}

.program-card .link-btn {
	color: var(--white-color)
}

.program-card .link-btn:before {
	background-color: var(--white-color)
}

.program-card_cloud {
	position: absolute;
	bottom: 0;
	left: 50%;
	height: 71px;
	width: 225px;
	margin-left: -112.5px;
	background-color: var(--white-color);
	-webkit-clip-path: path("M212.22 58.0098C218.889 59.0904 223.429 64.3913 225 71H4C0.86865 67.3374 0.0340561 64.7663 0.0001426 59.9321C-0.0224664 55.0979 2.64538 48.8305 6.59066 46.0665C13.2377 41.4029 20.9248 43.291 24.1918 44.7015C24.7683 41.1867 26.8031 35.943 31.3136 33.7932C38.5259 30.3467 45.0373 32.6444 47.1173 33.7591C46.8347 29.7552 49.5365 25.922 53.1087 24.1475C56.6923 22.3731 60.9427 22.4186 64.7976 23.4651C64.0741 20.5418 64.8767 14.9568 69.2968 12.1132C74.2369 8.92829 80.7709 8.00695 85.8579 10.9644C90.4136 3.10449 99.8416 -1.252 108.75 0.3177C117.658 1.8874 125.22 9.44015 126.848 18.392C129.471 15.4346 134.987 13.171 142.007 14.6497C149.943 16.3218 152.702 22.0432 154.216 24.6594C158.93 20.7807 165.453 19.2565 171.444 20.3143C177.436 21.3835 182.896 25.1713 185.993 30.4377C187.587 33.1335 188.559 36.1478 189.385 39.162C195.206 36.8075 201.605 37.6379 206.714 41.3005C211.824 44.9745 214.458 52.1178 212.22 58.0098Z");
	clip-path: path("M212.22 58.0098C218.889 59.0904 223.429 64.3913 225 71H4C0.86865 67.3374 0.0340561 64.7663 0.0001426 59.9321C-0.0224664 55.0979 2.64538 48.8305 6.59066 46.0665C13.2377 41.4029 20.9248 43.291 24.1918 44.7015C24.7683 41.1867 26.8031 35.943 31.3136 33.7932C38.5259 30.3467 45.0373 32.6444 47.1173 33.7591C46.8347 29.7552 49.5365 25.922 53.1087 24.1475C56.6923 22.3731 60.9427 22.4186 64.7976 23.4651C64.0741 20.5418 64.8767 14.9568 69.2968 12.1132C74.2369 8.92829 80.7709 8.00695 85.8579 10.9644C90.4136 3.10449 99.8416 -1.252 108.75 0.3177C117.658 1.8874 125.22 9.44015 126.848 18.392C129.471 15.4346 134.987 13.171 142.007 14.6497C149.943 16.3218 152.702 22.0432 154.216 24.6594C158.93 20.7807 165.453 19.2565 171.444 20.3143C177.436 21.3835 182.896 25.1713 185.993 30.4377C187.587 33.1335 188.559 36.1478 189.385 39.162C195.206 36.8075 201.605 37.6379 206.714 41.3005C211.824 44.9745 214.458 52.1178 212.22 58.0098Z");
	opacity: 0.20;
	z-index: -1
}

.activity-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px
}

.activity-box_icon img {
	width: 100%
}

.activity-box_title {
	font-weight: bold;
	margin-top: -0.24em;
	margin-bottom: 10px
}

.activity-box_text {
	margin-bottom: -0.5em
}

.img-box13 img {
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content
}

@media (max-width: 1199px) {
	.img-box13 {
		margin-top: 50px;
		text-align: center
	}

	.img-box13 img {
		max-width: 100%
	}
}

@media (max-width: 767px) {
	.activity-box {
		display: block;
		text-align: center
	}

	.activity-box_icon {
		margin-bottom: 20px
	}

	.activity-box_icon img {
		width: auto
	}
}

.team-block {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	text-align: center
}

.team-block .team-img {
	border: 1px dashed var(--theme-color);
	margin-bottom: 30px;
	border-radius: inherit;
	background-color: var(--white-color);
	padding: 20px;
	position: relative
}

.team-block .team-img img {
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	border-radius: inherit
}

.team-block .team-title {
	font-size: 24px;
	margin-bottom: 0;
	margin-top: -0.23em;
	font-weight: 700
}

.team-block .team-title a {
	color: inherit
}

.team-block .team-title a:hover {
	color: var(--theme-color)
}

.team-block .team-desig {
	color: var(--theme-color);
	display: block;
	font-family: var(--title-font);
	margin-bottom: -0.45em
}

.team-block .icon-btn {
	background-color: var(--theme-color);
	color: var(--white-color);
	position: relative;
	z-index: 3
}

.team-block .icon-btn i {
	-webkit-transition: 0.3s;
	transition: 0.3s
}

.team-block .icon-btn:hover i {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}

.team-block .as-social {
	position: absolute;
	width: 45px;
	bottom: 50px;
	left: 2.5px
}

.team-block .as-social a {
	margin-right: 0;
	margin-bottom: 5px;
	background-color: var(--white-color);
	color: var(--theme-color);
	box-shadow: 0px 5px 18px rgba(76, 88, 104, 0.06);
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(45px);
	-ms-transform: translateY(45px);
	transform: translateY(45px);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out
}

.team-block .as-social a:nth-child(1) {
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

.team-block .as-social a:nth-child(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s
}

.team-block .as-social a:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s
}

.team-block .as-social a:nth-child(4) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s
}

.team-block .as-social a:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.team-block .team-social {
	position: absolute;
	bottom: -25px;
	right: 40px
}

.team-block .team-social:hover .as-social a {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}

.team-block .team-social:hover .as-social a:nth-child(4) {
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

.team-block .team-social:hover .as-social a:nth-child(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s
}

.team-block .team-social:hover .as-social a:nth-child(2) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s
}

.team-block .team-social:hover .as-social a:nth-child(1) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s
}

.service-block {
	position: relative;
	border-radius: 20px;
	padding: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 40px
}

.service-block-tab {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 35px
}

.service-block-tab .tab-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--title-color)
}

.service-block-tab .tab-btn {
	width: auto;
	text-align: center;
	cursor: pointer
}

.service-block-tab .tab-btn:hover .tab-title,
.service-block-tab .tab-btn.active .tab-title {
	color: var(--theme-color)
}

.service-block-tab .indicator {
	position: absolute
}

.service-block:before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--theme-color);
	border-radius: inherit;
	opacity: 0.05;
	z-index: -1
}

.service-block_thumb {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	margin: 5px auto 10px auto;
	background-color: var(--smoke-theme);
	border-radius: 50%;
	position: relative
}

.service-block_thumb:before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	width: 100%;
	height: 100%;
	background-color: var(--theme-color);
	border-radius: inherit;
	z-index: -1
}

.service-block_title {
	font-size: 30px;
	margin-bottom: 18px
}

.service-block_title a {
	color: inherit
}

.service-block_title a:hover {
	color: var(--theme-color)
}

.service-block_img {
	min-width: 285px;
	border-radius: 10px;
	overflow: hidden
}

.service-block_img img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.service-block_text {
	margin-bottom: 28px
}

@media (max-width: 991px) {
	.service-block {
		gap: 25px
	}

	.service-block_title {
		font-size: 24px
	}
}

@media (max-width: 767px) {
	.service-block {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}

	.service-block_img {
		min-width: 100%
	}
}

@media (max-width: 575px) {
	.service-block-tab .tab-title {
		font-size: 16px;
		line-height: 1.3
	}
}

@media (max-width: 575px) {
	.service-block-tab .tab-title {
		display: none
	}

	.service-block_thumb {
		height: 50px;
		width: 50px;
		line-height: 50px;
		margin: 5px 0 0 5px
	}
}

@media (max-width: 375px) {
	.service-block {
		padding: 20px
	}
}

.img-box14 {
	position: relative;
	height: 100%;
	width: 100%;
	-webkit-transform: translateX(-40px);
	-ms-transform: translateX(-40px);
	transform: translateX(-40px)
}

.img-box14 .img1 {
	position: absolute;
	bottom: 0;
	right: 0
}

.img-box14 .img1 img {
	max-width: -webkit-max-content;
	max-width: -moz-max-content;
	max-width: max-content
}

.img-box14 .shape1 {
	position: absolute;
	bottom: 60px;
	right: 0;
	z-index: -1
}

.img-box14 .shape1 img {
	max-width: -webkit-max-content;
	max-width: -moz-max-content;
	max-width: max-content
}

@media (max-width: 1199px) {
	.img-box14 {
		text-align: center;
		margin-bottom: 50px;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}

	.img-box14 .img1 {
		position: static
	}

	.img-box14 .img1 img {
		max-width: 100%
	}

	.img-box14 .shape1 {
		left: 0
	}
}

@media (max-width: 991px) {
	.img-box14 .shape1 img {
		max-width: 100%
	}
}

.testi-grid-style3 {
	background: var(--white-color);
	border: none;
	box-shadow: 0px 10px 15px rgba(0, 14, 57, 0.04);
	padding: 40px;
	position: relative
}

.testi-grid-style3 .testi-grid_avater {
	width: 70px;
	border-radius: 10px
}

.testi-grid-style3 .testi-grid_text {
	color: var(--body-color);
	font-size: 16px;
	line-height: 1.7;
	font-family: var(--body-font);
	margin-top: -0.5em
}

.testi-grid-style3 .testi-grid_name {
	color: var(--title-color);
	font-weight: 700
}

.testi-grid-style3 .testi-grid_bottom {
	border-color: var(--theme-color)
}

.testi-grid-style3 .testi-grid_quote {
	position: absolute;
	bottom: 60px;
	right: 40px
}

@media (max-width: 375px) {
	.testi-grid-style3 {
		padding: 40px 20px
	}

	.testi-grid-style3 .testi-grid_quote {
		right: 20px
	}
}

.available-list ul {
	padding: 0;
	margin: 0;
	list-style: none
}

.available-list li {
	position: relative;
	margin-bottom: 10px;
	color: var(--white-color);
	padding-left: 26px
}

.available-list li:last-child {
	margin-bottom: 0
}

.available-list li:before {
	content: "\f058";
	font-family: var(--icon-font);
	font-weight: 600;
	color: var(--body-color);
	font-size: 1em;
	vertical-align: text-top;
	position: absolute;
	top: 0;
	left: 0
}

.available-list li.unavailable {
	opacity: 0.7
}

.available-list li.unavailable:before {
	color: var(--white-color)
}

.price-card {
	padding: 40px;
	background-color: var(--theme-color);
	border-radius: 20px;
	position: relative;
	margin: 20px;
	z-index: 2
}

.price-card:before {
	content: '';
	position: absolute;
	inset: -20px;
	background-color: var(--theme-color);
	opacity: 0.2;
	border-radius: 30px;
	z-index: -1
}

.price-card_price {
	color: var(--body-color);
	font-size: 48px;
	font-weight: bold;
	line-height: 1
}

.price-card_price .currency {
	font-size: 24px
}

.price-card_price .duration {
	color: var(--white-color);
	font-size: 20px;
	font-weight: 500
}

.price-card_title {
	border-bottom: 3px solid var(--body-color);
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin-top: -0.24em;
	margin-bottom: 20px;
	color: var(--white-color)
}

.price-card_img {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: -1
}

.price-card .available-list {
	border-top: 1px dashed var(--body-color);
	padding-top: 25px;
	margin-top: 25px;
	margin-bottom: 30px
}

.price-card .as-btn {
	background-color: var(--body-color)
}

@media (max-width: 1500px) {
	.price-card_img {
		max-width: 100px
	}
}

@media (max-width: 375px) {
	.price-card {
		padding: 40px 25px;
		margin: 15px
	}

	.price-card:before {
		inset: -15px
	}
}

@media (max-width: 340px) {
	.price-card_img {
		max-width: 70px
	}
}

[dir="rtl"] .ml-5 {
	margin-right: 5px;
	margin-left: 0
}

[dir="rtl"] .ml-10 {
	margin-right: 10px;
	margin-left: 0
}

[dir="rtl"] .ml-15 {
	margin-right: 15px;
	margin-left: 0
}

[dir="rtl"] .ml-20 {
	margin-right: 20px;
	margin-left: 0
}

[dir="rtl"] .ml-25 {
	margin-right: 25px;
	margin-left: 0
}

[dir="rtl"] .ml-30 {
	margin-right: 30px;
	margin-left: 0
}

[dir="rtl"] .ml-35 {
	margin-right: 35px;
	margin-left: 0
}

[dir="rtl"] .ml-40 {
	margin-right: 40px;
	margin-left: 0
}

[dir="rtl"] .ml-45 {
	margin-right: 45px;
	margin-left: 0
}

[dir="rtl"] .ml-50 {
	margin-right: 50px;
	margin-left: 0
}

[dir="rtl"] .mr-5 {
	margin-left: 5px;
	margin-right: 0
}

[dir="rtl"] .mr-10 {
	margin-left: 10px;
	margin-right: 0
}

[dir="rtl"] .mr-15 {
	margin-left: 15px;
	margin-right: 0
}

[dir="rtl"] .mr-20 {
	margin-left: 20px;
	margin-right: 0
}

[dir="rtl"] .mr-25 {
	margin-left: 25px;
	margin-right: 0
}

[dir="rtl"] .mr-30 {
	margin-left: 30px;
	margin-right: 0
}

[dir="rtl"] .mr-35 {
	margin-left: 35px;
	margin-right: 0
}

[dir="rtl"] .mr-40 {
	margin-left: 40px;
	margin-right: 0
}

[dir="rtl"] .mr-45 {
	margin-left: 45px;
	margin-right: 0
}

[dir="rtl"] .mr-50 {
	margin-left: 50px;
	margin-right: 0
}

[dir="rtl"] .pl-5 {
	padding-left: 0;
	padding-right: 5px
}

[dir="rtl"] .pl-10 {
	padding-left: 0;
	padding-right: 10px
}

[dir="rtl"] .pl-15 {
	padding-left: 0;
	padding-right: 15px
}

[dir="rtl"] .pl-20 {
	padding-left: 0;
	padding-right: 20px
}

[dir="rtl"] .pl-25 {
	padding-left: 0;
	padding-right: 25px
}

[dir="rtl"] .pl-30 {
	padding-left: 0;
	padding-right: 30px
}

[dir="rtl"] .pl-35 {
	padding-left: 0;
	padding-right: 35px
}

[dir="rtl"] .pl-40 {
	padding-left: 0;
	padding-right: 40px
}

[dir="rtl"] .pl-45 {
	padding-left: 0;
	padding-right: 45px
}

[dir="rtl"] .pl-50 {
	padding-left: 0;
	padding-right: 50px
}

[dir="rtl"] .pr-5 {
	padding-right: 0;
	padding-left: 5px
}

[dir="rtl"] .pr-10 {
	padding-right: 0;
	padding-left: 10px
}

[dir="rtl"] .pr-15 {
	padding-right: 0;
	padding-left: 15px
}

[dir="rtl"] .pr-20 {
	padding-right: 0;
	padding-left: 20px
}

[dir="rtl"] .pr-25 {
	padding-right: 0;
	padding-left: 25px
}

[dir="rtl"] .pr-30 {
	padding-right: 0;
	padding-left: 30px
}

[dir="rtl"] .pr-35 {
	padding-right: 0;
	padding-left: 35px
}

[dir="rtl"] .pr-40 {
	padding-right: 0;
	padding-left: 40px
}

[dir="rtl"] .pr-45 {
	padding-right: 0;
	padding-left: 45px
}

[dir="rtl"] .pr-50 {
	padding-right: 0;
	padding-left: 50px
}

[dir="rtl"] select,
[dir="rtl"] .form-control,
[dir="rtl"] .form-select,
[dir="rtl"] textarea,
[dir="rtl"] input {
	padding-left: 45px;
	padding-right: 25px
}

[dir="rtl"] [class*="col-"].form-group>i {
	left: calc((var(--bs-gutter-x) / 2) + 25px);
	right: unset
}

[dir="rtl"] .form-group>i {
	left: 25px;
	right: unset
}

[dir="rtl"] .checklist ul {
	text-align: right;
	padding-right: 0
}

[dir="rtl"] .checklist li {
	padding-left: 0;
	padding-right: 28px
}

[dir="rtl"] .checklist li:before {
	left: unset;
	right: 0
}

[dir="rtl"] .link-btn>i {
	margin-left: 0;
	margin-right: 5px
}

[dir="rtl"] .slick-dots li {
	margin-right: 0;
	margin-left: 10px
}

[dir="rtl"] .slick-dots li:last-child {
	margin-left: 0
}

[dir="rtl"] .blog-meta.style2 span,
[dir="rtl"] .blog-meta.style2 a {
	margin-right: 0;
	margin-left: 25px;
	padding-right: 0
}

[dir="rtl"] .blog-meta.style2 span:last-child,
[dir="rtl"] .blog-meta.style2 a:last-child {
	margin-left: 0
}

[dir="rtl"] .blog-meta.style2 span i,
[dir="rtl"] .blog-meta.style2 a i {
	margin-right: 0;
	margin-left: 10px
}

[dir="rtl"] .header-links li:not(:last-child) {
	margin: 0;
	padding: 0
}

[dir="rtl"] .header-links li:not(:last-child):before {
	display: none
}

[dir="rtl"] .header-links li:not(:first-child) {
	padding: 0 20px 0 0;
	margin: 0 17px 0 0
}

[dir="rtl"] .header-links li:not(:first-child):before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	width: 1px;
	height: 16px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

[dir="rtl"] .header-links li>i {
	margin-right: 0;
	margin-left: 10px
}

[dir="rtl"] .header-social a {
	margin: 0 0 0 15px
}

@media (max-width: 375px) {
	[dir="rtl"] .header-social a {
		margin: 0 0 0 10px
	}
}

[dir="rtl"] .header-social a:last-child {
	margin: 0
}

[dir="rtl"] .menu-expand i {
	margin-right: 0;
	margin-left: 10px
}

[dir="rtl"] .main-menu>ul>li:first-child {
	margin-left: 15px !important;
	margin-right: 0 !important
}

[dir="rtl"] .main-menu>ul>li:last-child {
	margin-left: 0 !important;
	margin-right: 15px !important
}

[dir="rtl"] .main-menu .mega-menu,
[dir="rtl"] .main-menu .sub-menu {
	text-align: right
}

[dir="rtl"] .main-menu .mega-menu li a,
[dir="rtl"] .main-menu .sub-menu li a {
	padding-left: 0;
	padding-right: 23px
}

[dir="rtl"] .main-menu .mega-menu li a:before,
[dir="rtl"] .main-menu .sub-menu li a:before {
	left: unset;
	right: 0
}

[dir="rtl"] .main-menu .sub-menu {
	left: unset;
	right: -23px
}

[dir="rtl"] .category-menu {
	text-align: right;
	left: unset;
	right: -23px
}

[dir="rtl"] .category-menu a {
	padding-left: 0;
	padding-right: 23px
}

[dir="rtl"] .category-menu a:before {
	left: unset;
	right: 0
}

[dir="rtl"] .header-layout2 .header-button {
	padding-left: 0;
	padding-right: 30px;
	margin-left: 0;
	margin-right: 6px
}

[dir="rtl"] .header-layout2 .header-button:before {
	left: unset;
	right: 0
}

[dir="rtl"] .popup-search-box form input {
	padding-right: 65px
}

[dir="rtl"] .as-menu-wrapper .as-menu-toggle {
	left: -16.5px;
	right: unset;
	top: 25px
}

[dir="rtl"] .as-menu-wrapper .as-menu-area {
	right: -110%;
	border-left: 3px solid var(--theme-color);
	border-right: none
}

[dir="rtl"] .as-menu-wrapper.as-body-visible .as-menu-area {
	right: 0%
}

[dir="rtl"] .as-mobile-menu {
	text-align: right
}

[dir="rtl"] .as-mobile-menu ul li a {
	padding-left: 0;
	padding-right: 18px
}

[dir="rtl"] .as-mobile-menu ul li a:before {
	left: unset;
	right: 0;
	margin-right: 0;
	margin-left: 10px;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg)
}

[dir="rtl"] .as-mobile-menu ul li a:after {
	display: none
}

[dir="rtl"] .as-mobile-menu ul .as-item-has-children>a .as-mean-expand {
	right: unset;
	left: 0
}

[dir="rtl"] .footer-widget .widget_title:before,
[dir="rtl"] .footer-widget .widget_title:after {
	left: unset;
	right: 0
}

[dir="rtl"] .footer-widget.widget_meta a,
[dir="rtl"] .footer-widget.widget_pages a,
[dir="rtl"] .footer-widget.widget_archive a,
[dir="rtl"] .footer-widget.widget_categories a,
[dir="rtl"] .footer-widget.widget_nav_menu a {
	padding: 0 25px 0 0
}

[dir="rtl"] .footer-widget.widget_meta a:before,
[dir="rtl"] .footer-widget.widget_pages a:before,
[dir="rtl"] .footer-widget.widget_archive a:before,
[dir="rtl"] .footer-widget.widget_categories a:before,
[dir="rtl"] .footer-widget.widget_nav_menu a:before {
	left: unset;
	right: 0;
	-webkit-transform: translateY(-50%) rotateY(180deg);
	transform: translateY(-50%) rotateY(180deg)
}

[dir="rtl"] .footer-widget input,
[dir="rtl"] .footer-widget select {
	text-align: right
}

[dir="rtl"] .footer-links li {
	margin-left: 20px
}

[dir="rtl"] .about-content {
	padding-left: 0;
	padding-right: 56px
}

@media (max-width: 1500px) {
	[dir="rtl"] .about-content {
		padding-right: 0
	}
}

[dir="rtl"] .img-box4 {
	padding-left: 0;
	padding-right: 56px
}

@media (max-width: 1500px) {
	[dir="rtl"] .img-box4 {
		padding-right: 0
	}
}

[dir="rtl"] .img-left {
	left: unset;
	right: 0;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg)
}

[dir="rtl"] .course-meta a i,
[dir="rtl"] .course-meta span i {
	margin-right: 0;
	margin-left: 5px
}

[dir="rtl"] .course-img .tag {
	left: 20px;
	right: unset
}

/*=========================
CUSTOM CSS START HERE
==========================*/
.as-hero-wrapper .mainSlider__form {
    position: relative;
    margin-top: 43px;
}
.as-hero-wrapper .mainSlider__form input {
    width: 100%;
    height: 70px;
    font-size: 15px;
    line-height: 26px;
    background-color: white;
    color: var(--color-light-1);
    border-radius: 100px;
    padding: 22px 35px;
}
.as-hero-wrapper .mainSlider__form button {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    height: auto;
    min-width: auto;
    background: #0d5ef4;
    padding: 0px 32px;
    border-radius: 100px;
}
.hero-title span{
	color:#03FB87;
}
.section-title h2 {
    font-family: "Nunito", sans-serif;
    font-size: 2rem;
    font-weight: 600;
}
.section-title{
	position: relative;
	width: 100%;
}
.sectiontitle-design {
    display: inline-block;
    position: relative;
    margin-bottom: 8px;
}
.sectiontitle-design:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background: #44577a;
    left: -30px;
    top: 12px;
}
.sectiontitle-design:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background: #44577a;
    right: -31px;
    top: 12px;
}
.sectiontitle-design .icons, .service-widgets:hover {
    background: #ec296b;
}

.sectiontitle-design .icons {
    width: 0.5rem;
    height: 0.5rem;
    display: inline-block;
    position: relative;
    transform: rotate(45deg);
}
.item-all-cat .item-all-card {
    border: 1px solid #e0e8f3;
    box-shadow: 0 10px 15px rgba(8, 21, 66, 0.06);
}

.text-center {
    text-align: center !important;
}
.item-all-cat .item-all-card {
    position: relative;
    padding: 1.5rem 1.5rem;
    border-radius: 4px;
    color: #fff;
    overflow: hidden;
    margin-bottom: 15px;
}
.item-all-card:before {
    content: "";
    width: 100%;
    left: 0;
    height: 100%;
    bottom: -40px;
    position: absolute;
    display: block;
    opacity: 0.03;
    background: url(../img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.best-course-sec {
    position: relative;
    width: 100%;
    background: url(../img/best-course-bg.png)100% 0% no-repeat;
    padding: 0px;
    margin: 50px auto;
    min-height: 400px;
}
.best-course-box {
    position: relative;
    width: 100%;
    padding: 150px 0px 100px 0px;
}
.best-course-box h1 {
    position: relative;
    font-size: 42px;
    font-weight: 400;
}
.best-course-box p {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.best-course-box a.view_course {
    padding: 5px 25px;
    background: #4f547b;
    border-radius: 6px;
    color: #fff!important;
    position: relative;
    display: inline-block;
    font-size: 16px;
    margin-top: 25px;
}
.cta{
	position: relative;
	width: 100%;
    z-index: 0;
    position: relative;
    padding-top: 125px;
    padding-bottom: 100px;	
	background-size: cover;
	background: url(../img/cta-bg.png)0% 0% no-repeat;
}
.skills-box p {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 25px;
    color: #fff!important;
}
.skills-box h2 {
    position: relative;
    font-size: 36px!important;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 48px;
    margin-bottom: 25px;
    color: #fff!important;
}
.skills-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.gs-btn {
    border-radius: 6px;
    font-size: 16px;
    border: 2px solid #fff;
    display: inline-block;
    padding: 5px 25px;
    color: #fff!important;
}
.feature-sec {
    position: relative;
    width: 100%;
    background: #252525;
    padding: 50px 0px;
}
.feature-box {
    position: relative;
    width: 100%;
    display: inline-block;
}
.feature-icon {
    position: relative;
    width: 20%;
    float: left;
    display: inline-block;
}
.feature-text {
    position: relative;
    width: 80%;
    float: left;
    display: inline-block;
}
.feature-text span {
    font-size: 16px;
    color: #fff!important;
    display: block;
    text-transform: uppercase;
}
.feature-text p {
    font-size: 14px;
    color: #fff!important;
    display: block;
}
.view_course_plus {
    font-size: 14px;
    color: #fff!important;
    display: block;
    text-decoration: none;
}
.growing-sec {
    position: relative;
    width: 100%;
    padding: 50px 0px;
}
.justify-center {
    justify-content: center !important;
}
.text-center {
    text-align: center;
}
.y-gap-20 {
    margin-top: -10px;
    margin-bottom: -10px;
}
.col-auto {
    flex: 0 0 auto;
    width: auto;
}
.sectionTitle__title {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    color:#140342;
}
.sectionTitle__text {
    margin-top: 10px;
    color:#4f547b;
    margin-bottom: 25px;
}
.pt-60 {
    padding-top: 60px !important;
}
.infoCard {
    position: relative;
    width: 100%;
}
.infoCard__image {
    position: relative;
    width: 20%;
    float: left;
}
.infoCard__content {
    position: relative;
    width: 80%;
    padding: 0px 15px;
    float: left;
}
.best-skills-sec {
    position: relative;
    width: 100%;
    background: url(../img/skill-certificate-bg.png)0% 0% no-repeat;
    padding: 100px 0px;
}
.best-skill-box {
    position: relative;
    padding: 150px 0px 0px 233px;
}
.best-skill-box h1 {
    font-size: 42px;
    color: #fff!important;
    line-height: 48px;
}
.best-skill-box a.view_course {
    display: inline-block;
    background: #4f547b;
    margin-top: 25px;
    color: #fff!important;
    padding: 5px 25px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-size: 16px;
}
.about-section {
    position: relative;
    width: 100%;
    background: #00306e;
}
.about-text-box {
    position: relative;
    width: 100%;
    padding: 25px 0px;
}
.section-secondry-title {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0px 0px 10px 0px;
}
.text-whit {
    color: #fff;
}
.section-primary-title {
    font-size: 32px;
    text-transform: uppercase;
    margin: 0px 0px 10px 0px;
}
.about-text-box ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.about-text-box ul li {
    width: 100%;
    display: inline-block;
    padding-left: 70px;
    margin-bottom: 10px;
}
.about-text-box ul li span {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
}

.about-text-box ul li h4 {
    font-size: 24px;
    color: #fff;
    margin: 0px 0px 10px 0px;
}

.about-text-box ul li p {
    font-size: 14px;
    color: #fff;
    margin: 0px 0px 10px 0px;
}
.about-pic-box {
    position: relative;
    width: 100%;
    height: 100%;
    right: -50px;
}
.about-pic-box img {
    position: relative;
    width: 100%;
    height: 100%;
}
.top-rating-instructor-section {
    position: relative;
    width: 100%;
    padding: 60px 0px;
}
.title-area {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0px auto;
    max-width: 650px;
    padding-bottom: 50px;
}
.primary-title {
    font-size: 24px;
    margin: 0 auto;
    margin-bottom: 10px;
}
.primary-title {
    font-size: 24px;
    display: block;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}
.fw-medium {
    font-size: 14px;
    margin: 0 auto;
}
.fw-medium {
    font-weight: 500;
}
.slick-initialized .slick-slide {
    display: block;
}
.instructor-box {
    margin: 0 auto;
    width: 95%;
    text-align: center;
    position: relative;
}
.slick-slide {
    display: none;
    float: left;
    height:auto;
    min-height: 1px;
}
.instructor-pic-box {
    margin: 0 auto;
    width: 95%;
    max-width: 125px;
    height: 125px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
}
.instructor-pic-box img {
    width: 100%;
    max-width: 125px;
    height: 125px;
    position: relative;
}
.instructor-pic-box img {
    width: 100%;
    max-width: 125px;
    height: 125px;
    position: relative;
}
.instructor-box h3 {
    font-size: 18px;
    margin: 0 auto;
}
.rating-star-box {
    text-align: center;
    width: 100%;
    position: relative;
}
.yello-star {
    color: #ffec0b;
    font-size: 14px;
}
.company-details-area {
    position: relative;
    width: 100%;
    padding: 60px 0px;
    background: #fff;
}
.about-one .about-img {
    position: relative;
    width: 100%;
}
.about-one .about-img .info-bx {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    padding: 12px 35px;
    right: 0;
}
.about-one .about-img .info-bx p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}
.content-bx{
	position: relative;
	width: 100%;
}
.title {
    font-size: 20px;
    max-width: 0px 0px 10px 0px;
    padding: 0px;
}
.site-button {
    background: #2ec4b6;
    color: #fff;
    padding: 12px 30px;
    display: inline-block;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    outline: none;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    line-height: 1.42857;
    border-radius: 3px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}
.about-one .content-bx .phone {
    color: #000;
    font-size: 24px;
    font-weight: 500;
}
.about-one .content-bx .phone i {
    font-size: 28px;
    margin-right: 8px;
}
.about-one .content-bx .phone {
    color: #000;
    font-size: 24px;
    font-weight: 500;
}
.stories-area .shape2 {
    left: 5%;
    top: 20%;
    position: absolute;
    z-index: -1;
}
.jump {
    -webkit-animation: jumpAni 7s linear infinite;
    animation: jumpAni 7s linear infinite;
}
.shape2 img {
    -webkit-animation: movebounce 5s linear infinite;
    animation: movebounce 5s linear infinite;
    width: 80px;
}
.shape3 img {
    -webkit-animation: moveleftbounce 5s linear infinite;
    animation: moveleftbounce 5s linear infinite;
    width: 100px;
}
.shape4 img {
    -webkit-animation: movescale 3s linear infinite;
    animation: movescale 3s linear infinite;
}
.shape5 img {
    -webkit-animation: movebounce 5s linear infinite;
    animation: movebounce 5s linear infinite;
}
.stories-area {
    position: relative;
    width: 100%;
    padding: 60px 0px;
}
.stories-image {
    border-radius: 0 115px 0 0;
    position: relative;
    z-index: 1;
    padding-left: 100px;
    padding-right: 100px;
}
.stories-image::before {
    top: 0;
    right: 45px;
    content: '';
    width: 287px;
    height: 186px;
    position: absolute;
    background-image: url(../img/dot-shape1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.stories-image::after {
    z-index: -1;
    right: 45px;
    content: '';
    width: 231px;
    bottom: -50px;
    height: 212px;
    position: absolute;
    background-image: url(../img/cross-line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.stories-content{
	position: relative;
	width: 100%;
}
.default-btn {
    border: 1px solid #08a9e6;
    background-color: #fff;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: var(--blackColor);
    display: inline-block;
    padding: 10px 30px;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    font-size: var(--fontSize);
    font-weight: 500;
}
.stories-area .shape3 {
    bottom: -80px;
    left: 7%;
}
.stories-area .shape2 {
    left: 5%;
    top: 20%;
    position: absolute;
    z-index: -1;
}
.stories-area .shape4 {
    bottom: 15%;
    right: 32%;
    top: auto;
    position: absolute;
    z-index: -1;
}
.stories-area .shape5 {
    bottom: -85px;
    left: auto;
    top: auto;
    right: 0;
    position: absolute;
    z-index: -1;
}
.stories-area .shape6 {
    left: auto;
    right: 7%;
    top: 15%;
    position: absolute;
    z-index: -1;
}
.comming-up-classes-area {
    background: #f2f5f9;
    position: relative;
    padding: 60px 0px;
}
.center-block {
    margin-right: 0;
    margin-left: 0;
    float: none;
    text-align: center;
}
.eductaional-tabs.nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.comming-up-classes-area .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.tabs-menu ul.eductaional-tabs li a {
    padding: 10px 20px 11px 20px;
    background: #d8dee6;
    border-radius: 3px;
    margin: 10px;
}
.tabs-menu ul li .active {
    color: #fff;
    border-radius: 25px;
}
.tabs-menu ul li .active {
    background: #ec296b !important;
    color: #fff !important;
}
.card {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-hidden {
    overflow: hidden !important;
}
.comming-up-classes-area .card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}
.comming-up-classes-area .text-danger {
    color: #f84242 !important;
}
.comming-up-classes-area .ribbon-top-left {
    top: -10px;
    left: -10px;
}
.comming-up-classes-area .ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    z-index: 10;
}
.comming-up-classes-area .ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 8px 0;
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    color: #fff;
    text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
    text-transform: capitalize;
    text-align: center;
}
.comming-up-classes-area .ribbon-top-left span {
    right: -8px;
    top: 30px;
    transform: rotate(-45deg);
}
.comming-up-classes-area .bg-danger {
    background-color: #dc3545 !important;
}
.comming-up-classes-area .power-ribbon span {
    position: absolute;
    display: block;
    width: 82px;
    padding: 8px 0;
    color: #fff;
    font: 500 16px/1 "Roboto", sans-serif;
    text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
    text-transform: capitalize;
    text-align: center;
}
.comming-up-classes-area .power-ribbon-top-left span {
    right: -5px;
    top: 1px;
    transform: rotate(-45deg);
}
.comming-up-classes-area .bg-warning {
    background-color: #ffa22b !important;
    color: #fff;
}
.comming-up-classes-area .power-ribbon span {
    position: absolute;
    display: block;
    width: 82px;
    padding: 8px 0;
    color: #fff;
    font: 500 16px/1 "Roboto", sans-serif;
    text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
    text-transform: capitalize;
    text-align: center;
}
.comming-up-classes-area .power-ribbon {
    width: 56px;
    height: 56px;
    overflow: hidden;
    position: absolute;
    z-index: 10;
}
.comming-up-classes-area .power-ribbon-top-left {
    top: -6px;
    left: -9px;
}
.comming-up-classes-area .text-warning {
    color: #ffc107 !important;
}
.comming-up-classes-area .comming-up-classes-area h3 {
    font-size: 20px;
}
.comming-up-classes-area .font-weight-semibold {
    font-weight: 600 !important;
    font-size: 24px;
}
.comming-up-classes-area .card-body + .card-body {
    border-top: 1px solid #e0e8f3;
}
.comming-up-classes-area .ps-5 {
    padding-left: 3rem !important;
}
.comming-up-classes-area .card-body + .card-body {
    border-top: 1px solid #e0e8f3;
}
.comming-up-classes-area .btn-block {
    display: block;
    width: 100%;
}

.comming-up-classes-area .btn {
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0.03em;
    font-size: 0.8125rem;
    min-width: 2.375rem;
}
.comming-up-classes-area .btn-primary {
    color: #fff;
    background-color: #ec296b;
    border-color: #ec296b;
}
.comming-up-classes-area .tabs-menu {
    position: relative;
    width: 100%;
    display: inline-block;
    margin-bottom: 25px;
}
.counter-features {
    position: relative;
    width: 100%;
    background: #1E2130;
    padding: 60px 0px;
}
.counter-features .counter-grid {
    position: relative;
    text-align: center;
    display: block;
    width: 100%;
}
.counter-grid-icon {
    position: relative;
    width: 100%;
    max-width: 70px;
    overflow: hidden;
    height: 70px;
    border-radius: 50%;
    margin: 0px auto;
    padding: 5px;
    line-height: 60px;
    background-color: #000;
}
.counter-grid-icon img {
    position: relative;
    width: 70%;
}
.counter-grid-content {
    position: relative;
    width: 100%;
    color: #fff;
    padding: 10px;
}
.counter-grid-text {
    font-size: 16px;
}
.counter-grid-number {
    color: #fff;
}
.ftc-section {
    position: relative;
    width: 100%;
    padding: 60px 0px;
}
.ftc-box {
    position: relative;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #f5f7f8;
    overflow: hidden;
}
.ftc-box h3 {
    position: relative;
    width: 100%;
    background: #f5f7f8;
    color: #000;
    line-height: 42px;
    margin: 0px 0px 15px 0px;
    padding: 0px;
    font-size: 20px;
}
.ftc-box ul {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px 15px 0px 30px;
    list-style: disc;
}
.ftc-box ul li {
    position: relative;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}
a.btn-explore {
    width: 80%;
    display: inline-block;
    background: #f5f7f8;
    margin-top: 10px;
    color: #000;
    border-radius: 4px;
    margin-bottom: 20px;
}
.our-instructors-section {
    position: relative;
    width: 100%;
    padding: 50px 0px;
    background: #fff;
}
.our-instructors-box {
    position: relative;
    width: 100%;
}
.our-instructors-thumbnail {
    position: relative;
    width: 100%;
}
.our-instructors-content {
    position: relative;
    width: 100%;
    padding: 15px;
    text-align: center;
}
.title a {
    text-decoration: none;
    color: #333;
}
.designation {
    font-size: 16px;
    padding: 0px;
}
.our-upcomming-events-section {
    position: relative;
    width: 100%;
    background: #f5f7f8;
}
.upcomming-events-pics12 {
    position: relative;
    width: 100%;
}
.upcomming-events-pics12 img {
    width: 100%;
}
.upcomming-events-text {
    position: relative;
    width: 100%;
    padding: 60px 0px 0px 0px;
}.upcomming-events-text ul {
    position: relative;
    width: 100%;
    list-style: none;
    margin-bottom: 15px;
}
.events-text-box12 {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    background: #fff;
    display: inline-block;
    padding: 10px;
}
.events-date12 {
    position: relative;
    width: 20%;
    float: left;
    border-right: 2px solid #f5f7f8;
    text-align: center;
}
.events-date12 p {
    position: relative;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
}
.events-date12 p span {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 800;
}
.events-text12 {
    position: relative;
    padding: 10px 15px;
    width: 80%;
    float: left;
}
.events-time12 {
    position: relative;
    width: 100%;
}
.events-time12 span {
    position: relative;
    color: #ccc;
}
.events-text12 p {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
}
.our-company-partner-section{
	position: relative;
	width: 100%;
	padding: 50px 0px;
}
.our-partner {
    position: relative;
    width: 100%;
    max-width: 125px;
    margin: 0 auto;
    text-align: center;
}
.download-area {
    position: relative;
    width: 100%;
    padding: 60px 0px;
    background: #f5f7f8;
}
.btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0a58ca;
    border-color: #0a53be;
}
.bg-bottom-right {
    background-size: auto;
    background-position: bottom right;
}
.background-image, [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.bg-title {
    background-color: var(--title-color) !important;
}
.img-left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 48%;
}
.img-left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top right;
}
.title-area .sec-title {
    margin-bottom: 15px;
    font-size: 33px;
}
.awards-section {
    position: relative;
    width: 100%;
}
.awards-pics12 {
    position: relative;
    width: 100%;
}
.awards-pics12-text {
    position: absolute;
    width: 150px;
    height: 80px;
    right: 80px;
    bottom: 60px;
    background: #1ca0f5;
    text-align: center;
}
.awards-pics12-text p {
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    color: #fff;
}
.awards-text12 {
    position: relative;
    width: 100%;
    padding: 50px 0px 0px 0px;
}
.blue-text-title {
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    color: #000;
}
.sec-area-titele {
    margin: 0px;
    padding: 0px;
    font-size: 24px;
    color: #000;
}
.awards-text12 ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.awards-text12 ul li {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.awards-text-box12 {
    position: relative;
    width: 100%;
    display: inline-block;
}
.awards-title {
    margin: 0px;
    padding: 0px;
    font-size: 20px;
    color: #000;
}
.awards-subtitle {
    color: #ccc;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}
.awards-text-box12 p {
    color: #000;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}
.awards-years {
    color: #000;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
    font-weight: 700;
}
.school-gallery-area {
    position: relative;
    width: 100%;
    padding: 50px 0px;
}
.school-gallery-box img {
    position: relative;
    width: 100%;
    height: 350px;
}
.school-gallery-box {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}
.faq-area {
    background-color: #f8e8e9;
    position: relative;
    width: 100%;
    padding: 50px 0px;
}
.faq-video {
    position: relative;
    border-radius: 5px;
    text-align: center;
    z-index: 1;
}
.faq-video .video-btn {
    display: inline-block;
    width: 80px;
    height: 80px;
    font-size: 60px;
    text-align: center;
    line-height: 90px;
    position: absolute;
    cursor: pointer;
    left: 50%;
    transition: var(--transition);
    top: 50%;
    z-index: 9;
    transform: translateY(-50%) translateX(-50%);
    background-color: var(--mainColor);
    border-radius: 50%;
    color: var(--whiteColor);
}
.faq-video .video-btn::after, .faq-video .video-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    transition: var(--transition);
    border-radius: 50%;
    border: 1px solid var(--whiteColor);
}
.faq-video .video-btn::after, .faq-video .video-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    transition: var(--transition);
    border-radius: 50%;
    border: 1px solid var(--whiteColor);
}
.top-categories-area {
    position: relative;
    width: 100%;
    padding: 60px 0px;
    background: #fff;
}
.categoryCard {
    margin-bottom: 15px;
    position: relative;
    width: 100%;
    min-height: 100px;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0px 0px 5px #ccc;
    display: inline-block;
}
.categoryCard_image {
    position: relative;
    width: 20%;
    float: left;
}
.categoryCard_image img {
    position: relative;
    width: 100%;
}
.categoryCard_content {
    padding: 10px 0px 0px 15px;
    width: 80%;
    position: relative;
    float: left;
}
.categoryCard_content h4 {
    position: relative;
    font-size: 18px;
    margin: 0;
}
.categoryCard_content span {
    position: relative;
    font-size: 14px;
    margin: 0px;
}
.download-app-area {
    position: relative;
    width: 100%;
    background: #f5f7f8;
    text-align: center;
}
.app-download-pic {
    position: relative;
    width: 100%;
    height: 100%;
}
.absolute-student {
    position: absolute;
    bottom: 0;
}
.app-download-source {
    position: relative;
    width: 100%;
    padding: 50px 0px;
    text-align: center;
}
.app-download-source h2 {
    position: relative;
    font-size: 20px;
    margin: 0px 0px 10px 0px;
    padding: 0px;
}
.best-features-section {
    position: relative;
    width: 100%;
    padding: 60px 0px;
}
.section-title h2 {
    font-family: "Nunito", sans-serif;
    font-size: 2rem;
    font-weight: 600;
}
.sectiontitle-design {
    display: inline-block;
    position: relative;
    margin-bottom: 8px;
}
.best-features-box {
    border-radius: 4px;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
}
.card-status-left {
    right: auto;
    bottom: 0;
    left: 0;
    height: 100%;
    position: absolute;
    width: 2px;
    border-radius: 7px 0 0 7px;
}
.bg-primary {
    background: #6964f7!important;
}
.bg-primary {
    background: #6964f7!important;
}

.best-features-img {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 20px;
    text-align: center;
}
.best-features-img img {
    width: 70%;
}
.best-features-text h4 {
    font-size: 20px;
    margin: 0px;
    padding: 0px;
}
.best-features-text p {
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}
.bg-pink {
    background-color: #f5127b !important;
    color: #fff !important;
}
.expert-team-section {
    position: relative;
    width: 100%;
    padding: 50px 0px;
    margin-top: 60px;
    background: #1E202D;
}
.expert-team-section .section-title h2 {
    color: #fff;
}
.expert-team-section .title a {
    text-decoration: none;
    color: #fff;
}
.expert-team-section .designation {
    color: #fff;
}
.fs-40 {
    font-size: 40px;
}
.upcomming-events-box {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 5px;
}
.upcomming-events-area {
    position: relative;
    width: 100%;
    background: #f9f9f9;
    padding: 50px 0px;
}
.upcomming-events-pics {
    position: relative;
    width: 100%;
    border-radius: 0px 40px 40px 0px;
    height: 100%;
    overflow: hidden;
}
.events-content {
    position: relative;
    width: 100%;
    padding: 30px;
}
.events-date {
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    padding: 6px 15px;
    background-color: #ff1949;
}
.events-date span {
    color: #fff;
    font-weight: 500;
}
.events-content h3 {
    margin-bottom: 5px;
    line-height: 1.3;
    font-size: 22px;
    font-weight: 700;
}
.events-content h3 a {
    color: #000;
}
.our-mission-box {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 5px #ccc;
    border-radius: 8px;
    overflow: hidden;
}
.our-mission-img {
    position: relative;
    width: 100%;
}
.our-mission-img img {
    position: relative;
    width: 100%;
}
.our-mission-text {
    position: relative;
    width: 100%;
    padding: 15px;
    text-align: center;
}
.our-mission-text h4 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    margin: 0px 0px 10px 0px;
}
.our-mission-text p {
    position: relative;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}
.btn-rm {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.our-mission-section {
    position: relative;
    width: 100%;
    background: #f5f7f8;
    padding: 60px 0px;
}
.home1-divider2 {
    background-image: url(../img/app-bg.jpg);
    -webkit-background-size: cover;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    padding: 145px 0 145px;
    position: relative;
}
.parallax {
    background-attachment: scroll;
    background-position: 50% 0px;
    z-index: 1;
    position: relative;
}
.app_grid {
    position: relative;
    width: 100%;
}
.app_grid h1 {
    margin-bottom: 5px;
    font-size: 26px;
}

.app_grid h1, .app_grid p {
    color: #ffffff;
}
.app_grid .apple_btn, .app_grid .play_store_btn {
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid rgba(255,255,255, .4);
    color: #ffffff;
    height: 75px;
    line-height: normal;
    margin-right: 30px;
    position: relative;
    -ms-text-align-last: auto;
    text-align: left;
    width: 210px;
}
.app_grid button:last-child {
    margin-right: 0;
}
.app_grid .apple_btn, .app_grid .play_store_btn {
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid rgba(255,255,255, .4);
    color: #ffffff;
    height: 75px;
    line-height: normal;
    margin-right: 30px;
    position: relative;
    -ms-text-align-last: auto;
    text-align: center;
    width: 300px;
}
.phone_img {
    position: absolute;
    right: 0;
    top: -40px;
}
.home1-divider2:before {
    background-color: rgba(36, 65, 231, .7);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.widget-title span {
    padding: 20px;
    background: #005a8c;
}
.widget-title {
    font-size: 14px !important;
    font-size: .875rem;
    font-weight: 400;
    color: #fff;
    background: #ccdee8;
    padding: 20px 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    overflow: hidden;
}
.image_backg {
    padding: 18px;
    background: #efefef;
    margin-bottom: 1.875rem;
}
.image_backg img{
width: 100%;
}
.h1, h1 {
    font-size: 32px;
    line-height: 1.167;
}
.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
.post-date-dark{
	position: relative;
	width: 100%;
	display: inline-block;
}
.post-date-dark ul {
    line-height: 1;
    margin: 0;
    padding: 0px;
}
.post-date-dark ul li:last-child {
    text-align: right;
    color: #ff0020;
    font-weight: 500;
}
.post-date-dark ul li {
    display: inline-block;
    width: 50%;
    float: left;
    list-style: none;
    font-size: 13px;
    color: #111;
}
.post-date-dark ul li span {
    display: inline-block;
    color: #333;
}
h3.title-medium-dark.mb-none {
    font-size: 16px;
    color: #000;
}
h3.title-medium-dark.mb-none a{
    font-size: 16px;
    color: #000;
}
a.img-opacity-hover {
    margin-right: 20px;
}
.footer-ad-wrap {
    background: #333;
    padding: 40px;
    text-align: center;
    display: block;
    overflow: hidden;
}
.sticky-wrapper {
    position: relative;
    box-shadow: 0px 0px 5px #ccc;
}
/*===================================
Tags page css start here
===================================*/
.tags-section{
	position: relative;
	width: 100%;
	padding: 50px 0px;
}
.tag-box {
    position: relative;
    width: 100%;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.tag-box p{
    position: relative;
    font-size: 13px;
    margin: 0px;
    padding: 0px;
    line-height: 16px;
}
.tag-subject-name {
    background: #e1e5e7;
    display: inline-block;
    padding: 0px 15px;
    color: #000;
    margin-bottom: 5px;
    border-radius: 4px;
}
.tag-title-name {
    position: relative;
    width: 100%;
}
.tag-title-name a {
    position: relative;
    font-size: 14px;
    display: inline-block;
    color: #9b9b9b;
    margin-right: 10px;
}
/*========================================
Users page css start here
=======================================*/
.users-section{
	position: relative;
	width: 100%;
	padding: 50px 0px;	
}
.user-info-box {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    padding: 5px;
    border-radius: 6px;
    background: #f9f9f9;
}
.user-info-box a{
	text-decoration: none;
	color: #000;
}
.user-gravatar48 {
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 10px;
}
.user-gravatar48 img {
    width: 50px;
    height: 50px;
}
.users-page .user-details {
    margin-left: 9px;
    width: calc(100% - 64px);
    line-height: 1.3;
}
.user-info-box .user-gravatar48+.user-details {
    margin-left: 8px;
    width: calc(100% - 48px);
}
.user-info-box .user-details>a {
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
}
.user-info-box .user-details .user-location {
    font-size: 14px;
    margin-bottom: 2px;
    display: block;
    line-height: 16px;
}
.user-info-box .user-details .-flair {
    line-height: 1;
    margin-bottom: 4px;
}
.user-info-box .user-tags {
    clear: both;
    font-size:12px;
    margin-left: 57px;
}
.user-info-box .user-tags a{
    clear: both;
    font-size:13px;
    color: #4699b9;
}
.reputation-score {
    display: block;
    line-height: 16px;
    font-size: 13px;
    font-weight: 600;
}
.user_name45{
    text-decoration: none;
    color: #4699b9!important;
}
/*========================================
Users page css start here
=======================================*/
.masterclass-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.dark-bg{
	background: #000;
}
.title-head-area{
	position: relative;
	width: 100%;
	color: #fff;
}
.title-head-area h1{
	color: #fff;
}
.chapter-box{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}
.chapter-box img{
	position: relative;
	width: 100%;
}
.chapter-box ul.chapter-list-items{
	margin: 0px;
	padding: 0px;
}
.chapter-box ul.chapter-list-items li{
	margin: 0px 0px 20px 0px;
	list-style: none;
	padding: 0px 0px 0px 40px;
	width: 100%;
	position: relative;
}
.list-icon {
    float: left;
    position: absolute;
    left: 0;
    top: 5px;
    color: #fda412;
    font-size: 26px;
}
.chapter-box ul.chapter-list-items li p {
    line-height: 24px;
    margin: 0px;
    padding: 0px;
    color: #fff;
    font-size: 20px;
}
.highlight.bold {
    color: #fda412;
    font-weight: 600;
}
.underline {
    text-decoration: underline;
}
.dpb-area{
	position: relative;
	background: #1D1200;
	width: 90%;
	min-height: 200px;
	margin: 0 auto;
	padding: 25px;
	border-radius: 15px;
}
.dpb-area-text {
    position: relative;
    width: 100%;
}
.dpb-area-text h1 {
    color: #fda412;
}
.dpb-area-text p {
    color: #fff;
    margin: 0px 0px 10px 0px;
    padding: 0px;
    font-size: 16px;
}
.dpb-area-picture {
    position: relative;
    width: 100%;
}
.dpb-area-picture img{
    position: relative;
    width: 100%;
}
.oblw-text-area {
    position: relative;
    width: 100%;
    padding: 20px;
    text-align: center;
}
.oblw-text-area h1{
    position: relative;
    color: #fff;
}
.highlight{
	color: #fda412;
}
.oblw-text-area p{
	font-size: 16px;
    color: #fff;
}
.oblw-text-area h2{
    position: relative;
    color: #fff;
    font-size: 20px;
}
.bold{
	font-weight: 600;
}
.moving-container {
    position: relative;
    width: 100%;
    background-image: linear-gradient( 60deg ,#f79533,#f37055,#ef4e7b,#a166ab,#5073b8,#1098ad,#07b39b,#6fba82) !important;
    -webkit-animation: animatedgradient 3s ease infinite alternate;
    animation: animatedgradient 3s ease infinite alternate;
    background-size: 300% 300%;
    border-radius: 7px;
    padding: 25px;
}
.moving-heading-title {
    color: #FFFFFF;
    font-family: "Poppins", Sans-serif;
    font-size: 32px!important;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2em;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}
.wdp-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.wdp-img-box{
	position: relative;
	width: 100%;	
	text-align: center;
}
.wdp-img-box img{
	position: relative;
	width: 70%;	
	margin:0px auto;
}
.wdp-text-box{
	position: relative;
	width: 100%;	
}
.aditional-feature-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.aditional-feature-section h1{
		color: #fff;
}
.aditional-feature-box {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 15px;
    background: #061220;
    border-radius: 6px;
    margin-bottom: 10px;
}
.aditional-feature-icon {
    font-size: 24px;
    color: #fda412;
    display: inline-block;
    float: left;
    margin-right: 15px;
    position: relative;
    top: 8px;
}
.aditional-feature-name {
    font-size: 24px;
    color: #fff;
    display: inline-block;
    float: left;
    margin: 0px;
}
.font-18{
	font-size: 18px;
	text-align: center;
	color: #fff;
}
.uppercase{
	text-transform: uppercase;
	color: #FFFFFF;
    font-family: "Poppins", Sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2em;
}
.rating_box{
	position: relative;
	margin: 0 auto;
	text-align: center;
}
.space-top-25{
	margin-top: 25px;
}
.major-secrets{
	position: relative;
	width: 100%;
	padding: 60px  0px;
}
.major-secrets-box {
    position: relative;
    width: 100%;
    background: #251318;
    padding: 25px;
    min-height: 510px;
    border-radius: 6px;
}
.major-secrets-box h1{
    font-size: 62px!important;
    font-weight: 800!important;
}
.major-secrets-box p{
    font-size: 20px!important;
    color: #fff;
}
.moving-container p{
	font-size: 20px;
	color: #fff;
	margin: 0px;
	padding: 0px;
}
.shailendra-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.shailendra-picture{
	position: relative;
	width: 100%;	
}
.shailendra-picture img{
	position: relative;
	width: 100%;	
}
.shailendra-name{
	position: relative;
	width: 100%;	
}
.shailendra-name h1{
	font-size: 42px;
}
.shailendra-name h2{
	font-size: 28px;
}
.shailendra-name p{
	font-size: 20px;
	color: #fff;
}
.shailendra-section .aditional-feature-box{
	text-align: center;
}
.shailendra-section .aditional-feature-box .aditional-feature-icon {
    margin-bottom: 10px;
    display: block;
    width: 100%;
    font-size: 32px;
}
.shailendra-section .aditional-feature-box .aditional-feature-name {
    line-height: 30px;
}
.font-16 {
    font-size: 18px!important;
}
.but-wait-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.but-wait-text{
	position: relative;
	width: 100%;
	text-align: center;	
}
.but-wait-text h1{
	font-size: 40px;
	font-weight: 800;
	text-transform: uppercase;
}
.but-wait-text{
	font-size: 32px;
	font-weight: 600;
	text-transform: capitalize;
}
.explr {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    max-width: 80%;
    padding: 20px;
    background: #000;
    border-radius: 6px;
    border: 1px dashed #ccc;
    margin-bottom: 25px;
}
.explr p{
	font-size: 20px;
	color: #fff;
}
.book-cover-area{
	position: relative;
	width: 100%;
	background: #000;
	padding: 25px;
	max-width: 80%;
	margin: 0 auto;
	border-radius: 6px;
	margin-bottom: 30px;
}
.book-cover-picture{
	position: relative;
	width: 100%;
	text-align: center;
}
.book-cover-picture img{
	position: relative;
	width: 80%;
	margin: 0 auto;
	text-align: center;
}
.book-cover-title-text{
	position: relative;
	width: 100%;
}
.boot-has-tag {
    border-radius: 6px;
    font-size: 24px;
    background: #fee301;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 600;
    color: #fff;
}
.book-script-name {
    margin-top: 15px;
    display: block;
    color: #fff;
}
.book-cover-title-text ul{
	margin: 0px;
	padding: 0px;
}
.book-cover-title-text ul li{
list-style: disc;
}
.book-cover-title-text ul li p{
	color: #fff;
}
.book-cover-price {
    font-weight: 600;
    float: right;
    font-size: 28px;
    font-style: italic;
}
.but-wait-section .chapter-box{
	border:2px solid #ffc107 ;
}
.promotional-area {
    margin: 0 auto;
    position: relative;
    width: 100%;
    text-align: center;
    max-width: 80%;
}
.promotional-area h1 {
    font-size: 42px!important;
    font-weight: 800!important;
}
.promotional-area h2{
	font-size: 32px;
}
.promotional-area h3 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 40px;
}
.promotional-area h4{
	font-size: 32px;
}
.sell_price {
    color: #5CBC33;
    font-family: "Poppins", Sans-serif;
    font-size: 60px;
    font-weight: 800;
}
.answer-question-section{
	position: relative;
	width: 100%;
	color: #fff;
	text-align: center;
	padding: 60px 0px;
}
.answer-question-section h1{
	position: relative;
	color: #fff;
}
.answer-question-section p{
	position: relative;
	color: #fff;
}
.answer-question-img{
	position: relative;
	width: 100%;	
}
.answer-question-img img{
	position: relative;
	width: 100%;	
}
.answer-question-text-box {
    position: relative;
    width: 100%;
    text-align: left;
    padding: 100px 0px 0px 0px;
}
.answer-question-text-box h2 {
    position: relative;
    font-size: 32px!important;
    color: #fda412;
    margin: 0px 0px 15px 0px;
}
.answer-question-text-box p{
	position: relative;
	font-size: 20px;
	padding-left: 30px;
	color: #fff;
	margin: 0px 0px 15px 0px;	
}
.answer-question-text-box p .question-icon {
    position: absolute;
    left: 0;
    color: #fda412;
}
.faqs-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.faqs-text-area{
	position: relative;
	width: 100%;
	max-width: 80%;
	margin: 0 auto;
	background: #000;
	border-radius: 10px;
	padding:20px;
}
.faqs-text-area h1{
	position: relative;
	color: #fff;
	font-size: 42px;
	font-weight: 700;
}
.faqs-text-area .accordion-button{
	font-size: 24px;
	color: #fff;
}
.faqs-text-area p{
	position: relative;
	color: #fff;
	font-size:18px;
	font-weight: 500;
}
.faqs-text-area .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: transparent;
}
.accordion-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
}
.faqs-text-area .accordion-button{
	padding: 5px 15px;
}
.selendra-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.selendra-picture-area{
	width: 100%;
	max-width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 25px;
}
.selendra-picture-area img{
	width: 100%;
}
.selendra-text-area p{
	color: #fff;
	font-size: 20px;
	margin: 0px 0px 20px 0px;
}
/*========================================
Tagged page css start here
=======================================*/
.tags-section{
	position: relative;
	width: 100%;
	padding: 50px 0px;
}
.tagged-top-area{
	position: relative;
	width: 100%;		
}
.tagged-top-title{
	position: relative;
	width: 100%;	
	display: inline-block;
}
.tagged-top-title h1{
	font-size: 24px;
	margin: 0px;
	padding: 0px;
	color: #000;
	float: left;
}
.tagged-top-title a {
    font-size: 16px;
    display: inline-block;
    float: right;
    color: #fff;
    background: #0d5ef4;
    padding: 0px 15px;
    line-height: 26px;
    border-radius: 6px;
}
.tagged-top-text{
	position: relative;
	width: 100%;
}
.tagged-top-text p{
	position: relative;
	font-size: 14px;
	line-height: 24px;
	margin: 0px;
	padding: 0px;
}
.tagged-top-linked{
	position: relative;
	width: 100%;
	display: inline-block;
}
.tagged-top-linked a{
	position: relative;
	font-size: 13px;
	margin-right: 25px;
	display: inline-block;
}
.tagged-side-left{
	position: relative;
	width: 100%;
	padding-top: 25px;
	display: inline-block;
}
.tagged-side-left-top{
	position: relative;
	width: 100%;
	border-bottom: 1px solid #ccc;
	display: inline-block;	
}
.tagged-side-left-top span{
	position: relative;
	display: inline-block;	
	font-size: 18px;
	color: #000;
}
.tagged-side-left-top ul{
	position: relative;
	float: right;
	margin: 0px 0px 5px 0px!important;
	padding: 0px;
	float: right;
}
.tagged-side-left-top ul li{
	position: relative;
	list-style: none;
}
.tagged-side-left .nav-link.active {
    color: #495057;
    background-color: #ccc!important;
    border-color: #dee2e6 #dee2e6 #fff;
}
.tagged-side-left .nav-link {
    color: #495057;
    background-color: #fff!important;
    border-color: #dee2e6 #dee2e6 #fff;
}
.tagged-side-left .nav-tabs .nav-link{
	border-bottom: 1px solid #ccc!important;
}
.tagged-side-left .tab-content{
	position: relative;
	width: 100%;
}
.vav-area{
	position: relative;
	width: 100%;	
}
.vav-area span{
	position: relative;
	display: block;
	line-height: 24px;
	font-size: 14px	;
}
.tagged-text-list4u{
	position: relative;
	width: 100%;
}
.tagged-text-list4u h2{
	position: relative;
	font-size: 22px;
	font-weight: 400;
	margin:0px 0px 10px 0px ;
}
.tagged-text-list4u p{
	position: relative;
	font-size: 14px;
}
.subject-linled-area{
	position: relative;
	width: 100%;
	display: inline-block;
}
.subject-linled-area ul{
	position: relative;
	margin: 0px;
	padding: 0px;
	display: inline-block;
}
.subject-linled-area ul li{
	position: relative;
	list-style: none;
	margin-right: 10px;
	display: inline-block;
}
.subject-linled-area ul li a{
	position: relative;
	background: #ccc;
	padding: 0px 15px;
	border-radius: 4px;
	line-height: 24px;
	display: inline-block;
}
.subject-linled-area .tagget-timed{
	position: relative;
	float: right;
	display: inline-block;
}
.seprator{
	border-bottom: 1px solid #ccc;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.tagged-side-right {
    background-color:#fdf7e2;
    border-color:#f1e5bc;
}
.tagged-side-right-list{
	position: relative;
	width: 100%;
}
.tagged-side-right-list ul{
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.tagged-side-right-list ul li {
    position: relative;
    width: 100%;
    list-style: none;
    padding: 3px 5px 5px 35px;
    margin-bottom: 5px;
}
.tagged-side-right-list ul li i {
    position: absolute;
    left: -20px;
    top: 5px;
}
.tagged-side-right-list ul li a {
    position: relative;
    color: #000;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}
li.header-li {
    line-height: 36px;
    background: #f9ecc0;
    font-size: 20px;
}
.recommended-courses-list {
    position: relative;
    width: 100%;
    background: #79a7fd;
    border: 3px solid #79a7fd;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
}
.recommended-courses-list h2{
    position: relative;
    font-size: 24px;
    color: #fff;
}
.recommended-courses-list p{
    position: relative;
    font-size: 15px;
    color: #fff;
}
.recommended-courses-list ul{
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    background: #fff;
}
.recommended-courses-list ul li{
    position: relative;
    width: 100%;
    padding: 5px 5px 5px 30px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0px 0px 5px  #ccc;
}
.recommended-courses-list ul li img{
    position: absolute;
    left: 0;
    width: 25px;
}
.course-review-point{
	position: relative;
	width: 100%;
	display: inline-block;
}
.course-review-point{
	position: relative;
	width: 100%;
	display: inline-block;
}
.course-review-point-digit{
	font-size: 13px;
	line-height: 14px;
	display: inline-block;
}
.course-review-point ul{
	position: relative;
	float: right;
	width: auto!important;
	margin: 0px;
	padding: 0px;
}
.course-review-point ul li{
	position: relative;
	list-style: none;
	width: auto!important;
	padding: 0px!important;
	box-shadow: none!important;
	margin: 0px!important;
}
.recommended-courses-list ul li a {
    font-size: 14px;
    color: #0d5ef4;
    display: inline-block;
    line-height: 16px;
    font-weight: 600!important;
}
.course-review-point ul li i {
    position: relative;
    font-size: 12px;
    color: #ffde3e;
}
/*========================================
Questions page css start here
=======================================*/
.questions-section{
	position: relative;
	width: 100%;
	padding: 50px 0px;
}
.questions-section code{
	color: #2f3337;
	background: #f6f6f6;
}
.questions-section .tagged-top-area{
	border-bottom: 1px solid #ccc;
	margin-bottom: 15px;
}
.questions-side-left{
	position: relative;
	width: 100%;
}
.question-code-box {
    position: relative;
    width: 100%;
    padding: 20px;
    height: 500px;
    color: #2f3337;
    background: #f6f6f6;
    overflow-y: scroll;
}
.codejs-keyword{
	color: #015493;
}
.codejs-title{
color: #b75301;
}
.codejs-string{
color: #567a0d;
}
.codejs-variable {
    color: #567a0d;
}
.code-box{
	position: relative;
	width: 100%;
	background:#f9f9f9 ;
	padding: 20px;
}
.questions-text-box4u{
	position: relative;
	width: 100%;
	padding: 15px;
}
.popular-link-name{
	position: relative;
	width: 100%;
	display: inline-block;
}
.popular-link-name{
	position: relative;
	width: 100%;
	padding-top: 15px;
	display: inline-block;
}
.popular-link-name ul{
	position: relative;
	width: 100%;
	display: inline-block;
}
.popular-link-name ul li{
	position: relative;
	display: inline-block;
	margin-right: 10px;
}
.popular-link-name ul li a{
	display: inline-block;
	background: #f9f9f9;
	padding: 0px 15px;
	font-size: 14px;
	border-radius: 4px;
	line-height: 24px;
}
.related_questions2u{
	position: relative;
	width: 100%;
	padding: 15px;
	display: inline-block;
}
.related_questions2u h2{
	position: relative;
	font-size: 24px;
}
.related_questions2u ul {
    position: relative;
    width: 100%;
    padding: 0px;
    display: inline-block;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.related_questions2u ul li{
	position: relative;
	width: 100%;
	padding: 5px;
	display: block;
	border-bottom: 1px solid #ccc;
	margin-right: 10px;
}
.related_questions2u ul li:last-child{
	border-bottom: 0px solid #ccc;
}
.related_questions2u ul li a {
    color: #000;
    font-size: 16px;
    line-height: 24px;
}
.rq-no {
    display: inline-block;
    background: #198754;
    color: #fff;
    margin-right: 15px;
    font-size: 14px;
    padding: 2px 15px;
    border-radius: 4px;
}
.hero-slider-7 .container{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	right: 0;
	padding: 100px 0px 0px 0px;
}
.all-categories-area{
	position: relative;
	width: 100%;
	padding: 40px 0px 50px 0px;
}
.more-about-us-sec{
	position: relative;
	width:100%;
	background: #f2f7f5;
}
.more-about-us-sec .img-box3{
	margin-top: -50px;
}
nav.footer-navbar {
    position: fixed;
    width: 100%;
    z-index: 9;
    background: #fff;
    display: none;
    padding: 10px 0px 0px 0px;
    right: 0;
    left: 0;
    box-shadow: 0px 0px 7px #eaeced;
    bottom: 0;
}
nav.footer-navbar ul {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
nav.footer-navbar ul li {
    position: relative;
    width: 25%;
    float: left;
    text-align: center;
}
nav.footer-navbar ul li .program-icon {
    position: relative;
    display: block;
    color: #c72123;
    font-size: 20px;
}
span.program-name {
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}
.anim-link{
    background-image: linear-gradient( 60deg ,#f79533,#f37055,#ef4e7b,#a166ab,#5073b8,#1098ad,#07b39b,#6fba82) !important;
    -webkit-animation: animatedgradient 3s ease infinite alternate;
    animation: animatedgradient 3s ease infinite alternate;
    background-size: 300% 300%;
    border-radius: 7px;
    display: inline-block;
    padding: 10px 25px;
    text-align: center;
    color: #fff;
}
.anim-link .anim-heading-title{
    font-size: 24px;
    margin: 0px 0px 10px 0px;
    padding: 0px;
}

@keyframes animatedgradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
     10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
.anim-link .anim-title-text{
    font-size: 16px;
    margin: 0px;
    padding: 0px;
}
.app-on{
	display: block;
	margin-bottom: 10px;
	
}
.app-on img{

position: relative;
width: auto;
height: 40px;
}
.secondry-footer{
	position: relative;
	width: 100%;
	padding: 10px 0px;
	border-top: 1px solid #ccc;
}
.secondry-footer-text{
	position: relative;
	width: 100%;
	text-align: center;
}
.secondry-footer-text h2{
	position: relative;
	font-size: 20px;
	color: #fff;
	margin: 0px;
	padding: 0px;

}
.suscribe-linl {
    color: #fff!important;
    display: inline-block;
    background: #0d5ef4;
    padding: 5px 15px;
    font-size: 13px;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-block;
}
.secondry-footer-text ul{
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.secondry-footer-text ul li {
    position: relative;
    list-style: none;
    padding: 5px 10px;
    display: inline-block;
}
.secondry-footer-text ul li a{
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.secondry-footer-text p{
	position: relative;
	color: #fff;
	font-size: 14px;
	margin: 0px;
	padding: 0px;
}
a.footer-social-media {
    margin: 5px;
    color: #fff;
    font-size: 16px;
}
ul.toc.chapters img{
    height: 25px;
}
.open-sidebar-menu {
    right: 30px;
    top: 20px;
    background: #0d5ef4;
    border: none;
    color: #fff;
    width: 40px;
    padding: 5px;
    position: absolute;
    display: inline-block;
}
.sidebar-menu {
    background: #f2f7f9;
    position: absolute;
    right: 5px;
    top: 150px;
    padding: 10PX;
    z-index: 99;
    width: 200px;
}
.close-sidebar-menu {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 4px;
    background: #0d5ef4;
    border: 1px solid #333;
    color: #fff;
}
.sidebar-menu {
    background: #f2f7f9;
    position: absolute;
    right: 5px;
    display: none;
    top: 150px;
    padding: 30px 10px 10px 10px;
    z-index: 99;
    width: 200px;
    box-shadow: 0px 0px 5px #ccc;
}
.sidebar-menu ul{
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.sidebar-menu ul li{
	position: relative;
	width: 100%;
	margin-bottom: 5px;
	display: block;
	line-height: 28px;
}
.sidebar-menu ul li a{
	position: relative;
	font-size: 16px;
	color: #000;
	text-decoration: none;
}
.blog-header{
	background: #000;
}
.header-dark-bg {
    background: #484848;
    position: relative;
    width: 100%;
}
.main-menu.header-dark-bg>ul>li>a {
    padding:10px 15px;
    color: #fff;
    text-transform: uppercase;
}
.ads-banner {
    padding: 10px 0px;
    position: relative;
    text-align: right;
}
.main-menu.header-dark-bg ul li {
    border-right: 1px solid #746f6f;
}
.main-menu.header-dark-bg>ul>li {
    margin: 0;
}
.hot-topic-text {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px;
    background: #efefef;
}
.hot-topic-text h1 {
    text-transform: uppercase;
    font-size: 17px;
    display: inline-block;
    position: relative;
    background: #141d4a;
    margin: 0px!important;
    color: #fff;
    padding: 0px;
    line-height: 32px;
    font-weight: 500;
    padding: 0px 15px;
}
.marquee-text{
	position: relative;
	width: 50%;
	padding-left: 25px;
	display: inline-block;
}
.hot-search {
    position: relative;
    float: right;
    width: 20%;
    display: inline-block;
}
.hot-search input {
    padding: 3px 15px;
    position: relative;
    width: 100%;
    height: 34px;
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
}
.hot-search button {
    background: transparent;
    position: absolute;
    right: 0px;
    top: 8px;
    display: inline-block;
    border: none;
}
.hot-search form{
    position: relative;
    margin: 0px;
    padding: 0px;
}

.blog-area{
	position: relative;
	width: 100%;
	padding: 50px 0px;
	background: #efefef;
}

.blog-area .container{
	background: #fff;
}
.btn-primary {
    color: #fff;
    background-color: #005a8c;
    border-color: #005a8c;
    margin-bottom: 10px;
}
.news-tab {
    position: relative;
    width: 100%;
    padding: 15px 0px 0px 0px;
    display: inline-block;
    margin-bottom: 15px;
}
.news-tab ul{
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: inline-block;
}
.news-tab ul li{
    position: relative;
	float: left;
    margin: 0px 10px 0px 0px;
}
.news-tab ul li a{
    position: relative;
    display: inline-block;
    background: #005a8c;
    color: #fff;
    padding: 5px 15px;
}
.posted_by {
    display: inline-block;
    margin: 10px 0px;
    text-transform: uppercase;
}
.posted_date4n {
    display: inline-block;
    margin: 10px 0px;
    text-transform: capitalize;
}
.news_subtitle{
	font-size: 24px;
}
.hightlight_news {
    background: #f2f5f8;
    padding: 10px;
    position: relative;
}
.hightlight_news:before {
    background: #000;
    content: '';
    top: 0px;
    left: 0;
    position: absolute;
    width: 3px;
    height: 100%;
}
.comment-for-news{
	position: relative;
	width: 100%;
	padding: 15px;
	background: #f5f5f5;
}
..comment-for-news .form-group label{
	position: relative;
	width: 100%;
	display:block;
	margin-bottom: 10px;
}
.comment-for-news .form-group{
	position: relative;
	width: 100%;
	margin-bottom: 10px;
}
.comment-for-news .form-group input{
	position: relative;
	width: 100%;
	background: #fff;
	height: 40px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.comment-for-news .form-group textarea{
	position: relative;
	width: 100%;
	background: #fff;
	height:110px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.terms input[type="checkbox"] {
    position: relative;
    width: 16px!important;
    height: 16px!important;
    visibility: inherit;
    opacity: 1;
    display: inline-block;
    margin-right: 4px;
    border: 1px solid #ccc;
}
.pc {
    text-transform: uppercase;
    position: relative;
    width: auto;
    background: #0d5ef4;
    color: #fff;
    border: none;
    padding: 5px 15px;
}
.related-post-box {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}
.related-post-box img{
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}
.related-post-box h2{
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0px 0px 5px 0px;
}
.related-post-box a {
    position: relative;
    font-size: 15px;
    color: #000;
    line-height: 20px;
    margin: 0px;
    text-decoration: none;
}
#login-form {
    width: 500px;
    text-align: center;
    box-sizing: border-box;
    border: 5px solid #0d5ef4;
    position: fixed;
    top: 90px;
    left: 0;
    border-radius: 10px;
    right: 0;
    background: #fff;
    display: none;
    z-index: 99;
    margin: 0 auto;
}
#login-form .form-group{
	margin: 0px 0px 5px 0px;
}
#signin-form{
    width: 500px;
    text-align: center;
    box-sizing: border-box;
    border: 5px solid #0d5ef4;
    position: fixed;
    top: 90px;
    left: 0;
    border-radius: 10px;
    right: 0;
    background: #fff;
    display: none;
    z-index: 99;
    margin: 0 auto;	
}
#signin-form .form-group{
	margin: 0px 0px 5px 0px;
}
#closeLoginForm {
    height: 30px;
    position: absolute;
    top: -15px;
    right: -15px;
    display: inline-block;
    width: 30px;
    line-height: 30px;
    font-weight: 800;
    z-index: 99;
    color: #fff;
    background: #0d5ef4;
    border: none;
    border-radius: 50%;
}
#closeSigninForm {
    height: 30px;
    position: absolute;
    top: -15px;
    right: -15px;
    display: inline-block;
    width: 30px;
    line-height: 30px;
    font-weight: 800;
    z-index: 99;
    color: #fff;
    background: #0d5ef4;
    border: none;
    border-radius: 50%;
}
.signin-text {
    position: relative;
    width: 100%;
    padding: 25px;
}
.login-text {
    position: relative;
    width: 100%;
    padding: 25px;
}
.login-text input{
    position: relative;
    width: 100%;
    height: 40px;
}
.signin-text input{
    position: relative;
    width: 100%;
    height: 40px;
}
.signin-text h2{
    position: relative;
    font-size: 24px;
    margin: 0px 0px 10px 0px;
}
.login-text h2{
    position: relative;
    font-size: 24px;
    margin: 0px 0px 10px 0px;
}
.btn-submit {
    height: 40px;
    background: #0d5ef4;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 15px;
    border: none;
}
.login-box{
	position: relative;
	width: 100%;
}
.login-box img{
	position: relative;
	width: 100%;
	height: 50px;
}
.login-box label{
	position: relative;
	display: inline-block;
	text-align: left;
}
.login-box a{
	position: relative;
	display: inline-block;
	text-align: left;
}
.signin-box{
	position: relative;
	width: 100%;
}
.signin-box img{
	position: relative;
	width: 100%;
	height: 50px;
}
.signin-box label{
	position: relative;
	display: inline-block;
	text-align: left;
}
.signin-box a{
	position: relative;
	display: inline-block;
	text-align: left;
}
#closeCategoriesList {
    height: 30px;
    position: absolute;
    top: -15px;
    right: -15px;
    display: inline-block;
    width: 30px;
    line-height: 30px;
    font-weight: 800;
    z-index: 99;
    color: #fff;
    background: #0d5ef4;
    border: none;
    border-radius: 50%;
}
#closeOthersList {
    height: 30px;
    position: absolute;
    top: -15px;
    right: -15px;
    display: inline-block;
    width: 30px;
    line-height: 30px;
    font-weight: 800;
    z-index: 99;
    color: #fff;
    background: #0d5ef4;
    border: none;
    border-radius: 50%;
}
#categories-list{
    width: 500px;
    text-align: center;
    box-sizing: border-box;
    border: 5px solid #0d5ef4;
    position: fixed;
    top: 90px;
    left: 0;
    border-radius: 10px;
    right: 0;
    background: #fff;
    display: none;
    z-index: 99;
    margin: 0 auto;	
}
#others-list{
    width: 500px;
    text-align: center;
    box-sizing: border-box;
    border: 5px solid #0d5ef4;
    position: fixed;
    top: 90px;
    left: 0;
    border-radius: 10px;
    right: 0;
    background: #fff;
    display: none;
    z-index: 99;
    margin: 0 auto;	
}
.others-box{
	position: relative;
	width: 100%;
}

.others-box ul{
	position: relative;
	width: 100%;
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.others-box ul li{
	position: relative;
	width: 100%;
	padding: 5px 15px;
	text-align: left;
	list-style: none;
}
.others-box ul li a{
	position: relative;
	text-decoration: none;
	color: #000;
	font-size: 16px;
}
.categories-box{
	position: relative;
	width: 100%;
}

.categories-box ul{
	position: relative;
	width: 100%;
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.categories-box ul li{
	position: relative;
	width: 100%;
	padding: 5px 15px;
	text-align: left;
	list-style: none;
}
.categories-box ul li a{
	position: relative;
	text-decoration: none;
	color: #000;
	font-size: 16px;
}
ul li{
list-style: none;
}

/*============================================
Page articles css start here
=============================================*/
.page-articlses-section{
	position: relative;
	width: 100%;
	padding: 40px 0px;
	background: #f5f7f8;
}
.google_content_ads {
    background-color: #fff;
    border-radius: 6px;
}
.article-list {
    padding: 0px !important;
    background-color:#f4f4f4!important;
    border: 0px solid #eee !important;
}
.qa_widget {
    background-color:#fff;
}
.tutorial-toc {
	position: relative;
	width: 100%;
    background-color:#fff;
    border-radius: 12px;
    overflow: hidden;
}
.tutorial-toc {
    border-radius: 0.75rem;
}
ul.toc li.heading {
    font-size: 24px !important;
    font-weight: bold;
    text-align: left;
    list-style: none;
    margin: 10px 0px;
}
.tutorial-toc ul {
    overflow: hidden;
    display: grid;
    gap: 0;
    margin: 0px;
    padding: 0;
}
.tutorial-toc a:hover, .tutorial-toc a.active {
    background-color: var(--clr-accent-100);
}
ul.chapters>li a {
    padding: 2px 4px !important;
    justify-content: normal;
}
.tutorial-toc a {
    transition: .3s ease;
    display: inline-block;
    width: 100%;
    border-radius: 100vmax;
    padding: 0.3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tutorial-toc li {
    padding: 0 1rem;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 0.65rem;
}
.tutorial-toc li.heading, .tutorial-toc li.sreading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-weight: 700;
    background-color: var(--clr-accent-800);
    padding: 1.4rem 1rem;
}
.qa_post.qa_list a{
	color: #303030;
	text-decoration: none;
}
/*============================================
Page ebooks css start here
=============================================*/
.ebooks-page-section-one{
	position: relative;
	width: 100%;
	padding: 40px 0px;
}
.ebooks-page-title-box{
	position: relative;
	width: 100%;
	text-align: center;
}
.ebooks-page-title-box h1{
	position: relative;
	color: #303030;
	font-size: 36px;
	font-weight: 800;
}
.ebooks-page-title-box h4{
	position: relative;
	color: #303030;
	font-size: 20px;
	font-weight: 600;
}
.ebooks-page-section-one .tab-content {
    overflow-x: hidden;
    padding: 30px;
    background-color: #f4f4f4;
    border-radius: 0.875rem;
    border: 1px solid #04af2f;
}
.ebooks-slide-item {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.ebooks-slide-item .video-course__heart-button {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 20px;
    min-width: auto;
    height: 20px;
    border: 1px solid transparent;
    border-radius: 100vmax;
}
.ebooks-slide-item .flex-group{
	display: flex;
	width: 90%;
	margin:0 auto ;
	position: relative;
}
.ebooks-slide-item .flex-group p{
	display: flex;
	width: 50%;
	position: relative;
}
.video-course__text-wrapper{
	position: relative;
	width: 90%;
	margin:0 auto ;
	padding: 10px;
}
.video-course__text-wrapper a{
	position: relative;
	font-size: 20px;
	font-weight: 600;
}
.ebooks-slide-item .icon-button {
    cursor: pointer;
    border: 0;
    background-color: #fff;
    min-width: 45px;
    height: 45px;
    border-radius: 0.5rem;
    display: grid;
    place-content: center;
    transition: 0.25s ease;
    box-shadow: 0px 2.45097px 9.80386px rgba(75, 75, 75, 0.08);
}
.video-course__img-wrapper {
    display: grid;
    place-content: center;
    background-color:#cfe9d0;
    width: 80%;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
    margin-inline: auto;
    border-radius: 0.5rem;
}
.video-course__img-wrapper img{
    width: 80%;
    border-radius: 8px;
}
.ebook-price4u-box {
    position: relative;
    width: 88%;
    margin: 0 auto;
}
.ebook_sell_price {
    font-size: 20px;
    font-weight: 600;
}
.video-course__content {
    padding: 13px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.video-course__footer {
    font-size: 18px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    border-top: 1px solid #ccc;
}
.video-course__footer .button {
    cursor: pointer;
    background-color: #303030;
    border: 2px solid transparent;
    color: #fff;
    border-radius: 0.5rem;
    padding-block: 0.5em;
    padding-inline: 1em;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 42px;
    justify-content: center;
}
.slide-box {
   position: relative;
   width: 100%;
   background: #f5f5f5;
   padding: 10px;
   margin: 0 auto;
   max-width: 1024px;
   margin-bottom: 25px !important;
}


.ebooks-top-related-section{
	padding: 70px 0px;
    color: white;	
    background: #06141c;
}
.ebooks-top-related-section .text-left{
	text-align: left;
	color: #fff;
}
.ebooks-top-related-section .text-left h2{
	font-size: 32px;
	color: #fff;
}
.ebooks-top-related-section .text-left p{
	font-size: 16px;
	color: #fff;
	max-width: 500px;
}
.ebooks-top-related-img-box{
	position: relative;
	width: 100%;
}
.ebooks-top-related-list{
	position: relative;
	width: 100%;
	border-radius: 15px;
	padding: 20px;
	background: #1e2b32;
}
.ebooks-top-related-box {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}
.ebooks-top-related-box img.ebook_icon4u{
	width: 40px;
	float: left;
	margin-right: 10px;
}
.ebbok_naming4u {
    display: inline-block;
    font-size: 18px;
    color: #303030;
    position: relative;
}
.ebbok_naming4u a {
    display: inline-block;
    width: 100%;
    color: #303030;
}
.ebook-img-name-box{
	position: relative;
	width: 100%;
	display: inline-block;
}
.ebook-text-box {
    position: relative;
    width: 100%;
}
.ebook-text-box p{
    position: relative;
    color: #000;
    font-size: 16px;
}
.ebook-footer4u-box{
	position: relative;
	width: 100%;
	display: inline-block;	
}
.ebook_price4u {
    font-size: 18px;
    float: left;
    color: #000;
    font-weight: 600;
}
.btn-buynow4ebook {
    float: right;
    background: #0d5ef4;
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
    margin-top: -7px;
}
.btn-gam {
    display: inline-block;
    background: #f20f10;
    padding: 5px 25px;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
}
.ebooks-Explore-section{
	position: relative;
	width: 100%;
	padding: 70px;
	background: #c5c7c8;
}
.ebooks-Explore-section .ebooks-slide-item{
	margin-bottom: 25px;
}
.ebooks-Explore-section p{
	margin: 0px;
}
.paper-publishing-sites-right{
	position: relative;
	width: 100%;
}
.ppsr-title-box{
	position: relative;
	width: 100%;
	background: #f5f7f8;
	padding: 20px 15px;
	margin-bottom: 15px;
	border-radius: 12px;
}
.ppsr-indexing-partner-box{
	position: relative;
	width: 100%;
	background: #f5f7f8;
	padding: 20px 15px;
	margin-bottom: 15px;
	border-radius: 12px;	
}
.ppsr-indexing-partner-box img{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
	border-radius: 8px;
}
.page-paper-publishing-sites-section{
	position: relative;
	width: 100%;	
	padding: 70px 0px;
}

.paper-publishing-sites-right h3{
	position: relative;
	font-size: 20px;
	margin: 0px;
}

.paper-publishing-sites-right h3 a{
	position: relative;
	text-decoration: none;
	color: #303030;
}
.paper-publishing-sites-center-img{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}

.paper-publishing-sites-center-img img{
	position: relative;
	width: 100%;
}
.paper-publishing-sites-center-text{
	position: relative;
	width: 100%;
}

.ppsr-title-box h3{
	position: relative;
	font-size: 20px;
	margin: 0px;
}

.ppsr-title-box h3 a{
	position: relative;
	text-decoration: none;
	color: #303030;
}
.call-for-paper {
    position: relative;
    width: 100%;
    background: #f5f7f8;
    padding: 20px 15px;
    margin-bottom: 15px;
    border-radius: 12px;
}
.call-for-paper h4{
    position: relative;
    font-size: 17px;
    font-weight: 500;
    margin:0 ;
}
.call-for-paper .lg {
    font-size: 14px;
    margin: 0;
}
.call-for-paper .style1{
 color: #090!important;
}
.call-for-paper img{
	width: 100%;
}

.latest-update-box {
    position: relative;
    width: 100%;
    background: #f5f7f8;
    padding: 20px 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    height:400px ;
    overflow: hidden;
}
.latest-update-box h4{
    position: relative;
    font-size: 17px;
    font-weight: 500;
    margin:0px 0px 15px 0px;
}
.latest-valume-box {
    position: relative;
    width: 100%;
    background: #f5f7f8;
    padding: 20px 15px;
    margin-bottom: 15px;
    border-radius: 12px;
}
.latest-valume-box h4{
    position: relative;
    font-size: 17px;
    font-weight: 500;
    margin:0px 0px 15px 0px;
}
.latest-valume-list-box {
    position: relative;
    width: 100%;
    background: #fcfcfc;
    padding: 20px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.latest-valume-list-box p{
    position: relative;
    font-size: 15px;
    font-weight: 600;
    margin: 0px;
}
.latest-valume-list-box p span{
    position: relative;
    font-size: 15px;
    font-weight: 400;
    margin: 0px;
    display: block;
}
/****************************************************************
 * Page fundamentals-of-storytellin-banner-area css start here
 * **************************************************************/
 .fundamentals-of-storytellin-banner-area{
 	position: relative;
 	width: 100%;
 	background:#06141c;
 	padding: 70px 0px;
 }
 .storytellin-banner-area{
 	position: relative;
 	width: 100%;
 	max-width: 600px;
 }
  .storytellin-banner-area h1{
 	position: relative;
 	color: #04af2f;
 	font-size: 54px;
 }
   .storytellin-banner-area p{
 	position: relative;
 	max-width: 600px;
 	color: #fff;
 	font-size: 18px;
 }
 .fos_ebook_pricing_card{
 	position: absolute;
 	width: 400px;
 	right: 50px;
 	top: 60px;
 	border-radius: 15px;
 	padding: 20px;
 	background: #fff;
 }
 .storytellin-banner-list-area{
 	position: relative;
 	width: 100%;
 	max-width: 500px;
 }
  .storytellin-banner-list-area ul{
 	position: relative;
 	width: 100%;
 	margin: 0px;
 	padding: 0px;
 }
   .storytellin-banner-list-area ul li{
 	position: relative;
 	list-style: none;
 	margin-bottom: 10px;
 	color: #fff;
 	font-size: 16px;
 	text-decoration: none;
 }
 .fundamentals-of-storytellin-about-area{
 	position: relative;
 	width: 100%;
 	padding: 70px 0px;
 }
 .fundamentals-of-storytellin-about-author-area{
 	position: relative;
 	width: 100%;
 	padding: 70px 0px;
 }
 .storytellin-about-author-img-box{
 	position: relative;
 	width: 100%;
 }

 .storytellin-about-author-img-box img{
 	position: relative;
 	width: 100%;
 }
 .storytellin-about-author-text-box{
  	position: relative;
 	width: 100%;	
 }
 /****************************************************************
 * Page webmd css start here
 * **************************************************************/
.page-webmd-section{
	position: relative;
	width: 100%;
	background: #f5f7f9;
	padding: 60px 0px;
}
.brest-cancer-img-box{
	position: relative;
	width: 100%;	
}
.brest-cancer-img-box{
	position: relative;
	width: 100%;
}
.brest-cancer-img-box img{
	position: relative;
	width: 100%;
	border-radius: 8px;
}
.medatation-section{
	position: relative;
	width: 100%;
	margin-top: 40px;
	padding: 40px 0px;
	border-top: 1px solid #ccc;
	padding: 10px;
}
.medatation-box{
	position: relative;
	width: 100%;
	display: inline-block;
}
.medatation-box img{
	position: relative;
	width: 33%;
	border-radius: 8px;
	margin: 0px 10px 0px 0px;
}
.medatation-box h3 {
    position: relative;
    width: 64%;
    float: right;
    display: inline-block;
    font-size: 20px;
    color: #000;
    margin: 15px 0px 0px 0px;
}
.webmd-story-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.webmd-story-section .col-lg-3{
	width: 20%;
}
.webmd-story-box{
	position: relative;
	width: 100%;	
}
.webmd-story-box img{
	position: relative;
	width: 100%;	
}
.webmd-story-box:after{
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(#ffffff36, #00000033);
}
.webmd-story-text-box{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	z-index: 2;
}
.webmd-story-text-box h3{
	position: relative;
	font-size: 20px;
	color: #fff;
	margin: 0px;
}
.webmd-story-text-box h3:after {
    position: absolute;
    content: '';
    width: 100%;
    left: 0;
    height: 2px;
    margin: 0px;
    left: 0px;
    background: #fff;
    bottom: -5px;
}
.webmd-story-text-box p{
	position: relative;
	font-size: 14px;
	color: #fff;
	margin: 15px 0px 0px 0px;
}
.condations-box{
	position: relative;
	width: 100%;
	padding: 20px;
	background: #edf0ff;
}
.section-area-title {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 25px;
}
.section-area-title h1 {
    position: relative;
    font-size: 20px;
    color: #003494;
    display: inline-block;
}
.view_more_btn{
	position: absolute;
	right: 0px;
	top: 0px;
}
.condations-box{
	position: relative;
	width: 100%;
	display: inline-block;
}
.condations-box ul{
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.condations-box ul li{
	width: 23%;
	margin: 0 1%;
	float:left;
    box-sizing: border-box;
    padding: 0.5rem 0 1.25rem 0;
    border-bottom: 1px solid #cccce7;
}
.condations-box ul li a {
    color: #333132;
    font-weight: 400;
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.8rem;
    padding-left: 1.5rem;
}

.condations-box ul li:nth-child(5n){
    border-bottom: 0;
}
.condations-box ul li:nth-child(6n){
    border-bottom: 0;
}
.condations-box ul li:nth-child(7n){
    border-bottom: 0;
}
.condations-box ul li:nth-child(8n){
    border-bottom: 0;
}

.health-a-to-z-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.health-box{
	position: relative;
	width: 100%;
	display: inline-block;
}
.health-box ul{
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.health-box ul li{
	width: 23%;
	margin: 0 1%;
	float:left;
    box-sizing: border-box;
    padding: 0.5rem 0 1.25rem 0;
    border-bottom: 1px solid #cccce7;
}
.health-box ul li a {
    color: #333132;
    font-weight: 400;
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.8rem;
    padding-left: 1.5rem;
}

.tools-tracker-calculator-section{
	position: relative;
	width: 100%;
}
.tools-tracker-calculator-section .col-lg-3{
	width: 20%;
}
.tools-tracker-calculator-section .ttc-box{
	position: relative;
	width: 100%;
}
.tools-tracker-calculator-section .ttc-box img{
	position: relative;
	width: 100%;
}
.tools-tracker-calculator-section .ttc-box h4{
	position: relative;
	font-size: 24px;
	color: #303030;
}
.hp-blogs .module-list-link[data-v-013dabd9] {
    background-color: #fff;
    border-radius: 0.188rem;
    color: #1c1b1b;
    font-size: .75rem;
    font-weight: 600;
    left: 1rem;
    right: 1rem;
    z-index: 1;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 0.125rem 0.3125rem;
    position: absolute;
    top: 1rem;
}
.hp-blogs a[data-v-013dabd9] {
    text-decoration: none;
    font-weight: 600;
}

.living-healty-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.living-healty-section .col-lg-3{
	position: relative;
	width: 20%;
}
.trending-topics-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;	
}
.trending-topics-box{
	position: relative;
	width: 100%;	
}
.trending-topics-box ul{
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;	
}
.trending-topics-box ul li{
	position: relative;
	width:auto;
	display: inline-block;
	margin: 5px;
	background: #fff;
	padding: 5px 15px;
	border-radius: 15px;	
}
.trending-topics-box ul li a{
	position: relative;
	color: #303030;
	text-decoration: none;	
}
.blue-expert-insights-videos-section {
    position: relative;
    width: 100%;
    padding: 60px 0px;
    background: #081f49;
}
.brest-cancer-text-box {
    position: relative;
    width: 100%;
    height: 100%;
}
.text-center-box{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}
.brest-cancer-section {
    position: relative;
    width: 100%;
}
.living-healty-box {
    position: relative;
    width: 100%;
}

.living-healty-img-box{
	position: relative;
	width:100%;
}
.living-healty-img-box img1{
    position: relative;
    width: 100%;
}
.living-healty-text-box {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}
.living-healty-text-box h4 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0px;
}
.health-news-section {
    position: relative;
    width: 100%;
    padding-bottom: 50px;
}
.health-news-img-box{
    position: relative;
    width: 100%;	
}
.health-news-img-box img{
    position: relative;
    width: 100%;	
}
.health-news-text-box {
    width: 100%;
    position: relative;
    height: 100%;
}
.health-news-title-box {
    width: 100%;
    margin-top: 50px;
    position: relative;
    border-right: 1px solid #ccc;
}
.health-news-title-box h3{
    position: relative;
    font-size: 22px;
    margin: 0px;
}
.group-title-box{
	position: relative;
	width: 30%;
	float: left;
	display: inline-block;
}

.expert-insite4pic{
	width: 120px;
	height: 120px;
	border-radius: 50%;
	float: left;
	background: #e1855b;
	margin-right: 15px;
}
.titl4{
	position: relative;
	font-size: 18px;
	margin: 0px 0px 5px 0px;
	color: #fff;
	display: block;
}
.titl2 {
	position: relative;
	font-size: 22px;
	margin: 0px 0px 5px 0px;
	color: #fff;
	display: block;
}
.titl3 {
    position: relative;
    font-size: 14px;
    margin: 0px;
    color: #fff;
    display: block;
    font-weight: 400;
}
.blue-expert-insights-videos-section .section-area-title {
    position: relative;
    width: 100%;
    border-bottom: 0;
    margin-bottom: 25px;
    display: inline-block;
}
.group--title-img-box{
	max-width: 130px;
	width: 40%;
	height: 130px;
	float: left;
	margin-right: 10px;
}
.group-title-text-box {
    width: 58%;
    float: left;
    padding-top: 20px;
}
.title-line {
    position: relative;
    width: 70%;
    float: left;
    height: 100%;
    max-height: 100px;
}
.title-line:after{
	position: absolute;
	width: 100%;
	height: 1px;
	top: 55%;
	content: '';
	background: #fff;
}
.blue-videos-big-box{
	position: relative;
	width: 100%;
}
.blue-videos-big-box img{
	position: relative;
	width: 100%;
	border-radius: 6px;
	margin-bottom: 15px;
}
.blue-videos-big-box h1{
	position: relative;
	font-size: 36px;
	color: #fff;
}
.blue-thumb-videos-list-box {
    position: relative;
    width: 100%;
    padding-left: 50px;
    border-left: 1px solid #ccc;
    margin-left: 25px;
}
.blue-thumb-img-box {
    position: relative;
    width: 100%;
    display: flex;
    margin-bottom: 40px;
}
.blue-thumb-img-box img{
	position: relative;
	width: 30%;
	margin-right: 10px;
	border-radius: 6px;
	display: inline-block;
}
.blue-thumb-img-box h4{
	position: relative;
	color: #fff;
	font-size: 24px;
}
.blue-thumb-img-box h4 a{
	position: relative;
	color: #fff;
	font-size: 24px;
}
.special-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.special-section .special-box{
	position: relative;
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
}
.special-section .special-img-box{
	position: relative;
	width: 100%;
	padding: 10px;
}
.special-section .special-img-box img{
	position: relative;
	width: 100%;
	border-radius: 6px;
}
.special-section .special-text-box{
	position: relative;
	width: 100%;
}
.special-section .special-text-box span{
	position: relative;
	font-size: 13px;
	margin: 0px;
}
.special-section .special-text-box h3{
	position: relative;
	font-size: 18px;
	line-height: 24px;
	margin: 0px 0px 10px 0px;
}
.special-section .special-text-box p{
	position: relative;
	font-size: 15px;
	line-height: 24px;
	margin: 0px;
}
.feature-stories-section{
	position: relative;
	width: 100%;
}
.feature-stories-section .feature-stories-box{
	position: relative;
	width: 100%;
	background: #fff;
	border-radius: 6px;
}
.feature-stories-section .feature-stories-img-box{
	position: relative;
	width: 100%;
	padding: 10px;
}
.feature-stories-section .feature-stories-img-box img{
	position: relative;
	width: 100%;
	border-radius: 6px;
}
.feature-stories-section .feature-stories-text-box{
	position: relative;
	width: 100%;
	padding: 10px;
}
.feature-stories-section .feature-stories-text-box h3{
	position: relative;
	font-size: 18px;
	line-height: 24px;
	margin: 0px 0px 10px 0px;
}
.feature-stories-section .feature-stories-text-box p{
	position: relative;
	font-size: 15px;
	line-height: 24px;
	margin: 0px;
}
.expert-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.expert-section .expert-box{
	position: relative;
	width: 100%;
	background: #fff;
}
.expert-section .expert-img-box{
	position: relative;
	width: 100%;
}
.expert-section .expert-img-box img{
	position: relative;
	width: 100%;
}
.expert-section .expert-text-box{
	position: relative;
	width: 100%;
	padding: 10px;
}
.expert-section .expert-text-box h4{
	position: relative;
	font-size: 22px;
	margin: 0px 0px 15px 0px;
}
.expert-section .expert-text-box h5{
	position: relative;
	font-size: 18px;
	margin: 0px;
}
/*==================================================
page-resolve-courses-section css start here
==================================================*/
.page-resolve-courses-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
	background: #06141c url(../img/resolve-page-section-one-bg.png)0% 0% no-repeat;
	background-size: cover;
	
}
.resolve-courses-text-box{
	position: relative;
	width: 100%;
}
.resolve-courses-text-box h1 {
    position: relative;
    font-size: 60px;
    line-height: 72px;
    color: #04af2f;
    margin: 0px 0px 15px 0px;
}
.resolve-courses-text-box p.txt{
	position: relative;
	font-size: 18px;
	color: #00fff0;
	margin: 0px 0px 25px 0px;
}
.resolve-courses-text-box ul{
	position: relative;
	margin: 0px;
	padding: 0px;	
}
.resolve-courses-text-box ul li {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}
.resolve-courses-text-box ul li p{
	position: relative;
	color: #fff;
	display: inline-block;
	font-size: 15px;
	margin: 0px 25px 0px 0px;
}
.resolve-courses-text-box .r-active {
    font-size: 24px;
    font-weight: normal;
    color: #f9ff0a;
    margin: 0px;
}
.resolve-courses-text-box .half {
    font-size: 24px;
    font-weight: normal;
    color: #9a9898;
    margin: 0 2px 0px -4px !important;
}
.resolve-courses-text-box .half:after {
    content: '\2605';
    color: #f9ff0a;
    margin-left: -19px;
    width: 10px;
    position: absolute;
    overflow: hidden;
}
.star-px{
	position: relative;
	top: -11px;
}

.resolve-courses-cart-box{
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
}
.resolve-courses-cart-white-box{
	position: relative;
	width: 100%;
	max-width: 360px;
	background: #fff;
	padding: 25px;
	height: 100%;
	margin: 0 auto;
	border-radius: 12px;
}
.rc-course-price {
    font-size: 24px;
    text-align: left;
    font-weight: 600;
}
.rc-course-price span {
    font-size: 18px;
    text-align: left;
    font-weight: 600;
    color: #a3a3a3;
}
.buy-now-add-to-cart-btn-group {
    position: relative;
    width: 100%;
    display: inline-block;
    margin-bottom: 25px;
}
.rc-btn-add-to-cart {
    cursor: pointer;
    background:#04af2f;
    border: 2px solid transparent;
    color: #fff;
    border-radius: 0.5rem;
    padding-block: 0.5em;
    padding-inline: 1em;
    transition: all 0.25s ease;
    display: inline-block;
    align-items: center;
    gap: 0.4rem;
    float: left;
    min-height: 42px;
    justify-content: center;
}
.rc-btn-buy-now {
    cursor: pointer;
    background:#04af2f;
    border: 2px solid transparent;
    color: #fff;
    border-radius: 0.5rem;
    padding-block: 0.5em;
    padding-inline: 1em;
    transition: all 0.25s ease;
    display: inline-block;
    align-items: center;
    gap: 0.4rem;
    float: right;
    min-height: 42px;
    justify-content: center;
}

.form-inside-light-box{
	position: absolute;
	background: #e4ffe5;
	left: 0;
	right: 0;
	width: 100%;
	padding: 20px;
	bottom: 50px;
	min-height: 100px;
}
.form-inside-light-box p{
	position: relative;
	color: #303030;
	margin: 0px;
}
.resolve-courses-footer-box{
	position: relative;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 50px;
	right: 0;
	border-top: 1px solid #ccc;
	padding: 10px 20px;
}
.resolve-courses-description-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.rc-cd-text-box{
	position: relative;
	width: 100%;
}
.rc-cd-img-box {
    position: relative;
    width: 100%;
    background: url(../img/overviewImgBg.png) 0% 0% no-repeat;
    padding: 50px;
}
.rc-cd-img-box img{
	position: relative;
	border-radius: 8px;
}
.resolve-courses-curriculum-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
	background: #cfe9d0;	
}
.flex-group-accor-icon{
	width: 7%;
	display: inline-block;
	float: left;
	text-align: left;
}
.lecture-count-icon{
	height: 20px;
}
.acro-icon{
	height: 50px;
}
.acro-white-icon {
    height: 50px;
    display: none;
}
.lecture-count-white-icon{
	height: 20px;
	display: none;
}
.lecture-count-black-icon {
    height: 20px;
    position: relative;
    top: -4px;
}
.lecture-title254 {
    font-size: 20px;
    line-height: 24px;
    display: inline-block;
}
.curse-video-timing {
    display: inline-block;
    float: right;
}
.btn-course-video-preview {
    border: none;
    background: #04af2f;
    color: #fff;
    padding: 5px 25px;
    font-size: 18px;
    border-radius: 6px;
    position: absolute;
    right: 100px;
    top: -5px;
}
.resolve-courses-curriculum-section .accordion{
	position: relative;
	width: 100%;
}
.resolve-courses-curriculum-section .accordion{
	position: relative;
	width: 100%;
}
.resolve-courses-curriculum-section .accordion-button:hover{
	background: #04af2f;
	color: #fff;
}
.resolve-courses-curriculum-section .accordion-button:hover .acro-icon{
	display: none;
}
.resolve-courses-curriculum-section .accordion-button:hover .acro-white-icon{
	display: block;
}

.resolve-courses-curriculum-section .accordion-button{
    position: relative;
    width: 100%;
    display: inline-block;
    text-align: left;
    font-size: 24px;
    color: #000 !important;
}
.resolve-courses-curriculum-section .accordion-button:hover{
    color: #fff !important;
}	
.lecture-count{
	display: block;
	font-size: 18px;
}
.resolve-courses-curriculum-section .accordion-button:hover .lecture-count-white-icon {
    height: 20px;
    display: inline-block;
}	
.resolve-courses-curriculum-section .accordion-button:hover .lecture-count-icon {
    height: 20px;
    display: none;
}	
.resolve-courses-curriculum-section .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #04af2f;
}
.lecture-group-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}
.lecture-group-box ul{
    display:block;
    width: 100%;
    margin: 0;
    padding: 0;
}
.lecture-group-box ul li {
    display: block;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    position: relative;
}
.lecture-group-box ul li:last-child {
    border-bottom: 0px solid #ccc;
}
.resolve-couple-promotion-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.resolve-couple-promotion-group-box{
	position: relative;
	width: 100%;	
	border-radius: 8px;
	overflow: hidden;
	background: #bfe4f5;
}
.resolve-couple-promotion-text-box{
	position: relative;
	width: 60%;	
	float: left;
	padding: 40px;	
}
.resolve-couple-promotion-text-box h3 {
    position: relative;
    font-size: 28px;
}
.resolve-couple-promotion-text-box p{
	position: relative;
	font-size: 16px;
	line-height: 24px;
}
.resolve-couple-promotion-img-box{
	position: relative;
	width: 40%;
	float: left;
}
.resolve-couple-promotion-img-box img{
	position: relative;
	width: 100%;
}
.btn-subscribe-now{
	background: #0196da;
	padding: 10px 25px;
	border-radius: 6px;
	border: 2px solid #0196da;
	color: #fff;
	text-transform: uppercase;
}
.btn-subscribe-now:hover{
	background: transparent;
	padding: 10px 25px;
	border-radius: 6px;
	border: 2px solid #0196da;
	color: #0196da;
	text-transform: uppercase;
}
.btn-explore-now{
	background: #f46f14;
	padding: 10px 25px;
	border-radius: 6px;
	border: 2px solid #f46f14;
	color: #fff;
	text-transform: uppercase;
}
.btn-explore-now:hover{
	background: transparent;
	padding: 10px 25px;
	border-radius: 6px;
	border: 2px solid #f46f14;
	color: #f46f14;
	text-transform: uppercase;
}
.bg-orange{
	background: #fcdbc4;
}

.resolve-related-video-courses-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
	background: #06141c;
}
.section-title-full-area {
    position: relative;
    width: 100%;
}
.section-title-full-area h1{
    position: relative;
    display: block;
    font-size: 48px;
    color: #303030;
}
.resolve-related-video-courses-section .section-title-full-area h1{
    color: #fff;
}
.text-green{
	color: #04af2f;
}
.resolve-student-best-work-section {
    position: relative;
    width: 100%;
    padding: 60px 0px;
    background: url(../img/dotsBg-right.png) 100% 0% no-repeat;
}
.rsv-logo-box{
	width: 150px;
	float: left;
	margin: 0px 10px;
	height: 120px;
	background: #f5f7f8;
	border: 1px solid #ccc;
}
.rsv-logo-box img{
	width:100%;
	height: 100%;
}
.resolve-courses-certificate-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
	background: #06141c;
}
.text-white{
	color: #fff;
}
.resolve-courses-certificate--text-box{
	position: relative;
	width: 100%;
	padding-top: 150px;
}
.resolve-courses-certificate--text-box p{
	position: relative;
	font-size: 16px;
	color: #fff;
	line-height: 24px;
}
.btn-show-more {
    cursor: pointer;
    background:#04af2f;
    border: 2px solid #04af2f;
    color: #fff;
    border-radius: 0.5rem;
    padding-block: 0.5em;
    padding-inline: 1em;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 42px;
    justify-content: center;
    width: 140px;
}
.btn-show-more:hover {
    cursor: pointer;
    background: transparent;
    border: 2px solid #04af2f;
    color: #04af2f;
    border-radius: 0.5rem;
    padding-block: 0.5em;
    padding-inline: 1em;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 42px;
    justify-content: center;
}

.resolve-courses-curriculum-section .accordion-button:not(.collapsed) .acro-white-icon{
    display: block;
}

.resolve-courses-curriculum-section .accordion-button:not(.collapsed) .acro-icon{
    display:none;
}
.resolve-courses-curriculum-section .accordion-button:not(.collapsed) .accor-header{
    color: #fff;
}

.resolve-courses-curriculum-section .accordion-button:not(.collapsed) .lecture-count{
	color: #fff;
}

.resolve-courses-curriculum-section .accordion-button:not(.collapsed) .lecture-count-icon{
	display: none;
}
.resolve-courses-curriculum-section .accordion-button:not(.collapsed) .lecture-count-white-icon{
	display: inline-block;
}


.resolve-courses-instructor-details-section {
    position: relative;
    width: 100%;
    padding: 60px 0px;
}
.resolve-courses-instructor-img-box {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 30px;
    background: url(../img/instructor-bg.png) 0% 0% no-repeat;
}
.resolve-courses-instructor-img-box img{
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;   
}

.instructor-name {
    font-size: 20px;
    color: #000;
    margin: 0px;
    padding: 0px;
}
.presentation {
    font-size: 15px;
    line-height: 20px;
    margin: 0px;
    padding: 0px;
}
.resolve-courses-instructor-text-box {
    position: relative;
    width: 100%;
    padding: 25px;
}
.resolve-student-best-work-box{
	position: relative;
	width: 100%;
}

.rvc-carousel .ebooks-slide-item {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.rvc-carousel .video-course__img-wrapper {
    display: block;
    place-content: center;
    background-color: #cfe9d0;
    width: 90%;
    padding: 0px;
    text-align: center;
    margin-top: 20px;
    margin-inline: auto;
    border-radius: 0.5rem;
}
.rvc-carousel .video-course__img-wrapper img{
   position: relative;
   width: 100%;
   height: 170px;
}
.rvc-carousel .video-course__text-wrapper a {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 20px;
}
.rvc-carousel .flex-group {
    display: flex;
    align-items: center;
    gap: var(--gap, .5rem);
}
.gudda-icon{
	position: relative;
	top: 3px;
	height: 18px;
}
.rvc-offer-price {
    font-size: 18px;
    font-weight: 600;
    margin-right: 15px;
}
.rvc-real-price {
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
}
.rvc-carousel .video-course__footer .button {
    cursor: pointer;
    background-color: #04af2f;
    border: 2px solid #04af2f;
    color: #fff;
    border-radius: 0.5rem;
    padding-block: 0.5em;
    padding-inline: 1em;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 42px;
    justify-content: center;
}
.rvc-carousel .video-course__footer .button:hover {
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #04af2f;
    color: #04af2f;
}
.rvc-carousel .owl-dots{
position: relative;
width: 100%;
padding: 10px;
}
.rvc-carousel .owl-dots button.owl-dot{
width: 10px;
height: 10px;
background: #666;
margin: 5px;
border-radius: 50%;
}
.rvc-carousel .owl-dots button.owl-dot.active{
width: 10px;
height: 10px;
background: #000;
margin: 5px;
border-radius: 50%;
}
/*=====================================
Main page content
===================================*/
.centerSection-content{
	position: relative;
	width: 100%;
	background: #fff;
	padding: 20px 15px;
	border-radius: 15px;
	height: 100%;
}
.AdsBnr-Section{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}
.AdsBnr-Section img{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
	border-radius: 12px;
}
.pinkTextBox {
    position: relative;
    width: 100%;
    padding: 25px 15px;
    border-radius: 12px;
    background: #ffede0;
}
.pinkTextBox ul{
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.pinkTextBox ul li{
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 10px;
}
.pinkTextBox ul li a{
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: #000;
}
.circle-box {
    font-size: 10px;
    position: relative;
    top: -1px;
}
.subjectTextBox {
    position: relative;
    width: 100%;
    padding: 15px 0px;
}
.subjectTextBox h2{
    position: relative;
    font-size: 20px;
    font-weight: 600;
}
.subjectTextBox p{
    position: relative;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.orangeTextBox {
    position: relative;
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    color: #000;
    background: #fefad8;
}
.orangeTextBox a{
    position: relative;
    font-size: 15px;
    text-decoration: none;
    color: #000;
}
.orangeTextBox a:hover{
    position: relative;
    font-size: 15px;
    color: #000;
    text-decoration: underline;
}
.faqTextBox{
	position: relative;
	width: 100%;
	padding: 15px 0px;
}
.faqTextBox h2{
    position: relative;
    font-size: 20px;
    font-weight: 600;
}
.subjectTextBox ul {
    position: relative;
    width: 100%;
    margin: 0px 0px 0px 0px;
    padding: 0px;
    list-style: none;
    display: inline-block;
}
.subjectTextBox ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin: 0px 2.5px;
    padding: 2.5px 15px;
    border-radius: 20px;
    text-align: center;
    background: #081827;
}
.subjectTextBox ul li a{
	position: relative;
	text-decoration: none;
	color: #fff;
	font-size: 13px;
}
.javascript-right-menu-list-box{
	position: relative;
	width: 100%;
	text-align: center;
	
}
.javascript-right-menu-list-box h2 {
    position: relative;
    width: 100%;
    display: inline-block;
    font-size: 20px;
    padding: 15px;
    margin: 0px;
    background: #000;
    color: #fff;
}
.js-video{
	position: relative;
	width: 100%;
}
.javascript-chapters {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
}
.javascript-chapters li a{
    position: relative;
    width: 100%;
    display: inline-block;
    font-size: 16px;
    color: #303030;
}
.javascript-chapters li{
    position: relative;
    width: 100%;
    text-align: left;
    margin: 0px;
    padding: 0px 15px;
    line-height: 32px;
}
.javascript-chapters li a:hover{
    position: relative;
    background: #fbfbfb;
}
.javascript-chapters li a.active{
    position: relative;
    background: #fbfbfb;
}
.ads-box420{
	position: relative;
	width: 100%;
	margin-bottom: 25px;
}

.ads-box420 img{
	position: relative;
	width: 100%;
	border-radius: 12px;
}
.downloader {
    position: relative;
    width: 100%;
    display: inline-block;
}

.as-top-header {
    position: fixed;
    top: 0;
    z-index: 99;
    background: #0d5ef4;
    padding: 10px;
    width: 100%;
    height: 46px;
}

.chapterOpenBTN {
    position: absolute;
    left: 20px;
    background: transparent;
    color: #fff;
    font-size: 20px;
    border: none;
    top: 13px;
}

/*===================================
Screen slide Section
===================================*/
.custom-screen-move-section {
    position: relative;
    width: 100%;
    background: #1d1d1d;
    padding: 0;
}
.screen-moving-areas{
	position: relative;
	width: 100%;
	padding:0px;
	max-width: 400px;
	margin: 0px auto;
	background: #fff;
	min-height: 100px;
}
.screen-moving-areas .controls{
	position: absolute;
	top: 50%;
	width: 100%;
	height: 60px;
	z-index: 999;
}
button#prevBtn {
    position: absolute;
    left: -60px;
}
button#nextBtn {
    position: absolute;
    right: -60px;
}
.screen-tab-box {
    position: absolute;
    width: 100%;
    display: inline-block;
    margin-bottom: 0;
    top: 5px;
    left: 0;
    z-index: 999999999;
}
.screen-group-box{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.screen-group-box .screen {
    display: none;
    padding: 0px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.screen-group-box .screen img{
	width: 100%;
}

.screen-group-box .screen.active {
    display: block;
}

.screen-moving-areas .controls button {
    height: 40px;
    width: 40px;
    margin: 5px;
    padding: 0px 0px;
    font-size: 16px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}


.screen-tab-box .tabs {
    display: flex;
    justify-content: space-around;
}

.screen-tab-box .tabs .tab {
    width: 18%;
    height: 5px;
    background-color: #ddd;
    border-radius: 3px;
    cursor: pointer;
}

.screen-tab-box .tabs .tab.active {
    background-color: #4caf50;
}
.screen-text {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: #ffffff6e;
    
    background-image: linear-gradient(#ffffff38, #000000a6);
}
.screen-text .textToBottom{
	position: absolute;
	left: 0;
	width: 100%;
	padding: 25px;
	bottom: 50px;
}
.screen-text .textToBottom h2{
	font-size: 24px;
	color: #fff;
	margin: 0px 0px 10px 0px;
}
.screen-text .textToBottom p{
	font-size: 16px;
	color: #fff;
	line-height: 24px;
	margin: 0px;
}
/*===================================
Image over text Section
===================================*/
.web-story-section{
	position: relative;
	width: 100%;
	background: #fff;
	padding: 50px 0px;
}
.contnet357-box{
	position: relative;
	width: 100%;
	margin-bottom: 25px	;		
}
.img-box357{
	position: relative;
	width: 	100%;		
}
.img-box357 img{
	position: relative;
	width: 100%;
	border-radius: 4px;		
}
.contnet357-box .card-img-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;	
    bottom: 0;
    background: transparent linear-gradient(180deg, #00000000 0, #000 100%) 0 0 no-repeat padding-box;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    padding-bottom: 10px;
    width: 100%;
}
.contnet357-box .card-img-overlay .card-title {
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    margin-bottom: .75rem;
}
.right-sidebar{
	position: relative;
	width: 100%;
	text-align: center;
	display: inline-block;
}
.acchor-tab {
    position: relative;
    width: 100%;
    display: inline-block;
    margin-bottom: 15px;
}
.acchor-tab h2{
	position: relative;
	font-size: 24px;
	margin: 0px;
	padding: 0px;
	display: inline-block;
}
.acchor-tab ul{
	position: relative;
	display: inline-block;
	margin: 0px;
}
.acchor-tab ul li{
	position: relative;
	display: inline-block;
}
.acchor-tab ul li a {
    position: relative;
    display: inline-block;
    background: #f20f10;
    color: #fff;
    padding: 0px 20px;
    line-height: 28px;
    border-radius: 20px;
}
.ads-box{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}
.ads-box img{
	position: relative;
	width: 100%;
	border-radius: 4px;
}
.ads-trending-phots-title  {
    font-size: 22px;
    color: #dc2229;
    font-weight: 700;
    margin-bottom: 5px;
}
.title-advertisment{
	color: ;
}
.title-advertisment {
    font-size: 10px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    display: block;
    color: #666;
    letter-spacing: 2px;
    padding: 5px 0;
    margin: 0px;
}
.trending-title{
	position: relative;
	width: 100%;
	text-align: left;
}
.trending-title a {
    font-size: 16px;
    color: #171717;
    font-weight: 500;
    line-height: 18px;
}
.trending-tag{
	position: relative;
	width: 100%;
	text-align: left;
}
.trending-tag a {
    font-size: 12px;
    color: #dc2229;
    font-weight: 600;
    margin-top: 5px;
    padding-bottom: 0;
}
.ads-box {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}
.categorized-web-story-section{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
  .categorized-web-story-section .col-md-3 {
        width: 20%;
    }
.story-title-area {
    position: relative;
    width: 100%;
    display: inline-block;
}
.story-title-area h2 {
    font-size: 28px;
    line-height: 1.4;
    padding: 0 0 10px;
    margin: 0;
    border-bottom: 0;
    text-transform: capitalize;
    display: inline-block;
}
.view-All-related-story {
    padding: 10px 0;
    min-width: 120px;
    font-weight: 600;
    background-color: transparent;
    color: var(--black) !important;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 60px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6 !important;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    font-style: normal;
    position: relative;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    float: right;
}  
.btn-group-box {
    position: absolute;
    top: 25px;
    width: 100%;
    z-index: 99;
    padding: 5px 15px;
}
.zee-news-logo {
    height: 40px;
    position: absolute;
    left: 15px;
    top: 0;
} 
.btn-video-play {
    position: absolute;
    top: 0;
    border: none;
    background: transparent;
    right: 65px;
}
.video-play-btn-logo {
    height: 25px;
}
.video-stop-btn-logo {
    height: 25px;
}

.btn-share {
    position: absolute;
    border: none;
    background: transparent;
    right: 15px;
    top: 0;
}
.share-btn-logo {
    height: 25px;
}
.btn-video-stop {
    position: absolute;
    top: 0;
    border: none;
    background: transparent;
    right: 65px;
    display: none;
}
.publisher-group-box {
    position: absolute;
    bottom: 0px;
    width: 100%;
    z-index: 99;
    height: 40px;
}
.publisher-name {
    position: absolute;
    color: #fff;
    left: 30px;
}
.publisher-date {
    position: absolute;
    color: #fff;
    right: 30px;
}
.all-web-tab{
	position: relative;
	display: none;
}
.all-web-tab.show{
	position: relative;
	display:flex;
}
.entertainment-web-tab{
	position: relative;
	display: none;
}
.sports-web-tab{
	position: relative;
	display: none;
}
.entertainment-web-tab.show{
	position: relative;
	display: flex;
}
.sports-web-tab.show{
	position: relative;
	display: flex;
}
.btn-groups-box {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 10px;
    background: #efefef;
    border-radius: 6px;
}
.btn-next-page {
    position: relative;
    border: none;
    background: #ea3131;
    padding: 5px 25px;
    border-radius: 7px;
    color: #fff;
}
.btn-prev-page {
    position: relative;
    border: none;
    background: #ea3131;
    padding: 5px 25px;
    border-radius: 7px;
    color: #fff;
    float: right;
}
.btn-print-page {
    background: #013b71;
    border: none;
    color: #fff;
    padding: 5px 25px;
    border-radius: 8px;
    float: right;
    margin-right: 25px;
}
.menu-area .main-menu {
    position: relative;
    width: 100%;

}
/*==================================================================
NEET Physics Sample Solution css start here
=================================================================*/
.npss-wrapper{
	position: relative;
	width: 100%;
	padding: 50px 0px;
}
.npss-wrapper .npss-text-area{
	position: relative;
	width: 100%;	
}
.npss-wrapper .npss-text-area .npss-question-answer-area{
	position: relative;
	width: 100%;
	margin-bottom: 15px;	
}
.npss-wrapper .npss-text-area .npss-question-answer-area h3{
	position: relative;
	font-size: 18px;
	font-weight: 500;	
}
.npss-wrapper .npss-text-area .npss-question-answer-area h3 strong{
	font-weight: 600;	
}
.npss-wrapper .npss-text-area .npss-question-answer-area p{
	position: relative;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;	
}
.npss-wrapper .npss-text-area .npss-question-answer-area p strong{
	font-weight: 600;	
}
.col-seperator{
	position: relative;
	border-left: 2px solid #333;
	padding-left: 20px;
}
.npss-wrapper .npss-text-area .npss-question-answer-area .answer-option-box{
	position: relative;
	width: 100%;
}
.npssp-wrapper{
	position: relative;
	width: 100%;
	padding: 50px 0px;	
}
.npssp-wrapper .npssp-text-area {
	position: relative;
	width: 100%;
	margin-bottom: 15px;	
}
.npssp-wrapper .npssp-text-area .npssp-question-answer-area{
	position: relative;
	width: 100%;
	margin-bottom: 15px;	
}
.npssp-wrapper .npssp-text-area .npssp-question-answer-area h3{
	position: relative;
	font-size: 18px;
	font-weight: 500;	
}
.npssp-wrapper .npssp-text-area .npssp-question-answer-area h3 strong{
	font-weight: 600;	
}
.npssp-wrapper .npssp-text-area .npssp-question-answer-area p{
	position: relative;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;	
}
.npssp-wrapper .npssp-text-area .npssp-question-answer-area p strong{
	font-weight: 600;	
}
.npssp-wrapper .npssp-text-area .npssp-question-answer-area .answer-option-box{
	position: relative;
	width: 100%;
}
.npssp-wrapper .npssp-text-area .npssp-question-answer-area .answer-option-box ul{
	position: relative;
	width: 100%;
	display: inline-block;
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.npssp-wrapper .npssp-text-area .npssp-question-answer-area .answer-option-box ul li{
	position: relative;
	width: 50%;
	display: inline-block;
	list-style: none;
	float: left;
}
.npssp-wrapper .npssp-text-area .npssp-question-answer-area .answer-option-box ul li p{
	position: relative;
	margin: 0px;
	font-size: 16px;
}
.npssp-wrapper .npssp-text-area .npssp-question-answer-area .answer-option-box ul li p span{
	position: relative;
	margin-right: 10px;
	font-weight: 600;
}
/*====================================================
Limited offer header section css start here
===================================================*/
.limited-offer-header{
	position: relative;
	width: 100%;
	display: inline-block;
	height: 30px;
}
.limited-offer-side-left{
	position: relative;	
	width: 50%;
	float: left;
	display: inline-block;
	padding: 0px 15px;
}
.limited-offer-side-right{
	position: relative;
	width: 50%;
	float: left;
	display: inline-block;
	padding: 0px 15px;
}
.limited-offer-side-left p{
	position: relative;
	margin: 0px;
	line-height: 34px;
	font-size: 16px;
}
.limited-offer-side-right p{
	position: relative;
	margin: 0px;
	line-height: 34px;
	font-size: 16px;
}
.btn-close-limited-offer-header {
    position: absolute;
    right: 0;
    background: transparent;
    right: 15px;
    top: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    line-height: 20px;
}
.single-post-details-page{
	position: relative;
	width: 100%;
	padding: 50px 0px;
}
.single-post-image{
	position: relative;
	width: 100%;
	border-radius: 6px;
}
.single-post-image .owl-dots{
	position: absolute;
	width: 100%;
	bottom: -5px;
}
.single-post-image img{
	position: relative;
	width: 100%;
}
.social_sharing{
	position: relative;
	width: 100%;
	text-align: right;
}
.social_sharing h4{
	position: relative;
	display: inline-block;
	font-size: 20px;
	text-transform: uppercase;
}
.social_sharing ul{
	position: relative;
	margin: 0px;
	padding: 0px;
	display: inline-block;
	text-align: right;
}
.social_sharing ul li{
	position: relative;
	text-align: right;
	display: inline-block;
}
.social_sharing ul li a{
	position: relative;
	display: inline-block;
	color: #fff;
	width: 36px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	border-radius: 4px;
	background: #000;
}
.next-previous-post{
	position: relative;
	width: 100%;
	display: inline-block;
}
.next-previous-post .next-post{
	position: relative;
	width: calc(50% - 1px);
	float: left;
	border: 1px solid #ccc;
	padding: 15px;
	display: inline-block;
}
.next-previous-post .next-post h2{
	position: relative;
	font-size: 20px;
}
.next-previous-post .previous-post{
	position: relative;
	width: calc(50% - 1px);
	float: left;
	border: 1px solid #ccc;
	padding: 15px;
	display: inline-block;
}
.next-previous-post .previous-post h2{
	position: relative;
	font-size: 20px;
}
.next-previous-post .next-post .combo-box{
	position: relative;
	width: 100%;
	display: inline-block;
}
.next-previous-post .previous-post .combo-box{
	position: relative;
	width: 100%;
	display: inline-block;
}
.next-previous-post .next-post .combo-box .next-post-img{
	position: relative;
	width: 35%;
	float: left;
	border-radius: 4px;
	overflow: hidden;	
	display: inline-block;
}
.next-previous-post .next-post .combo-box .next-post-img img{
	position: relative;
	width: 100%;
	min-height: 120px;
}
.next-previous-post .next-post .combo-box .next-post-title{
	position: relative;
	width: 65%;
	float: left;
	padding-left: 15px;
}
.next-previous-post .next-post .combo-box .next-post-title .news-title{
	position: relative;
	font-size: 18px;
	text-decoration: none;
	color: #000;
	font-weight: 600;
	line-height: 22px;
}
.next-previous-post .next-post .combo-box .next-post-title h5{
	position: relative;
	font-size: 16px;
	color: #333;
}
.next-previous-post .next-post .combo-box .next-post-title h5 span{
	position: relative;
	font-size: 16px;
	display: inline-block;
	background: #ccc;
	padding: 2.5px 10px;
}
.next-previous-post .previous-post .combo-box{
	position: relative;
	width: 100%;
	display: inline-block;
}
.next-previous-post .previous-post .combo-box .previous-post-img{
	position: relative;
	width: 35%;
	float: left;
	border-radius: 4px;
	overflow: hidden;	
	display: inline-block;
}
.next-previous-post .previous-post .combo-box .previous-post-img img{
	position: relative;
	width: 100%;
	min-height: 120px;
}
.next-previous-post .previous-post .combo-box .previous-post-title{
	position: relative;
	width: 65%;
	float: left;
	padding-left: 15px;
}
.next-previous-post .previous-post .combo-box .previous-post-title .news-title{
	position: relative;
	font-size: 18px;
	text-decoration: none;
	color: #000;
	font-weight: 600;
	line-height: 22px;
}
.next-previous-post .previous-post .combo-box .previous-post-title h5{
	position: relative;
	font-size: 16px;
	color: #333;
}
.next-previous-post .previous-post .combo-box .previous-post-title h5 span{
	position: relative;
	font-size: 16px;
	display: inline-block;
	background: #ccc;
	padding: 2.5px 10px;
}
/*=======================================================
related-post-display
=====================================================*/
.related-post-display{
	position: relative;
	width: 100%;
	padding-bottom: 25px;
}
.related-post-display .owl-carousel .item {
      background: white;
      padding: 15px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
.related-post-display .owl-carousel .item img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
    }
   .related-post-display .owl-nav button {
      font-size: 25px !important;
      color: #333 !important;
      background: none !important;
      border: none !important;
    }
   .related-post-display .owl-carousel .owl-nav{
      position:absolute;
      top: 35%;
      width: 100%;
    }
   .related-post-display .owl-carousel .owl-nav .owl-prev{
    margin: 0;
    position: absolute;
    left:0;
    width: 40px;
    height: 40px;
    background: #ccc !important;
    border-radius: 50%;
    line-height: 31px !important;
    text-align: center;
    z-index: 2;
    padding: 0 !important;
    }    
.related-post-display .owl-carousel .owl-nav .owl-next {
    margin: 0;
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    background: #ccc !important;
    border-radius: 50%;
    line-height: 31px !important;
    text-align: center;
    z-index: 2;
    padding: 0 !important;
}
/*=======================================================
right-side-social-followers
=====================================================*/
.right-side-social-followers{
	position: relative;
	width:100%;
	display: inline-block;
}
.right-side-social-followers ul{
	position: relative;
	width:100%;
	margin: 0px;
	padding: 0px;
	display: inline-block;
}
.right-side-social-followers li{
	position: relative;
	width:49.5%;
    margin-bottom: 1px;
	line-height: 36px;
	float: left;
	height: 36px;
	display: inline-block;
}
.right-side-social-followers li:nth-child(2n){
	position: relative;
	width:49.5%;
	float: right;
	height: 36px;
	display: inline-block;
}
.right-side-social-followers li a{
	position: relative;
	text-decoration: none;
	font-size: 13px;
	border-radius: 4px;
	padding: 0px 15px;
	color: #fff;
	width: 100%;
	display: inline-block;
}
.right-side-social-followers li a span{
	position: relative;
	text-decoration: none;
	font-size: 13px;
	float: right;
	color: #fff;
	display: inline-block;
}
.facebook-bg{
	background: #4080FF;
}
.twitter-bg{
	background: #000000;
}
.linkedin-bg{
	background: #1AB7EA;
}
.instagram-bg{
	background: #5E368B;
}
.youtube-bg{
	background: #FF0000;
}
.fb-bg{
	background: #ccc;
}
.fb-bg{
	background: #ccc;
}
/*=======================================================
post-category-type
=====================================================*/
.post-category-type{
	position: relative;
	width:100%;
	display: inline-block;
}
.post-category-type ul{
	position: relative;
	width:100%;
	margin: 0px;
	padding: 0px;
	display: inline-block;
}
.post-category-type li{
	position: relative;
	float: left;
	margin-right: 10px;
	display: inline-block;
}
.post-category-type li a{
	position: relative;
	text-decoration: none;
	color: #333;
	display: inline-block;
}
.post-category-type li i{
	position: relative;
	font-size: 13px;
	top: 0px;
	display: inline-block;
}
.post-category-name{
	position: relative;
	width:100%;	
}
.post-category-name span {
    position: relative;
    display: inline-block;
    padding: 0px 15px;
    border-radius: 25px;
    text-align: left;
    line-height: 36px;
    font-size: 15px;
    background: #005a8c47;
    color: #000;
}
.post-category-name span i{
	position: relative;
	font-size: 12px;
}
.post-date-with-share{
	position: relative;
	width:100%;	
	display: inline-block;	
}
.post-with-date{
	position: relative;
	width:50%;	
	float: left;
	text-align: left;
	display: inline-block;	
}
.post-with-share{
	position: relative;
	width:50%;	
	float: left;
	text-align: right;
	display: inline-block;	
}
.post-with-follow{
	position: relative;
	width: 100%;
	text-align: right;
}
.post-with-follow h4{
	position: relative;
	display: inline-block;
	font-size: 16px;
}
.post-with-follow ul{
	position: relative;
	margin: 0px;
	padding: 0px;
	display: inline-block;
	text-align: right;
}
.post-with-follow ul li{
	position: relative;
	text-align: right;
	display: inline-block;
}
.post-with-follow ul li a{
	position: relative;
	display: inline-block;
	color: #000;
	text-align: center;
}
.total-post-views{
	display: inline-block;
	font-size: 14px;
	color: #333;
	margin-left: 15px;
}
/*=======================================================
.post-newsletters-signup
=====================================================*/
.post-newsletters-signup{
	position: relative;
	width: 100%;
	display: inline-block;
	background: #f6f7f8;
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
}
.post-newsletters-signup h3{
	position: relative;
	font-size: 20px;
	margin: 0px 0px 10px 0px;
}
.post-newsletters-signup p{
	position: relative;
	margin: 0px;
}
.post-newsletters-signup form{
	position: relative;
	width: 100%;
}
.post-newsletters-signup form input{
	position: relative;
	width: 100%;
	border-radius: 4px;
	height: 36px;
	padding: 0px 125px 0px 15px;
	border: 1px solid #ccc;
}
.post-newsletters-signup form button{
	position:absolute;
	right: 0;
	top: 0;
	height: 36px;
	background: #000;
	color: #fff;
	border: none;
	width: auto;
	padding: 0px 15px;
	border-radius: 4px;
}

.form-checkbox-terms {
    position: relative;
    width: 100%;
    padding-left: 15px;
    display: inline-block;
    margin-top: 10px;
}
.form-checkbox-terms input {
    position: absolute !important;
    left: 0!important;
    height: 12px !important;
    top: 0;
    display: inline-block;
    padding: 0px !important;
    border: 1px solid #ccc;
    width: 12px !important;
    background: #fff;
}
.form-checkbox-terms label {
    line-height: 22px;
    position: relative;
    display: inline-block !important;
    padding: 0px !important;
    text-transform: uppercase;
    font-size: 12px;
    color: #666;
    cursor: pointer;
}
.form-checkbox-terms label:before {
	display: none!important;
}
/*=======================================================
post-writter-area
=====================================================*/
.post-writter-area{
	position: relative;
	width: 100%;
	display: inline-block;
}
.post-writter-area .post-writter-image{
	position: relative;
	width: 12%;
	overflow: hidden;
	border-radius: 50%;
	float: left;
	display: inline-block;
}
.post-writter-area .post-writter-image img{
	position: relative;
	width: 100%;
}
.post-writter-area .post-writter-content{
	position: relative;
	width: 88%;
	padding-left: 15px;
	float: left;
	display: inline-block;
}
.post-writter-area .post-writter-content .post_writtne_by {
    position: relative;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}
.post-writter-area .post-writter-content .post_writer_name {
    font-size: 16px;
    margin: 0px;
}
.post-writter-area .post-writter-content .post_writer_name span{
    font-size: 14px;
    margin: 0px;
    font-weight: 400;
}
.post-writter-area .post-writter-content  p{
    font-size: 14px;
    margin: 0px;
    line-height: 22px;
}
.post-writter-area .post-writter-content  .post-with-follow{
	position: relative;
	width: 100%;
	text-align: left;
}

.single-post-wtitter-name{
	position: relative;
	width: 100%;
}
.single-post-wtitter-name h6{
	position: relative;
	font-size: 16px;
	margin: 0px;
}
.single-post-wtitter-name h6 span{
	position: relative;
	font-size: 16px;
	margin: 0px;
	font-weight: 400;
}
.single-post-wtitter-name .circle-seprator{
	position: relative;
	font-size: 6px;
	top: -3px;
	line-height: 20px;
	margin: 0px 10px;
}

/*=======================================================
single post writter area
=====================================================*/
.single-post-writter-area{
	position: relative;
	width: 100%;
	display: inline-block;
}
.single-post-writter-area .single-post-writter-image{
	position: relative;
	width:100%;
	max-width: 90px;
	height: 90px;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 auto;
}
.single-post-writter-area .single-post-writter-image img{
	position: relative;
	width: 100%;
}
.single-post-writter-area .single-post-writter-content{
	position: relative;
	width: 100%;
	text-align: center;
}
.single-post-writter-area .single-post-writter-content .single-post_writtne_by {
    position: relative;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}
.single-post-writter-area .single-post-writter-content .single-post_writer_name {
    font-size: 16px;
    margin: 0px;
}
.single-post-writter-area .single-post-writter-content .single-post_writer_name span{
    font-size: 14px;
    margin: 0px;
    font-weight: 400;
}
.single-post-writter-area .single-post-writter-content  p{
    font-size: 14px;
    margin: 0px;
    line-height: 22px;
}
.single-post-writter-area .single-post-writter-content  .single-post-with-follow{
	position: relative;
	width: 100%;
}
.single-post-writter-area .single-post-writter-content  .single-post-with-follow ul{
	position: relative;
	width: 100%;
	display: inline-block;
}
.single-post-writter-area .single-post-writter-content  .single-post-with-follow ul li{
	position: relative;
	width:auto;
	margin: 2.5px;
	display: inline-block;
}
.single-post-writter-area .single-post-writter-content  .single-post-with-follow ul li a{
	position: relative;
	color: #000;
	display: inline-block;
}

/*=======================================================
commented-post-list-area
=====================================================*/
.commented-post-list-area{
	position: relative;
	width: 100%;
	display: inline-block;
}
.commented-post-list-area .post-writter-image{
	position: relative;
	width: 12%;
	overflow: hidden;
	border-radius: 50%;
	float: left;
	display: inline-block;
}
.commented-post-list-area .post-writter-image img{
	position: relative;
	width: 100%;
}
.commented-post-list-area .post-writter-content{
	position: relative;
	width: 88%;
	padding-left: 15px;
	float: left;
	display: inline-block;
}
.commented-post-list-area .post-writter-content .post_writtne_by {
    position: relative;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}
.commented-post-list-area .post-writter-content .post_writer_name {
    font-size: 16px;
    margin: 0px;
}
.commented-post-list-area .post-writter-content .post_writer_name span{
    font-size: 14px;
    margin: 0px;
    font-weight: 400;
}
.commented-post-list-area .post-writter-content  p{
    font-size: 14px;
    margin: 0px;
    line-height: 22px;
}
.commented-post-list-area .post-writter-content  .post-with-follow{
	position: relative;
	width: 100%;
	text-align: left;
}
.reply-for-comment{
	position: relative;
	display: inline-block;
	background: #000;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 0px 25px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	text-transform: uppercase;
}
/*===================================
Emozy count area
===================================*/
.post-count-emozy-area{
	position: relative;
	width: 100%;
}
.post-count-emozy-area .points-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  margin: 0 auto 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.post-count-emozy-area .points-section {
  flex: 1;
  background: #f5f5f5;
  padding: 12px 0;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.post-count-emozy-area .points-section.arrow {
  width: 70px;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
}

.post-count-emozy-area .points-section.center {
  flex: 2;
  background: #fff;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.post-count-emozy-area .points-section.center small {
  font-size: 11px;
  color: #777;
  letter-spacing: 1px;
  margin-top: 2px;
}
.emoji-grid {
  position: relative;
  background: #f6f7f8;
  padding: 20px;
  border-radius: 12px;
}
.post-count-emozy-area .emoji-card {
  background: #fff;
  position: relative;
  width: 100%;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: 0.3s;
  margin-bottom: 25px;
}

.post-count-emozy-area .emoji-card:hover {
  transform: translateY(-3px);
}

.post-count-emozy-area .emoji-card img {
  width: 45px;
  height: 45px;
}

.post-count-emozy-area .emoji-count {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}

.post-count-emozy-area .emoji-label {
  display: inline-block;
  margin-top: 6px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

/* ===== TAGS ===== */
.post-count-emozy-area .tags {
  margin: 15px 0px 25px 0px;
  font-size: 14px;
  color: #444;
}

.post-count-emozy-area .tags span {
  color: #444;
  font-weight: 600;
  margin-right: 5px;
}
/*=======================================================
categorised-post-slider
=====================================================*/
.categorised-post{
	position: relative;
	width: 100%;
	padding-top: 25px;
	padding-bottom: 25px;
}
.categorised-post .owl-carousel .item {
      background: white;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 8px #ccc;
    }
.categorised-post .owl-carousel .item img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
    }
.categorised-post .owl-carousel .item a {
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	width: 95%;
	margin: 0 auto;
	font-size: 16px;
	text-decoration: none;
    }    
   .categorised-post .owl-nav button {
      font-size: 25px !important;
      color: #333 !important;
      background: none !important;
      border: none !important;
    }
   .categorised-post .owl-carousel .owl-nav{
      position:absolute;
      top: 35%;
      width: 100%;
    }
   .categorised-post .owl-carousel .owl-nav .owl-prev{
    margin: 0;
    position: absolute;
    left:0;
    width: 40px;
    height: 40px;
    background: #ccc !important;
    border-radius: 50%;
    line-height: 31px !important;
    text-align: center;
    z-index: 2;
    padding: 0 !important;
    }    
.categorised-post .owl-carousel .owl-nav .owl-next {
    margin: 0;
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    background: #ccc !important;
    border-radius: 50%;
    line-height: 31px !important;
    text-align: center;
    z-index: 2;
    padding: 0 !important;
}
.categorised-post .owl-carousel .owl-item {
    margin:15px 0px;
    position: relative;
}


.categorised-post .tab {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: inline-block;
  text-align: right;
}

.categorised-post .tab h3{
	position: relative;
	display: inline-block;
	float: left;
	margin-top: 5px;
	font-size: 20px;
}

.categorised-post .tab button {
  background-color: inherit;
  display: inline-block;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 15px;
  transition: 0.3s;
  font-size: 16px;
  margin-right: 5px;
  border-radius: 25px;
}


.categorised-post .tab button:hover {
  background-color: #ddd;
}


.categorised-post .tab button.active {
  background: #ccc;
}


.categorised-post .tabcontent {
  display: none;
  position: relative;
  width: 100%;
  border-top: none;
}
.top-category-lists{
  position: relative;
  width: 100%;
}
.top-category-lists .owl-carousel.six-items{
  position: relative;
  width: 100%;
}
.top-category-lists .top-category-box{
  position: relative;
  width: 100%;
  text-align: center;
}
.top-category-lists .top-category-box .top-category-image-box{
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  margin-bottom: 15px;
}
.single-post-couple-box{
	position: relative;
	width: 100%;
	padding-top: 10px;
	display: inline-block;
}
.single-post-couple-box .single-post-side-left{
	position: relative;
	width: 50%;
	float: left;
	text-align: left;
	display: inline-block;
}
.single-post-couple-box .single-post-side-right{
	position: relative;
	width: 50%;
	float: right;
	text-align: right;
	display: inline-block;
}
.single-post-couple-box .single-post-side-right ul{
	position: relative;
	width: 100%;
	float: right;
	text-align: right;
	display: inline-block;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.single-post-couple-box .single-post-side-right ul li {
    position: relative;
    width: auto;
    display: inline-block;
    margin: 2px;
    padding: 0px;
    list-style: none;
}
.single-post-couple-box .single-post-side-right ul li a {
    position: relative;
    width: auto;
    padding: 0px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    line-height: 32px;
    text-transform: uppercase;
    color: #000;
    display: inline-block;
}
.single-post-couple-box .single-post-side-right ul li a img{
	position: relative;
	width:auto;
	display: inline-block;
}
.single-post-couple-box .single-post-side-left .posted_date4n {
    display: inline-block;
    margin: 0px 0px;
    text-transform: capitalize;
}
.single-post-couple-box .single-post-side-left .posted_by {
    display: inline-block;
    margin: 0px 0px;
    text-transform: uppercase;
}

/*=============================================================
Videos post css here
=============================================================*/
.single-post-videos-section{
	position: relative;
	width: 100%;
	background: #000;
	padding: 50px 0px;
}
.single-post-videos-section .single-post-single-video-box{
	position: relative;
	width: 100%;
}
.single-post-videos-section .single-post-single-video-box h2{
	position: absolute;
	font-size: 20px;
	bottom: 15px;
	left: 15px;
	right: 15px;
	line-height: 24px;
	color: #fff;
	z-index: 2;
}
.single-post-videos-section .single-post-single-video-box iframe{
	position: relative;
	width: 100%;
}
.single-post-videos-section .single-post-single-video-box{
	position: relative;
	width: 100%;
}
.single-post-videos-section .single-post-single-video-box iframe{
	position: relative;
	width: 100%;
}
.single-post-videos-section .single-post-thumb-video-box{
	position: relative;
	width: 100%;
	margin-bottom: 25px;	
}
.single-post-videos-section .single-post-thumb-video-box h2{
	position: relative;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.single-post-videos-section .single-post-thumb-video-box iframe{
	position: relative;
	width: 100%;	
}
/*============================================================================
Post rating css start here
===========================================================================*/
.single-post-rating-area{
	position: relative;
	width: 100%;
	max-width: 350px;
	margin: 15px auto;
	border-radius: 8px;
	border: 2px solid #ccc;
	padding: 15px;
	text-align: center;
}
.single-post-rating-area h4{
	position: relative;
	font-size: 24px;
	margin: 0px 0px 10px 0px;
}
.single-post-rating-area p{
	position: relative;
	font-size: 14px;
	margin: 0px;
}
.single-post-rating-area .single-post-rating-box{
	position: relative;
	text-align: center;
	display: inline-block;
}
.single-post-rating-area .single-post-rating-box ul{
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
	display: inline-block;
}
.single-post-rating-area .single-post-rating-box ul li{
	position: relative;
	width:auto;
	margin: 2px;
	display: inline-block;
}
.single-post-rating-area .single-post-rating-box ul li a{
	position: relative;
	text-decoration: none;
	color: #000;
	font-size: 14px;
	display: inline-block;
}
 .stars {
      display: flex;
      justify-content: center;
      gap: 10px;
      font-size: 16px;
      color: #ccc;
      cursor: pointer;
      transition: color 0.3s;
    }

    .stars .fa {
      transition: transform 0.2s;
    }

    .stars .fa:hover {
      transform: scale(1.2);
    }

    .stars .active {
      color: #ffb400;
    }

    .rating-value {
      margin-top: 15px;
      font-size: 16px;
      font-weight: 500;
      color: #333;
    }
    .header-contact{
    	position: relative;
    	width: 100%;
    	color: #fff;
    	font-size: 16px;
    }
    .blog-header-search{
    	position: relative;
    	width: 100%;
    	padding-top: 20px;
    	display: inline-block;
    }
    .blog-header-search form{
    	position: relative;
    	width: 100%;
    	display: inline-block;
    }    
    .blog-header-search form input{
    	position: relative;
    	width: 100%;
    	height: 36px;
    	padding: 2px 40px 2px 15px;
    	border-radius: 4px;
    	background: #fff;
    	border: 1px solid #ccc;
    	display: inline-block;
    }      
    .blog-header-search form button{
    	position: absolute;
    	width:36px;
    	right: 0;
    	top: 0px;
    	height: 36px;
    	border: none;
    	background: transparent;
    }    
    .search-toggle-btn{
        position: absolute;
    	width:36px;
    	right: 0;
    	top: 0px;
    	height: 36px;
    	border: none;
    	display: none;
    	background: transparent;	
    }    
.headerlogin {
    position: relative;
    width: 100%;
    text-align: center;
    padding-top: 23px;
} 
    .headerlogin a{
    	position: relative;
    	display: inline-block;
    	text-decoration: none;
    	text-transform: uppercase;
    	font-size: 14px;
    } 
.page-water-mark{
	position: absolute;
	top: 600px;
	left: -100px;
	transform: rotate(310deg);
	z-index: -1;
}   
.npssp-logo4institute-area {
    position: relative;
    width: 100%;
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
}   
.npssp-logo4institute-area h4{
    position: relative;
}   
.npssp-logo4institute-area h1{
    position: relative;
}   
.npssp-logo4institute-area h5{
    position: relative;
}   
.Full-Portion-Paper {
    position: relative;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.Full-Portion-Paper h4{
    position: relative;
}
.test-booklet-number {
    position: relative;
    width: 100%;
    display: inline-block;
}
.test321-number {
    position: relative;
    width: 33.3%;
    float: left;
    min-height: 160px;
    border: 1px solid #ccc;
}
.test321-blank-number{
    position: relative;
    width: 33.3%;
    float: left;
    min-height: 160px;	
}
.booklet321-number{
    position: relative;
    width: 33.3%;
    float: left;
    min-height: 160px;
    border: 1px solid #ccc;
}
.tst123num{
	position: relative;
	width: 100%;
	padding: 10px;
	border-bottom: 1px solid #ccc;
	text-align: center;
}
.tst123num p{
	position: relative;
	margin: 0px;
}
.blankDiv{
	position: relative;
	min-height: 90px;
	border-bottom: 1px solid #ccc;
}
.write-check{
	position: relative;
	width: 100%;
	padding: 10px;
	text-align: center;	
}
.write-check p{
	position: relative;
	margin: 0px;	
}
.student-form-detail-area {
    position: relative;
    width: 100%;
    background: #f6f7f8;
    padding: 25px;
    border-radius: 12px;
    margin-top: 50px;
}
.form-row {
   display: flex;
   align-items: center;
   gap: 10px;      
}

.form-row label {
   white-space: nowrap; 
   margin-bottom: 0;
}

.form-row input {
   flex: 1;   
   height: 24px;
   background: transparent;
   border-bottom: 1px solid #ccc;
}
.form-row input {
   flex: 1;   
   height: 24px;
   background: transparent;
   border-bottom: 1px solid #ccc;
}
.form-row input:focus {
    outline: 0;
    box-shadow: none;
    border-color: transparent;
    background-color: transparent;
    border-bottom: 1px solid #ccc;
}
.form-row.figures-row{
	display: inline-block;
	width: 100%;
}
.form-row.figures-row label{
	display: inline-block;
	width: auto;
}
.form-control.digit-input{
	border: 1px solid #ccc;
	height: 40px;
	padding: 0px 5px;
	text-align: center;
	display: inline-block;
	width: 40px;
}
.form-control.digit-input:focus{
	border: 1px solid #ccc;
    outline: 0;
    padding: 0px;
    box-shadow: none;
    background-color: transparent;
}
.question-Paper-header{
	position: relative;
	width: 100%;
	margin-bottom: 25px;
	text-align: center;
}
.question-Paper-header h1{
    position: relative;
    font-size: 32px;
    margin: 0px 0px 15px 0px;
    padding: 0px;
}
.question-Paper-header h3 {
    position: relative;
    font-size: 20px;
    margin: 15px 0px 5px 0px;
    padding: 0px;
}
.question-Paper-header h4{
    position: relative;
    font-size: 20px;
    margin: 0px;
    padding: 0px;
}
.question-Paper-header h5{
    position: relative;
    font-size: 24px;
    margin: 0px;
    padding: 0px;
}
.question-Paper-header p{
    position: relative;
    font-size: 16px;
    margin: 0px;
    font-weight: 600;
    padding: 0px;
}
.top-spacer{
	margin-top: 100px;
}
.question-Paper-header table{
    background: #f7f8f9;
}

/*==============================================
Blog Header css start here
===============================================*/
.menu-list{
	position: relative;
	width: 100%;
	display: inline-block;
}
.menu-list ul{
	position: relative;
	width: 100%;
	display: inline-block;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.menu-list ul li{
	position: relative;
	float: left;
	display: inline-block;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.menu-list ul li a{
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.news-header-area{
	position: relative;
	width: 100%;	
}
.news-header-area .header-top {
    position: relative;
    width: 100%;
    background: #0d5ef4;
    height: 40px;
}
.news-header-area .header-top .menu-list ul li{
	padding: 0px 15px;
	line-height: 40px;
}
.news-header-area .header-top .menu-list ul li:after{
	position: absolute;
	right: 0;
	content: '';
	top: 10px;
	width: 1px;
	height: 20px;
	background: #fff;
}
.news-header-area .header-top .menu-list ul li a{
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: #fff;
}
.news-header-area .header-top .header-links{
	position: relative;
	width: 100%;
	display: inline-block;
	text-align: right;
}
.news-header-area .header-top .header-links ul{
	text-align: right;
	display: inline-block;
	width: auto;
}
.news-header-area .header-top .header-links ul li{
	display: inline-block;
	line-height: 40px;
}
.news-header-area .header-top .header-links ul li a{
	color: #fff;
}
.news-header-area .header-top .header-links ul li a i{
	color: #fff;
}
.news-header-area .header-top .header-links span{
	display: inline-block;
	font-size: 18px;
	color: #fff;
}

.news-header-area .header-second{
	position: relative;
	width: 100%;
	padding: 10px 0px 0px 0px;
	display: inline-block;
	border-bottom: 1px solid #ccc;
}
.news-header-area .header-second .language{
	position: relative;
	width: 100%;
	display: inline-block;
	margin-top: 15px;
}
.news-header-area .header-second .login-box a {
    text-transform: uppercase;
    position: relative;
    background: #0d5ef4;
    padding: 0px 25px;
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    line-height: 32px;
    font-size: 14px;
    margin-top: 15px;
}
.news-header-area .header-second .logo-box{
	position: relative;
	width: 100%;
	text-align: center;
	display: inline-block;
}
.news-header-area .header-second .logo-box img{
	position: relative;
	height: 50px;
	width: auto;
	display: inline-block;
}
.news-header-area .header-second .logo-box span {
    position: relative;
    font-size: 15px;
    display: block;
    top: 0px;
    line-height: 16px;
}
.news-header-area .header-second .login-box{
	position: relative;
	width: 100%;
	text-align:right;
	display: inline-block;
}
.news-header-area .header-second .login-box a {
    text-transform: uppercase;
    position: relative;
    background: #0d5ef4;
    padding: 0px 25px;
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    line-height: 32px;
    font-size: 14px;
}
.header-third {
    position: relative;
    width: 100%;
    background: linear-gradient(45deg, #3d8cc7, #3da7a7);
    height: 42px;
}
.header-third ul li {
    line-height: 40px;
    padding: 0px 20px;
}
.header-third ul li a{
	color: #fff;
}
.news-header-area .header-bottom{
	position: relative;
	width: 100%;
	display: inline-block;
	background: #333;
}
.news-header-area .header-bottom .menu-list {
    position: relative;
    width: 100%;
    height: 40px;
    display: inline-block;
    margin-top: 0px;
    top: 5px;
}
.news-header-area .header-bottom .menu-list h4{
	position: relative;
	font-size: 24px;
	float: left;
	line-height: 40px;
	color: #fff;
	margin-right: 50px;
	margin: 0px;
	display: inline-block;
}
.news-header-area .header-bottom .menu-list ul{
	position: relative;
	width: auto;
	display: inline-block;
}
.news-header-area .header-bottom .menu-list ul li{
	position: relative;
	width: auto;
	line-height: 40px;
	padding: 0px 20px;
	display: inline-block;
}
.news-header-area .header-bottom .menu-list ul li a{
	position: relative;
	color: #fff;
	display: inline-block;
}
.news-header-area .header-bottom .follow-us-box {
    position: relative;
    width: 100%;
    float: right;
    display: inline-block;
    top: 5px;
}
.news-header-area .header-bottom .follow-us-box h4{
	position: relative;
	font-size: 24px;
	float: left;
	line-height: 40px;
	color: #fff;
	margin-right: 50px;
	margin: 0px;
	display: inline-block;
}
.news-header-area .header-bottom .follow-us-box ul{
	position: relative;
	width: auto;
	display: inline-block;
	margin: 0px;
}
.news-header-area .header-bottom .follow-us-box ul li{
	position: relative;
	width: auto;
	line-height: 40px;
	padding: 0px 20px;
	display: inline-block;
}
.news-header-area .header-bottom .follow-us-box ul li a{
	position: relative;
	color: #fff;
	display: inline-block;
}
.header-second .login-box .mViewToggleBtn {
    top: 10px;
    display: none;
    background: transparent;
    border: none;
    color: #000;
    position: relative;
}
.headLogin{
	position: relative;
	display: inline-block;
}
.header-second .login-box .search-toggle-btn {
    position: absolute;
    width: 36px;
    right: 24px;
    top: 6px;
    height: 36px;
    border: none;
    display: none;
    background: transparent;
}

.page-content-section{
	position: relative;
	width: 100%;
	padding: 50px 0px;
}
.side-ads-box{
	position: relative;
	width: 100%;
	margin-bottom: 20px;	
	border-radius: 8px;
	overflow: hidden;
	background: #f6f7f8;
	padding: 10px;
}
.side-ads-img{
	position: relative;
	width: 100%;	
	border-radius: 8px;
	overflow: hidden;
}
.side-ads-img img{
	position: relative;
	width: 100%;
	
}
.side-title-box{
	position: relative;
	width: 100%;
}
.side-title-box h2{
	position: relative;
	font-size: 24px;
	margin-bottom: 10px;
}
.page-combo-contnet-box{
	position: relative;
	width: 100%;	
}
.page-img-box{
	position: relative;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 15px;	
}
.page-img-box img{
	position: relative;
	width: 100%;	
}
.edinFormData{
	position: relative;
	width: 100%;
}
.edinFormData .form-group{
	position: relative;
	width: 100%;
}
.edinFormData .form-group{
	position: relative;
	width: 100%;
	display: inline-block;
	margin:0px;
}
.edinFormData .form-group .radio-inline{
	position: relative;
	width: 100%;
	display: inline-block;
}
.edinFormData .form-group .radio-inline input{
	position: relative;
	width:auto;
	height: 14px;
	width: 14px;
	display: inline-block;
}
.edinFormData .form-group .radio-inline input{
	position: relative;
	width:auto;
	height: 14px;
	width: 14px;
	display: inline-block;
}
.quiz-timer-box{
	position: relative;
	width: 100%;
	background:#009688;
	padding: 10px 15px;
	border-radius: 4px;
	display: inline-block;
}
.quiz-timer-box ul{
	position: relative;
	width: 100%;
	display: inline-block;
	margin: 0px;
}

.quiz-timer-box ul li{
	position: relative;
	width: 33%;
	font-size: 18px;
	float: left;
	color: #fff;
	display: inline-block;
}
.quiz-timer-box ul li:nth-child(2){
	position: relative;
	text-align: center;
}

.quiz-timer-box ul li:last-child{
	position: relative;
	text-align: right;
}
.open-chapterList {
    top: 25px;
    position: absolute;
    right: 70px;
    background: transparent;
    border: none;
    display: none;
}
