@import url(https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap);
:root {
	--body: #fff;
	--black: #000;
	--white: #fff;
	--theme-blue: #181823;
	--theme-blue-2: #553cdf;
	--theme-green: #00e2c5;
	--theme-green-2: #c3f499;
	--theme-green-3: #102f25;
	--theme-yellow: #ffd25d;
	--theme-yellow-2: #f69b17;
	--theme-yellow-3: #fdc500;
	--theme-yellow-4: #ffd335;
	--theme-purple: #8f66ff;
	--theme-red: #fc2947;
	--theme-pink: #ee4a62;
	--theme-orange: #f47900;
	--mian-text: #181823;
	--secondary: #fc2947;
	--body-text: #44444c;
	--special-white: #f8fafc;
	--header: #181823;
	--base: #5c30fd;
	--text: #5b6d84;
	--border: #e6efff;
	--border2: #373737;
	--ratting: #f8bc26;
	--bg: #f4f9ff;
	--bg2: #e6efff;
	--bg3: #f4f0ff;
	--bg4: #2f584e;
	--bg5: #09224b;
	--bg6: #edf3f5;
	--bg7: #f8f2ec;
	--bg8: #f3f1fd;
	---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}
.theme-btn {
	position: relative;
	z-index: 2;
	vertical-align: middle;
	display: inline-flex;
	gap: 15px;
	border: none;
	text-align: center;
	background-color: var(--theme-green);
	color: var(--header);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1;
	padding: 20px 30px;
	overflow: hidden;
	align-items: center;
	border-radius: 10px;
}
.theme-btn i {
	margin-left: 5px;
}
.theme-btn::after,
.theme-btn::before {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	transform: translate(-50%, -50%);
	position: absolute;
	border-radius: 50%;
	z-index: -1;
	background-color: var(--theme-red);
	transition: 1s ease;
}
.theme-btn::before {
	top: -2em;
	left: -2em;
}
.theme-btn::after {
	left: calc(100% + 2em);
	top: calc(100% + 2em);
}
.theme-btn:hover {
	color: var(--white);
	box-shadow: none;
}
.theme-btn:hover::after,
.theme-btn:hover::before {
	height: 410px;
	width: 410px;
}
@media (max-width: 575px) {
	.theme-btn {
		padding: 18px 30px;
		font-size: 14px;
	}
}
body {
	font-family: Sora, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	color: var(--text);
	background-color: var(--white);
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
button {
	border: none;
	background-color: transparent;
	padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Sora, system-ui;
	margin: 0;
	padding: 0;
	color: var(--header);
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
	font-weight: 400;
}
h1 {
	font-size: 32px;
	font-weight: 600;
}
h2 {
	font-size: 55px;
	font-weight: 600;
}
@media (max-width: 1199px) {
	h2 {
		font-size: 42px;
	}
}
@media (max-width: 767px) {
	h2 {
		font-size: 36px;
	}
}
@media (max-width: 575px) {
	h2 {
		font-size: 32px;
	}
}
h3 {
	font-size: 22px;
	font-weight: 600;
}
@media (max-width: 575px) {
	h3 {
		font-size: 20px;
	}
}
h4 {
	font-size: 20px;
	font-weight: 600;
}
h5 {
	font-size: 18px;
	font-weight: 600;
}
h6 {
	font-size: 16px;
	font-weight: 500;
}
a {
	text-decoration: none;
	outline: 0 !important;
	cursor: pointer;
	color: var(--header);
	transition: all 0.4s ease-in-out;
}
p {
	margin: 0;
	transition: all 0.4s ease-in-out;
}
.section-title {
	position: relative;
	z-index: 99;
	margin-bottom: 30px;
	margin-top: -5px;
}
@media (max-width: 767px) {
	.section-title {
		text-align: center;
		margin-bottom: 0;
	}
}
.section-title h6 {
	line-height: 1;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 10px;
	color: var(--theme-blue);
	position: relative;
	display: inline-block;
}
@media (max-width: 575px) {
	.section-title h6 {
		margin-bottom: 10px;
	}
}
.section-title h6::before {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	width: 100%;
	height: 6px;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../../assets/img/bar/top-bar.png);
	animation: width 1.5s linear 2 !important;
	animation-fill-mode: both;
	background-position: center;
}
.section-title-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.section-title-area {
		flex-wrap: wrap;
		gap: 30px;
		margin-bottom: 0;
		justify-content: center;
		text-align: center;
	}
}
.section-title-area .section-title {
	margin-bottom: 0;
}
.section-title-area .nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.section-title-area .nav .nav-item .nav-link {
	font-size: 16px;
	font-weight: 500;
	color: var(--text);
}
.section-title-area .nav .nav-item .nav-link.active {
	color: var(--header);
	position: relative;
	display: inline-block;
}
.section-title-area .nav .nav-item .nav-link.active::before {
	position: absolute;
	bottom: 5px;
	left: 50%;
	right: 0;
	content: '';
	width: 100%;
	height: 5px;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../../assets/img/bar/tab-bar.png);
	animation: width 1.5s linear !important;
	animation-fill-mode: both;
	background-position: center;
	max-width: 70px;
	transform: translateX(-50%);
}
.section-padding {
	padding: 100px 0;
}
@media (max-width: 991px) {
	.section-padding {
		padding: 80px 0;
	}
}
@keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@-webkit-keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@keyframes arryUpDown {
	0% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(10px);
	}
}
@keyframes arryLeftRight {
	0% {
		transform: translateX(-10px);
	}
	100% {
		transform: translateX(10px);
	}
}
@keyframes shine {
	from {
		-webkit-mask-position: 150%;
	}
	to {
		-webkit-mask-position: -50%;
	}
}
@keyframes rounded {
	50% {
		transform: rotate(15deg);
	}
}
@keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}
@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}
@keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}
@-webkit-keyframes letters-loading {
	0%,
	100%,
	75% {
		opacity: 0;
		transform: rotateY(-90deg);
	}
	25%,
	50% {
		opacity: 1;
		transform: rotateY(0);
	}
}
@keyframes letters-loading {
	0%,
	100%,
	75% {
		opacity: 0;
		transform: rotateY(-90deg);
	}
	25%,
	50% {
		opacity: 1;
		transform: rotateY(0);
	}
}
@keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes tpswing {
	0% {
		-webkit-transform: rotate(20deg);
		-ms-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	100% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}
}
@-webkit-keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes loaderpulse {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}
@-webkit-keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}
@keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}
@-webkit-keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(30px);
	}
	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}
@keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}
.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}
@keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes tpswing {
	0% {
		-webkit-transform: rotate(20deg);
		-ms-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	100% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}
}
@-webkit-keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes loaderpulse {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}
@keyframes rounded {
	50% {
		transform: rotate(20deg);
	}
}
@-webkit-keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}
@keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}
@-webkit-keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(30px);
	}
	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}
@keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}
.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}
.header-main .header-right {
	gap: 30px;
}
@media (max-width: 1399px) {
	.header-main .header-right {
		gap: 20px;
	}
}
.header-main .sidebar__toggle {
	cursor: pointer;
	font-size: 20px;
	color: var(--header);
}
.header-1 .header-right {
	gap: 40px;
}
@media (max-width: 1199px) {
	.header-1 .header-right {
		gap: 20px;
	}
}
.header-1 .header-right .header-button {
	display: flex;
	align-items: center;
	gap: 10px;
}
@media (max-width: 1199px) {
	.header-1 .header-right .header-button {
		display: none;
	}
}
.header-1 .header-right .header-button .theme-btn {
	padding: 16px 24px;
}
.header-1 .header-right .header-button .theme-btn.style-2 {
	background: 0 0;
	border: 1px solid var(--border);
	align-items: center;
	gap: 10px;
}
@media (max-width: 1600px) {
	.header-1 .header-right .header-button .theme-btn.style-2 {
		display: none;
	}
}
.header-1 .header-right .header-button .theme-btn.style-2 i {
	margin-left: 0;
	margin-right: 0;
}
.header-1 .sidebar__toggle {
	cursor: pointer;
}
.header-2 {
	background-color: var(--white);
	box-shadow: 10px 4px 60px 0 rgba(184, 184, 184, 0.25);
	border-top: 1px solid var(--border);
}
.header-2 .header-right {
	gap: 20px;
}
.header-2 .header-right .icon-items {
	display: flex;
	align-items: center;
	gap: 10px;
}
.header-2 .header-right .icon-items i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background-color: #c3f499;
	font-size: 14px;
}
.header-2 .header-right .icon-items h6 {
	font-size: 14px;
	font-weight: 600;
}
.header-2 .header-right .icon-items h6 a {
	color: var(--header);
}
.header-2 .header-right .header-button .theme-btn {
	padding: 14px 20px;
}
@media (max-width: 1199px) {
	.header-2 .header-right .header-button .theme-btn {
		display: none;
	}
}
.header-2 .sidebar__toggle {
	cursor: pointer;
}
.header-section-3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
.header-3 .header-main .header-right {
	gap: 35px;
}
@media (max-width: 1199px) {
	.header-3 .header-main .header-right {
		gap: 20px;
	}
}
.header-3 .header-main .sidebar__toggle {
	cursor: pointer;
}
.header-3 .header-button .theme-btn {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
	padding: 14px 20px;
}
@media (max-width: 1199px) {
	.header-3 .header-button .theme-btn {
		display: none;
	}
}
.header-3 .header-button .theme-btn:hover {
	border: 1px solid var(--header);
}
.header-3.style-2 .header-main .theme-btn {
	background-color: var(--theme-pink);
	border: none;
	color: var(--white) !important;
}
.header-3.header-5 .header-main .theme-btn {
	background-color: var(--theme-yellow-4);
	border: none;
	color: var(--header) !important;
}
.header-3.header-5 .header-main .theme-btn:hover {
	color: var(--white);
}
.sticky {
	position: fixed !important;
	top: 0 !important;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: all 0.9s;
	background-color: var(--white);
	-webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
	animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
	box-shadow: var(---box-shadow);
}
@media (max-width: 1399px) {
	.sticky.header-2 .header-button .theme-btn {
		display: none;
	}
}
.sticky.header-3 .header-button .theme-btn {
	border: 1px solid var(--border);
	color: var(--header);
}
.sticky.header-3 .header-button .theme-btn:hover {
	border: 1px solid var(--theme-red);
}
.sticky.header-3 .sidebar__toggle {
	cursor: pointer;
}
.breadcrumb-wrapper {
	position: relative;
	overflow: hidden;
	background-color: rgb(24, 24, 35);
}
.breadcrumb-wrapper::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: var(--white);
	top: 67%;
}
.breadcrumb-wrapper .shape-1 {
	position: absolute;
	right: 0;
	bottom: 33%;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper .shape-1 {
		display: none;
	}
}
.breadcrumb-wrapper .shape-2 {
	position: absolute;
	top: 0;
	left: 0;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper .shape-2 {
		display: none;
	}
}
.breadcrumb-wrapper .shape-3 {
	position: absolute;
	top: 26%;
	left: 12%;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper .shape-3 {
		display: none;
	}
}
.breadcrumb-wrapper .dot-shape {
	position: absolute;
	left: 110px;
	top: 50%;
	animation: float-bob-x 4s linear infinite;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper .dot-shape {
		display: none;
	}
}
.breadcrumb-wrapper .vector-shape {
	position: absolute;
	right: 155px;
	top: 24%;
	animation: cir36 4s linear infinite;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper .vector-shape {
		display: none;
	}
}
.breadcrumb-wrapper .page-heading {
	padding: 120px 0 100px;
	text-align: center;
}
.breadcrumb-wrapper .page-heading h1 {
	font-size: 32;
	color: var(--white);
	margin-bottom: 20px;
}
@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 50px;
	}
}
@media (max-width: 575px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 45px;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	position: relative;
}
@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items {
		gap: 20px;
		flex-wrap: wrap;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
	font-size: 20px;
	color: var(--white);
	text-transform: capitalize;
	position: relative;
}
@media (max-width: 767px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li {
		font-size: 16px;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li:not(:last-child)::before {
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50px;
	right: -30px;
	top: 14px;
	background-color: var(--white);
}
@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li:not(:last-child)::before {
		display: none;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
	color: var(--white);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
	color: var(--theme-red);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li.style-2 {
	color: var(--theme-red);
	text-decoration: none;
}
.breadcrumb-wrapper .page-heading .breadcrumb-image {
	margin-top: 100px;
	position: relative;
	z-index: 1;
}
.breadcrumb-wrapper .page-heading .breadcrumb-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.breadcrumb-wrapper.style-2 {
	position: relative;
	z-index: 9;
}
.breadcrumb-wrapper.style-2::before {
	display: none;
}
.breadcrumb-wrapper.style-2 .shape-1 {
	bottom: 0;
}
.breadcrumb-wrapper.style-2 .page-heading {
	padding: 70px 0 310px;
	text-align: right;
}
.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
	justify-content: start;
	margin-bottom: 130px;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
		margin-bottom: 90px;
	}
}
@media (max-width: 991px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
		margin-bottom: 50px;
	}
}
.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content {
	position: relative;
	z-index: 9;
}
.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
	font-size: 55px;
	color: var(--white);
}
@media (max-width: 991px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
		font-size: 50px;
	}
}
@media (max-width: 767px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
		font-size: 44px;
	}
}
@media (max-width: 575px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
		font-size: 23px;
	}
}
.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items {
	display: flex;
	align-items: center;
	gap: 70px;
	margin-top: 20px;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items {
		flex-wrap: wrap;
		gap: 30px;
	}
}
.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items .client-image-items {
	display: flex;
	align-items: center;
	gap: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-right: 70px;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items .client-image-items {
		padding-right: 0;
		border-right: none;
	}
}
.breadcrumb-wrapper.style-2
	.page-heading
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	span {
	font-size: 14px;
	display: inline-block;
	margin-bottom: 5px;
}
.breadcrumb-wrapper.style-2
	.page-heading
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	h5 {
	font-size: 18px;
	color: var(--white);
}
.breadcrumb-wrapper.style-2
	.page-heading
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	.star {
	color: #ffae5d;
}
.breadcrumb-wrapper.style-2
	.page-heading
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	.star
	b {
	font-size: 16px;
	color: var(--white);
	font-weight: 400;
	display: inline-block;
	padding-left: 10px;
}
.breadcrumb-wrapper.style-3 {
	background-color: #f4f9ff;
}
.breadcrumb-wrapper.style-3::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: var(--white);
	top: 67%;
}
.breadcrumb-wrapper.style-3 .page-heading {
	padding: 70px 0 330px;
}
.breadcrumb-wrapper.style-3 .page-heading h1 {
	color: var(--header);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items {
	margin-bottom: 0;
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li {
	color: var(--text);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li:not(:last-child)::before {
	background-color: var(--text);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li a {
	color: var(--text);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li a:hover {
	color: var(--theme-blue);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li.style-2 {
	color: var(--theme-blue);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-image {
	margin-top: 100px;
	position: relative;
	z-index: 1;
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
@keyframes scrolly {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-60%);
	}
}
@keyframes scrolls {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(100%);
	}
}
::-webkit-scrollbar {
	width: 6px;
	height: 4px;
}
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px var(--theme-red);
	border-radius: 5px;
}
::-webkit-scrollbar-thumb {
	background: var(--theme-red);
	border-radius: 10px;
}
.mt-50 {
	margin-top: 50px;
}
@media (max-width: 767px) {
	.mt-50 {
		margin-top: 35px;
	}
}
@media (max-width: 575px) {
	.mt-50 {
		margin-top: 25px;
	}
}
.mt-40 {
	margin-top: 40px;
}
@media (max-width: 767px) {
	.mt-40 {
		margin-top: 35px;
	}
}
@media (max-width: 575px) {
	.mt-40 {
		margin-top: 25px;
	}
}
.mt-30 {
	margin-top: 30px;
}
@media (max-width: 575px) {
	.mt-30 {
		margin-top: 25px;
	}
}
.sticky-style {
	position: sticky !important;
	top: 100px;
}
.faq-wrapper .faq-image-items .faq-image img {
	width: 100%;
	height: 100%;
	border-radius: 7px;
}
.faq-wrapper .faq-image-items .faq-image.style-2 {
	margin-bottom: 30px;
}
.faq-wrapper .faq-content {
	margin-left: 40px;
}
@media (max-width: 1199px) {
	.faq-wrapper .faq-content {
		margin-left: 0;
	}
}
.faq-wrapper .faq-content .faq-items {
	margin-bottom: 40px;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item {
	border: none;
	border-radius: 0;
	background-color: transparent;
	border-bottom: 1px solid var(--border);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	box-shadow: none;
	font-family: Sora, system-ui;
	color: var(--header);
	padding: 35px 0;
	padding-left: 105px;
}
@media (max-width: 1199px) {
	.faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
		padding-left: 60px;
		padding-right: 40px;
		line-height: 1.4;
	}
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
	padding-left: 105px;
	padding-right: 50px;
	padding-top: 0;
	margin-top: -10px;
	position: relative;
	z-index: 1;
	padding-bottom: 20px;
}
@media (max-width: 1199px) {
	.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
		padding-left: 60px;
	}
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
	color: var(--header);
	line-height: 30px;
	font-family: Sora, sans-serif;
	font-weight: 400;
	font-size: 16px;
}
@media (max-width: 575px) {
	.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
		width: 100%;
		line-height: 28px;
	}
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button {
	background-color: var(--bg);
	color: var(--header);
	padding-left: 105px;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::after {
	display: none;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
	position: absolute;
	content: '\f00d';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	top: 33px;
	left: 50px;
	font-size: 22px;
	text-align: center;
	transition: all 0.4s ease-in-out;
	color: var(--header);
}
@media (max-width: 1199px) {
	.faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
		left: 30px;
	}
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed {
	color: var(--header);
	background-color: transparent;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed::before {
	content: '\f0a9';
	color: var(--header);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-collapse.show {
	background-color: var(--bg);
}
.faq-wrapper.style-2 .faq-content {
	margin-left: 0;
	margin-right: 40px;
}
@media (max-width: 1199px) {
	.faq-wrapper.style-2 .faq-content {
		margin-right: 0;
	}
}
.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-item {
	border-bottom: 1px solid rgba(9, 34, 75, 0.1);
}
.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-button {
	background-color: #fff1e0;
}
.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-button.collapsed {
	color: var(--header);
	background-color: transparent;
}
.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-collapse.show {
	background-color: #fff1e0;
}
.faq-wrapper.style-2 .faq-image-2 {
	position: relative;
}
@media (max-width: 1199px) {
	.faq-wrapper.style-2 .faq-image-2 img {
		width: 100%;
		height: 100%;
	}
}
@media (max-width: 991px) {
	.faq-wrapper.style-2 .faq-image-2 img {
		width: inherit;
		height: initial;
	}
}
@media (max-width: 575px) {
	.faq-wrapper.style-2 .faq-image-2 img {
		width: 100%;
		height: 100%;
	}
}
.faq-wrapper.style-3 .faq-content {
	margin-left: 0;
	margin-right: 40px;
}
@media (max-width: 1199px) {
	.faq-wrapper.style-3 .faq-content {
		margin-right: 0;
	}
	.faq-wrapper.style-3 .faq-content .section-title {
		text-align: left;
	}
}
@media (max-width: 1199px) {
	.faq-wrapper.style-3 .faq-content .faq-items {
		margin-bottom: 0;
	}
}
.faq-wrapper.style-3 .faq-content .faq-items .accordion .accordion-button {
	background-color: var(--white);
}
.faq-wrapper.style-3 .faq-content .faq-items .accordion .accordion-button.collapsed {
	color: var(--header);
}
.faq-wrapper.style-3 .faq-content .faq-items .accordion .accordion-collapse.show {
	background-color: var(--white);
}
.faq-wrapper.style-5 .faq-content {
	margin-left: 0;
}
.faq-section-5 {
	background-color: #f3f1fd;
	position: relative;
	margin-bottom: 100px;
}
@media (max-width: 1399px) {
	.faq-section-5 {
		margin-bottom: 0;
	}
}
.faq-section-5 .faq-image {
	position: absolute;
	top: 100px;
	right: 0;
}
@media (max-width: 1399px) {
	.faq-section-5 .faq-image {
		max-width: 650px;
	}
	.faq-section-5 .faq-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
@media (max-width: 1199px) {
	.faq-section-5 .faq-image {
		position: static;
		margin-bottom: 40px;
		max-width: 1200px;
	}
}
@media (max-width: 991px) {
	.faq-section-5 .faq-image {
		height: 600px;
	}
}
@media (max-width: 767px) {
	.faq-section-5 .faq-image {
		height: 500px;
	}
}
@media (max-width: 575px) {
	.faq-section-5 .faq-image {
		height: 400px;
	}
}
.instagram-image {
	position: relative;
	max-width: 384px;
	z-index: 9;
	overflow: hidden;
	margin: 0 auto;
	text-align: center;
}
.instagram-image img {
	width: 100%;
	height: 100%;
}
.instagram-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: rgba(9, 34, 75, 0.5);
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	-webkit-transition: -webkit-transform 0.5s ease;
	transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	transition: transform 0.5s ease, -webkit-transform 0.5s ease;
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
	z-index: 1;
}
.instagram-image .icon {
	display: inline-block;
	width: 80px;
	height: 80px;
	line-height: 80px;
	background-color: var(--white);
	text-align: center;
	border-radius: 50%;
	color: var(--header);
	position: absolute;
	top: 150%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9;
}
.instagram-image .icon i {
	transform: rotate(-40deg);
}
.instagram-image .icon:hover {
	background-color: var(--theme-red);
	color: var(--white);
}
.instagram-image:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: top center;
	transform-origin: top center;
}
.instagram-image:hover .icon {
	top: 50%;
}
.instagram-image.style-2 {
	border-radius: 10px;
}
.instagram-image.style-2::before {
	border-radius: 10px;
	background: rgba(9, 34, 75, 0.5);
}
.instagram-image.style-2 .icon {
	color: var(--theme-pink);
	font-size: 24px;
}
.instagram-image.style-2 .icon i {
	transform: rotate(0);
}
.instagram-image.style-2 .icon:hover {
	background-color: var(--theme-pink);
	color: var(--white);
}
.instagram-section-2 {
	padding: 0 10px;
}
.social-share a {
	margin-left: 10px;
	transition: all 0.4s ease-in-out;
}
.social-share a:hover {
	color: var(--theme-blue);
}
@-webkit-keyframes slide {
	0% {
		opacity: 0;
		transform: translateX(-150);
	}
	20% {
		opacity: 1;
		transform: translateX(-90);
	}
	80% {
		opacity: 1;
		transform: translateX(90);
	}
	100% {
		opacity: 0;
		transform: translateX(150);
	}
}
@keyframes slide {
	0% {
		opacity: 0;
		transform: translateX(-150);
	}
	20% {
		opacity: 1;
		transform: translateX(-90);
	}
	80% {
		opacity: 1;
		transform: translateX(90);
	}
	100% {
		opacity: 0;
		transform: translateX(150);
	}
}
.business-courses-main-items {
	position: relative;
	overflow: hidden;
	border-radius: 7px;
}
.business-courses-main-items .business-courses-items {
	margin-top: 30px;
	background-color: var(--white);
	border-radius: 7px;
	border: 1px solid var(--theme-blue-2);
	transition: all 0.4s ease-in-out;
	width: 100%;
	height: 100%;
}
.business-courses-main-items .business-courses-items .courses-image {
	padding: 5px 5px 0 5px;
	position: relative;
}
.business-courses-main-items .business-courses-items .courses-image img {
	width: 100%;
	height: 100%;
	border-radius: 7px;
}
.business-courses-main-items .business-courses-items .courses-content {
	padding: 25px 25px;
}
.business-courses-main-items .business-courses-items .courses-content .client-items {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 15px;
}
.business-courses-main-items .business-courses-items .courses-content .client-items .client-img {
	border-radius: 50%;
	width: 25px;
	height: 25px;
}
.business-courses-main-items .business-courses-items .courses-content .client-items p {
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	text-transform: capitalize;
}
.business-courses-main-items .business-courses-items .courses-content .client-items h4 {
	color: var(--theme-blue-2);
}
.business-courses-main-items .business-courses-items .courses-content .star {
	margin-top: 10px;
	margin-bottom: 10px;
}
.business-courses-main-items .business-courses-items .courses-content .star i {
	color: #fd8f21;
	font-size: 14px;
}
.business-courses-main-items .business-courses-items .courses-content .star span {
	display: inline-block;
	font-weight: 400;
	color: var(--header);
	font-size: 16px;
	margin-left: 4px;
}
.courses-main-sidebar-area .courses-main-sidebar {
	border-radius: 7px;
	border: 1px solid var(--border);
	background: #f4f9ff;
	padding: 30px;
	margin-bottom: 20px;
}
.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items:not(:last-child) {
	margin-bottom: 30px;
}
.courses-main-sidebar-area .theme-btn {
	width: 100%;
	justify-content: center;
	gap: 10px;
}
.courses-main-sidebar-area .theme-btn i {
	margin-left: 0;
}
.courses-list-items {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 50px;
	border: 1px solid var(--border);
	border-radius: 7px;
	padding: 5px;
	position: relative;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
	.courses-list-items {
		flex-wrap: wrap;
		gap: 30px;
		padding: 30px;
	}
}
.courses-list-items .price {
	font-size: 27px;
	background-color: var(--theme-blue);
	color: var(--white);
	font-weight: 600;
	padding: 7px 15px;
	border-radius: 10px;
	position: absolute;
	top: 10px;
	right: 10px;
}
@media (max-width: 1399px) {
	.courses-list-items .price {
		top: 30px;
		right: 30px;
	}
}
.courses-list-items::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 1px solid var(--theme-blue);
	border-left: 1px solid var(--theme-blue);
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
	transform: initial;
	border-radius: 7px;
	z-index: -1;
}
.courses-list-items::after {
	position: absolute;
	content: '';
	bottom: 0;
	right: 0;
	width: 0;
	height: 0;
	border-bottom: 1px solid var(--theme-blue);
	border-right: 1px solid var(--theme-blue);
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
	border-radius: 7px;
	z-index: -1;
}
.courses-list-items .thumb {
	max-width: 290px;
	position: relative;
}
.courses-list-items .thumb img {
	width: 100%;
	height: 100%;
	border-radius: 7px;
}
.courses-list-items .thumb .courses-title {
	color: var(--white);
	text-align: center;
	font-size: 35px;
	font-weight: 600;
	letter-spacing: -1.05px;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.courses-list-items .thumb .topic-title {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	color: var(--white);
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.9px;
}
.courses-list-items .content {
	max-width: 600px;
	padding-right: 40px;
}
.courses-list-items .content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
.courses-list-items .content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0 2px;
}
.courses-list-items .content h3 a:hover {
	color: var(--theme-blue);
	background-size: 100% 2px;
	background-image: linear-gradient(var(--theme-blue), var(--theme-blue));
}
.courses-list-items:hover {
	box-shadow: 10px 4px 60px rgba(0, 91, 255, 0.2);
}
.courses-list-items:hover::after {
	width: 100%;
	height: 100%;
	visibility: visible;
	opacity: 1;
}
.courses-list-items:hover::before {
	width: 100%;
	height: 100%;
	visibility: visible;
	opacity: 1;
	transform: initial;
	transform-origin: initial;
}
.courses-details-wrapper {
	margin-top: -275px;
	position: relative;
	z-index: 9;
}
.courses-details-wrapper .courses-image {
	position: relative;
	margin-bottom: 50px;
}
.courses-details-wrapper .courses-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.courses-details-wrapper .courses-details-items .breadcrumb-content {
	position: relative;
	z-index: 9;
	margin-bottom: 50px;
}
.courses-details-wrapper .courses-details-items .breadcrumb-content h1 {
	font-size: 35px;
	color: var(--header);
}
@media (max-width: 575px) {
	.courses-details-wrapper .courses-details-items .breadcrumb-content h1 {
		font-size: 34px;
	}
}
.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 20px;
}
@media (max-width: 1199px) {
	.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items {
		flex-wrap: wrap;
		gap: 30px;
	}
}
.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items .client-image-items {
	display: flex;
	align-items: center;
	gap: 20px;
	border-right: 1px solid var(--border);
	padding-right: 40px;
}
@media (max-width: 1199px) {
	.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items .client-image-items {
		padding-right: 0;
		border-right: none;
	}
}
.courses-details-wrapper
	.courses-details-items
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	span {
	font-size: 14px;
	display: inline-block;
	margin-bottom: 5px;
}
.courses-details-wrapper
	.courses-details-items
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	h5 {
	font-size: 16px;
	color: var(--header);
}
.courses-details-wrapper
	.courses-details-items
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	.star {
	color: #ffae5d;
}
.courses-details-wrapper
	.courses-details-items
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	.star
	b {
	font-size: 16px;
	color: var(--header);
	font-weight: 400;
	display: inline-block;
	padding-left: 10px;
}
.courses-details-wrapper .courses-details-items .courses-image {
	position: relative;
	margin-bottom: 0;
}
.courses-details-wrapper .courses-details-items .courses-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.courses-details-wrapper .courses-details-items .courses-details-content {
	margin-top: 32px;
}
.courses-details-wrapper .courses-details-items .courses-details-content .nav {
	display: flex;
	align-items: center;
	background-color: var(--white);
	box-shadow: 10px 4px 30px rgba(168, 168, 168, 0.2);
	border: 1px solid var(--border);
	border-radius: 10px;
	justify-content: center;
	padding: 14px 30px;
	gap: 80px;
	margin-bottom: 50px;
}
@media (max-width: 1199px) {
	.courses-details-wrapper .courses-details-items .courses-details-content .nav {
		gap: 30px;
		flex-wrap: wrap;
	}
}
.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item {
	padding: 0;
	position: relative;
}
.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link {
	font-size: 18px;
	font-weight: 500;
	color: var(--text);
	position: relative;
}
.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link::before {
	position: absolute;
	right: -40px;
	top: 20px;
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 5px;
	background-color: rgba(0, 91, 255, 0.2);
}
@media (max-width: 1199px) {
	.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link::before {
		display: none;
	}
}
.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link.bb-none::before {
	display: none;
}
.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link.active {
	color: var(--theme-blue);
}
.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link.active::before {
	background-color: var(--theme-blue);
}
.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link.active::after {
	position: absolute;
	bottom: -15px;
	left: 0;
	height: 2px;
	width: 100%;
	content: '';
	background: var(--theme-blue);
	transition: 0.3s;
}
.courses-details-wrapper .courses-details-items .courses-details-content .description-content h3 {
	font-size: 27px;
	margin-bottom: 20px;
}
.courses-details-wrapper .courses-details-items .courses-details-content .description-content .list-item li {
	font-size: 16px;
	font-weight: 500;
	color: var(--header);
}
.courses-details-wrapper .courses-details-items .courses-details-content .description-content .list-item li i {
	color: var(--theme-blue);
	margin-right: 5px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.description-content
	.list-item
	li:not(:last-child) {
	margin-bottom: 10px;
}
.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items h3 {
	font-size: 27px;
	margin-bottom: 30px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-item {
	border: none;
	border-radius: 0;
	margin-bottom: 15px;
	border: 1px solid var(--border);
	border-radius: 7px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-item
	h2
	button {
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	box-shadow: none;
	border-radius: 0 !important;
	padding: 20px 30px;
	font-family: iranyekan;
	color: var(--white);
	background-color: #181823;
	border-bottom: 1px solid var(--border);
	border-radius: 7px;
}
@media (max-width: 575px) {
	.courses-details-wrapper
		.courses-details-items
		.courses-details-content
		.course-curriculum-items
		.courses-faq-items
		.accordion
		.accordion-item
		h2
		button {
		font-size: 17px;
	}
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-item
	.accordion-body {
	padding: 0;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-item
	.accordion-body
	ul
	li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 30px;
}
@media (max-width: 1199px) {
	.courses-details-wrapper
		.courses-details-items
		.courses-details-content
		.course-curriculum-items
		.courses-faq-items
		.accordion
		.accordion-item
		.accordion-body
		ul
		li {
		flex-wrap: wrap;
		gap: 20px;
	}
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-item
	.accordion-body
	ul
	li:not(:last-child) {
	border-bottom: 1px solid var(--border);
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-item
	.accordion-body
	ul
	li
	span {
	font-size: 16px;
	color: var(--text);
	font-weight: 400;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-item
	.accordion-body
	ul
	li
	span
	i {
	margin-right: 10px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-button {
	background-color: transparent;
	color: var(--header);
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-button::after {
	display: none;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-button::before {
	position: absolute;
	content: '\f078';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	top: 18px;
	right: 30px;
	font-size: 16px;
	text-align: center;
	transition: all 0.4s ease-in-out;
	color: var(--header);
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-button.collapsed {
	background-color: transparent;
	color: var(--header);
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.course-curriculum-items
	.courses-faq-items
	.accordion
	.accordion-button.collapsed::before {
	content: '\f054';
	color: var(--header);
	background-color: transparent;
}
.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items h3 {
	margin-bottom: 10px;
}
.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items {
	padding: 40px 50px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background-color: #181823;
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 20px;
}
@media (max-width: 767px) {
	.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items {
		flex-wrap: wrap;
		gap: 20px;
		padding: 30px;
	}
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.instructors-items
	.instructors-box-items
	.content {
	max-width: 521px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.instructors-items
	.instructors-box-items
	.content
	h4 {
	font-size: 22px;
	margin-bottom: 5px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.instructors-items
	.instructors-box-items
	.content
	p {
	margin-top: 25px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.instructors-items
	.instructors-box-items
	.content
	.social-icon {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.instructors-items
	.instructors-box-items
	.content
	.social-icon
	a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	font-size: 16px;
	display: block;
	background: 0 0;
	color: var(--text);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-align: center;
	border: 1px solid var(--border);
	border-radius: 50%;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.instructors-items
	.instructors-box-items
	.content
	.social-icon
	a:hover {
	background-color: var(--theme-blue);
	color: var(--white);
	border: 1px solid var(--theme-blue);
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.instructors-items
	.instructors-box-items.style-2 {
	background-color: var(--white);
}
.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items h3 {
	font-size: 27px;
	margin-bottom: 30px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items {
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 10px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.courses-reviews-box {
	display: flex;
	align-items: center;
	gap: 70px;
	border-bottom: 1px solid var(--border);
	padding-bottom: 10px;
}
@media (max-width: 767px) {
	.courses-details-wrapper
		.courses-details-items
		.courses-details-content
		.courses-reviews-items
		.courses-reviews-box-items
		.courses-reviews-box {
		flex-wrap: wrap;
		gap: 20px;
	}
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.courses-reviews-box
	.reviews-box {
	padding: 50px 34px;
	text-align: center;
	min-width: 248px;
	box-shadow: 10px 4px 60px rgba(182, 182, 182, 0.2);
	background-color: var(--white);
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.courses-reviews-box
	.reviews-box
	h2 {
	font-size: 90px;
	line-height: 1;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.courses-reviews-box
	.reviews-box
	.star {
	color: #ffae5d;
	margin-bottom: 10px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right {
	max-width: 452px;
	width: 100%;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item {
	display: flex;
	align-items: center;
	gap: 30px;
}
@media (max-width: 767px) {
	.courses-details-wrapper
		.courses-details-items
		.courses-details-content
		.courses-reviews-items
		.courses-reviews-box-items
		.reviews-ratting-right
		.reviews-ratting-item {
		flex-wrap: wrap;
		gap: 20px;
	}
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item:not(:last-child) {
	margin-bottom: 15px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.star {
	color: #ffae5d;
	display: flex;
	align-items: center;
	gap: 7px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.star
	i.color-2 {
	color: var(--text);
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	span {
	font-weight: 500;
	color: var(--header);
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.progress {
	background: rgba(255, 174, 93, 0.3);
	justify-content: flex-start;
	border-radius: 0;
	align-items: center;
	position: relative;
	display: flex;
	height: 5px;
	width: 100%;
	max-width: 244px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.progress-value {
	animation: load 3s normal forwards;
	border-radius: 0;
	background: #ffae5d;
	height: 5px;
	width: 0;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.style-two {
	animation: load2 3s normal forwards;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.style-three {
	animation: load3 3s normal forwards;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.style-four {
	animation: load4 3s normal forwards;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.courses-reviews-box-items
	.reviews-ratting-right
	.reviews-ratting-item
	.style-five {
	animation: load5 3s normal forwards;
}
@keyframes load {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
@keyframes load2 {
	0% {
		width: 0;
	}
	100% {
		width: 90%;
	}
}
@keyframes load3 {
	0% {
		width: 0;
	}
	100% {
		width: 80%;
	}
}
@keyframes load4 {
	0% {
		width: 0;
	}
	100% {
		width: 70%;
	}
}
@keyframes load5 {
	0% {
		width: 0;
	}
	100% {
		width: 60%;
	}
}
.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .instructors-box-items {
	padding: 40px 30px;
	display: flex;
	align-items: center;
	gap: 40px;
}
@media (max-width: 767px) {
	.courses-details-wrapper
		.courses-details-items
		.courses-details-content
		.courses-reviews-items
		.instructors-box-items {
		flex-wrap: wrap;
		gap: 20px;
		padding: 30px;
	}
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.instructors-box-items
	.content {
	max-width: 540px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.instructors-box-items
	.content
	h4 {
	font-size: 22px;
	margin-bottom: 5px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.instructors-box-items
	.content
	p {
	margin-top: 15px;
}
.courses-details-wrapper
	.courses-details-items
	.courses-details-content
	.courses-reviews-items
	.instructors-box-items
	.content
	.star {
	color: #ffae5d;
	margin-top: 15px;
}
.courses-details-wrapper .courses-sidebar-area {
	background-color: var(--white);
	border-radius: 7px;
	box-shadow: 10px 4px 60px rgba(200, 200, 200, 0.25);
}
.courses-details-wrapper .courses-sidebar-area .courses-items {
	padding: 10px;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image {
	position: relative;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image img {
	width: 100%;
	height: 100%;
	border-radius: 7px;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image .courses-title {
	color: var(--white);
	text-align: center;
	font-size: 35px;
	font-weight: 600;
	letter-spacing: -1.05px;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image .topic-title {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	color: var(--white);
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -0.9px;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content {
	padding: 30px 25px;
}
@media (max-width: 575px) {
	.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content {
		padding: 10px 15px;
	}
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content h3 {
	font-size: 30px;
	margin-bottom: 15px;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
@media (max-width: 1199px) {
	.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn {
		flex-wrap: wrap;
	}
}
@media (max-width: 575px) {
	.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn {
		display: block !important;
	}
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn {
	background-color: var(--secondary);
	color: var(--white);
}
@media (max-width: 575px) {
	.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn {
		display: block !important;
		margin-top: 15px;
	}
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2 {
	background-color: transparent;
	color: var(--header);
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2::after,
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2::before {
	background-color: var(--theme-red);
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2:hover {
	color: var(--white);
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items {
	border-top: 1px solid var(--border);
	padding: 40px 25px;
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items h5 {
	margin-bottom: 15px;
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
	border-bottom: 1px solid var(--border);
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li span {
	font-size: 16px;
	color: var(--text);
	font-weight: 400;
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li span i {
	margin-right: 10px;
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li .text {
	font-weight: 500;
	color: var(--header);
	text-align: right;
	display: inline-block;
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items .share-btn {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-blue);
	margin-top: 20px;
	display: inline-block;
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items .share-btn i {
	margin-right: 5px;
}
.cart-list-area .theme-btn {
	transition: all 0.4s ease-in-out;
}

.client-content h5 a {
	color: white;
}

.client-content h5 a:hover {
	color: var(--theme-red);
}

.theme-btn {
	position: relative;
	z-index: 2;
	vertical-align: middle;
	display: inline-flex;
	gap: 15px;
	border: none;
	text-align: center;
	background-color: var(--theme-green);
	color: var(--header);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1;
	padding: 20px 30px;
	overflow: hidden;
	align-items: center;
	border-radius: 10px;
}
.theme-btn i {
	margin-left: 5px;
}
.theme-btn::after,
.theme-btn::before {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	transform: translate(-50%, -50%);
	position: absolute;
	border-radius: 50%;
	z-index: -1;
	background-color: var(--header);
	transition: 1s ease;
}
.theme-btn::before {
	top: -2em;
	left: -2em;
}
.theme-btn::after {
	left: calc(100% + 2em);
	top: calc(100% + 2em);
}
.theme-btn:hover {
	color: var(--white);
	box-shadow: none;
}
.theme-btn:hover::after,
.theme-btn:hover::before {
	height: 410px;
	width: 410px;
}
.theme-btn.yellow-btn {
	background-color: var(--special-white);
	color: var(--secondary);
}
.theme-btn.yellow-btn::after,
.theme-btn.yellow-btn::before {
	background-color: var(--secondary);
}
.theme-btn.yellow-btn:hover {
	color: var(--white);
}
@media (max-width: 575px) {
	.theme-btn {
		padding: 18px 30px;
		font-size: 14px;
	}
}
body {
	font-family: Sora, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	color: var(--text);
	background-color: var(--white);
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
button {
	border: none;
	background-color: transparent;
	padding: 0;
}
input:focus {
	color: var(--white);
	outline: 0;
}
input {
	color: var(--white);
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	color: var(--header);
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
	font-weight: 400;
}
h1 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 15px;
	margin-top: 15px;
}
h2 {
	font-size: 27px;
	font-weight: 500;
	margin-bottom: 12px;
	margin-top: 15px;
}
@media (max-width: 1199px) {
	h2,
	h1 {
		font-size: 27px;
		margin-bottom: 12px;
		margin-top: 15px;
	}
}
@media (max-width: 767px) {
	h2,
	h1 {
		font-size: 27px;
		margin-bottom: 12px;
		margin-top: 15px;
	}
}
@media (max-width: 575px) {
	h2,
	h1 {
		font-size: 27px;
		margin-bottom: 12px;
		margin-top: 15px;
	}
}
h3 {
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 12px;
	margin-top: 15px;
}
@media (max-width: 575px) {
	h3 {
		font-size: 21px;
		margin-bottom: 12px;
		margin-top: 15px;
	}
}
h4 {
	font-size: 19px;
	font-weight: 600;
}
h5 {
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 12px;
	margin-top: 15px;
}
h6 {
	font-size: 19px;
	font-weight: 500;
	margin-bottom: 12px;
	margin-top: 15px;
}
a {
	text-decoration: none;
	outline: 0 !important;
	cursor: pointer;
	color: var(--header);
	transition: all 0.4s ease-in-out;
}
figure img {
	border-radius: 8px;
	margin: 12px 0px;
}
.single-content-container p {
	margin-bottom: 12px;
	margin-top: 15px;
}
p {
	margin: 0;
	transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li {
	display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	background: 0 0;
	font-weight: 600;
	transition: all 0.3s ease-in-out;
	margin: 0 2px;
	border: 1.4px solid var(--border);
	font-size: 16px;
	text-align: center;
}
@media (max-width: 767px) {
	.page-nav-wrap ul li .page-numbers {
		margin-top: 10px;
		font-size: 14px;
	}
}
.page-nav-wrap ul li .page-numbers i {
	margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
	background-color: var(--theme-blue);
	color: var(--white);
}
.section-title {
	position: relative;
	z-index: 99;
	margin-bottom: 30px;
	margin-top: -5px;
}
@media (max-width: 767px) {
	.section-title {
		text-align: center;
		margin-bottom: 0;
	}
}
.section-title h6 {
	line-height: 1;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 10px;
	color: var(--theme-blue);
	position: relative;
	display: inline-block;
}
@media (max-width: 575px) {
	.section-title h6 {
		margin-bottom: 10px;
	}
}
.section-title h6::before {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	width: 100%;
	height: 6px;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../../assets/img/bar/top-bar.png);
	animation: width 1.5s linear 2 !important;
	animation-fill-mode: both;
	background-position: center;
}
.section-title h6.yellow-text {
	color: var(--theme-yellow);
}
.section-title h6.yellow-text::before {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	width: 100%;
	height: 6px;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../../assets/img/bar/yellow-bar-2.png);
	animation: width 1.5s linear infinite !important;
	animation-fill-mode: both;
	background-position: center;
}
.section-title.color-yellow h6 {
	color: var(--theme-yellow-3);
	position: relative;
}
.section-title.color-yellow h6::before {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	width: 100%;
	height: 6px;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../../assets/img/bar/yellow-bar-2.png);
	animation: width 1.5s linear !important;
	animation-fill-mode: both;
	background-position: center;
}
.section-title-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.section-title-area {
		flex-wrap: wrap;
		gap: 30px;
		margin-bottom: 0;
		justify-content: center;
		text-align: center;
	}
}
.section-title-area .section-title {
	margin-bottom: 0;
}
.section-title-area .nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.center {
	text-align: center;
	margin: 0 auto;
}
.section-bg {
	background-color: var(--bg) !important;
}
.section-bg-2 {
	background-color: #f3f1fd !important;
}
.section-padding {
	padding: 100px 0;
}
@media (max-width: 991px) {
	.section-padding {
		padding: 80px 0;
	}
}
@keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@-webkit-keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@keyframes arryUpDown {
	0% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(10px);
	}
}
@keyframes arryLeftRight {
	0% {
		transform: translateX(-10px);
	}
	100% {
		transform: translateX(10px);
	}
}
@keyframes shine {
	from {
		-webkit-mask-position: 150%;
	}
	to {
		-webkit-mask-position: -50%;
	}
}
@keyframes cir36 {
	100% {
		transform: rotate(360deg);
	}
}
@keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@-webkit-keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@keyframes bounce-x {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	50% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.GlidingArrow {
	-webkit-animation: slide 5s linear infinite;
	animation: slide 5s linear infinite;
}
.delay1 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
.delay2 {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}
.delay3 {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}
.delay4 {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
}
.delay5 {
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
}
@-webkit-keyframes slide {
	0% {
		opacity: 0;
		transform: translateX(-150);
	}
	20% {
		opacity: 1;
		transform: translateX(-90);
	}
	80% {
		opacity: 1;
		transform: translateX(90);
	}
	100% {
		opacity: 0;
		transform: translateX(150);
	}
}
@keyframes slide {
	0% {
		opacity: 0;
		transform: translateX(-150);
	}
	20% {
		opacity: 1;
		transform: translateX(-90);
	}
	80% {
		opacity: 1;
		transform: translateX(90);
	}
	100% {
		opacity: 0;
		transform: translateX(150);
	}
}
@keyframes img-anim-left {
	0% {
		transform: translateX(-5%);
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
@keyframes img-anim-right {
	0% {
		transform: translateX(5%);
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
@keyframes img-anim-left {
	0% {
		transform: translateX(-5%);
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
@keyframes img-anim-top {
	0% {
		transform: translateY(-5%);
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
@keyframes img-anim-bottom {
	0% {
		transform: translateY(5%);
		clip-path: inset(100% 0 0 0);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
@-webkit-keyframes rippleOne {
	70% {
		-webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
	}
}
@keyframes rippleOne {
	70% {
		-webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
	}
}
@keyframes cir36 {
	100% {
		transform: rotate(360deg);
	}
}
@keyframes rounded {
	50% {
		transform: rotate(15deg);
	}
}
@keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}
@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}
@keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}
@-webkit-keyframes letters-loading {
	0%,
	100%,
	75% {
		opacity: 0;
		transform: rotateY(-90deg);
	}
	25%,
	50% {
		opacity: 1;
		transform: rotateY(0);
	}
}
@keyframes letters-loading {
	0%,
	100%,
	75% {
		opacity: 0;
		transform: rotateY(-90deg);
	}
	25%,
	50% {
		opacity: 1;
		transform: rotateY(0);
	}
}
@keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes tpswing {
	0% {
		-webkit-transform: rotate(20deg);
		-ms-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	100% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}
}
@keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@-webkit-keyframes width {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@-webkit-keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@keyframes loaderpulse {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}
@keyframes rounded {
	50% {
		transform: rotate(20deg);
	}
}
@keyframes cir36 {
	100% {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}
@keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}
@-webkit-keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(30px);
	}
	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}
@keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}
@keyframes bounce-x {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	50% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.breadcrumb-wrapper {
	position: relative;
	overflow: hidden;
	background-color: var(--mian-text);
}
.breadcrumb-wrapper.courses-page-banner::before {
	display: none;
}
.breadcrumb-wrapper.courses-page-banner .breadcrumb-image {
	display: none;
}
.breadcrumb-wrapper.courses-page-banner .page-heading {
	padding: 75px 0 !important;
}
@media (max-width: 767px) {
	.breadcrumb-wrapper.courses-page-banner .page-heading {
		padding: 75px 0;
	}
}
@media (max-width: 575px) {
	.breadcrumb-wrapper.courses-page-banner .page-heading {
		padding: 60px 0;
	}
}
.breadcrumb-wrapper::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: var(--white);
	top: 67%;
}
.breadcrumb-wrapper .shape-1 {
	position: absolute;
	right: 0;
	bottom: 33%;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper .shape-1 {
		display: none;
	}
}
.breadcrumb-wrapper .shape-2 {
	position: absolute;
	top: 0;
	left: 0;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper .shape-2 {
		display: none;
	}
}
.breadcrumb-wrapper .shape-3 {
	position: absolute;
	top: 26%;
	left: 12%;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper .shape-3 {
		display: none;
	}
}
.breadcrumb-wrapper .dot-shape {
	position: absolute;
	left: 110px;
	top: 50%;
	animation: float-bob-x 4s linear infinite;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper .dot-shape {
		display: none;
	}
}
.breadcrumb-wrapper .vector-shape {
	position: absolute;
	right: 155px;
	top: 24%;
	animation: cir36 4s linear infinite;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper .vector-shape {
		display: none;
	}
}
.breadcrumb-wrapper .page-heading {
	padding: 120px 0 100px;
	text-align: center;
}
.breadcrumb-wrapper .page-heading h1 {
	font-size: 55px;
	color: var(--white);
	margin-bottom: 20px;
}
@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 50px;
	}
}
@media (max-width: 575px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 45px;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	position: relative;
}
@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items {
		gap: 20px;
		flex-wrap: wrap;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
	font-size: 20px;
	color: var(--white);
	text-transform: capitalize;
	position: relative;
}
@media (max-width: 767px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li {
		font-size: 16px;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li:not(:last-child)::before {
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50px;
	right: -30px;
	top: 14px;
	background-color: var(--white);
}
@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading .breadcrumb-items li:not(:last-child)::before {
		display: none;
	}
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
	color: var(--white);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
	color: var(--secondary);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li.style-2 {
	color: var(--secondary);
}
.breadcrumb-wrapper .page-heading .breadcrumb-image {
	margin-top: 100px;
	position: relative;
	z-index: 1;
}
.breadcrumb-wrapper .page-heading .breadcrumb-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.breadcrumb-wrapper.style-2 {
	position: relative;
	z-index: 9;
}
.breadcrumb-wrapper.style-2::before {
	display: none;
}
.breadcrumb-wrapper.style-2 .shape-1 {
	bottom: 0;
}
.breadcrumb-wrapper.style-2 .page-heading {
	padding: 70px 0 310px;
	text-align: left;
}
.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
	justify-content: start;
	margin-bottom: 130px;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
		margin-bottom: 90px;
	}
}
@media (max-width: 991px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
		margin-bottom: 50px;
	}
}
.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content {
	position: relative;
	z-index: 9;
}
.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
	font-size: 55px;
	color: var(--white);
}
@media (max-width: 991px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
		font-size: 50px;
	}
}
@media (max-width: 767px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
		font-size: 44px;
	}
}
@media (max-width: 575px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
		font-size: 23px;
	}
}
.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items {
	display: flex;
	align-items: center;
	gap: 70px;
	margin-top: 20px;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items {
		flex-wrap: wrap;
		gap: 30px;
	}
}
.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items .client-image-items {
	display: flex;
	align-items: center;
	gap: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-right: 70px;
}
@media (max-width: 1199px) {
	.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items .client-image-items {
		padding-right: 0;
		border-right: none;
	}
}
.breadcrumb-wrapper.style-2
	.page-heading
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	span {
	font-size: 14px;
	display: inline-block;
	margin-bottom: 5px;
}
.breadcrumb-wrapper.style-2
	.page-heading
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	h5 {
	font-size: 17px;
	color: var(--white);
}
.breadcrumb-wrapper.style-2
	.page-heading
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	.star {
	color: #ffae5d;
}
.breadcrumb-wrapper.style-3 {
	background-color: #f4f9ff;
}
.breadcrumb-wrapper.style-3::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: var(--white);
	top: 67%;
}
.breadcrumb-wrapper.style-3 .page-heading {
	padding: 70px 0 330px;
}
.breadcrumb-wrapper.style-3 .page-heading h1 {
	color: var(--header);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items {
	margin-bottom: 0;
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li {
	color: var(--text);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li:not(:last-child)::before {
	background-color: var(--text);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li a {
	color: var(--text);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li a:hover {
	color: var(--theme-blue);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li.style-2 {
	color: var(--theme-blue);
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-image {
	margin-top: 100px;
	position: relative;
	z-index: 1;
}
.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
@keyframes scrolly {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-60%);
	}
}
@keyframes scrolls {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(100%);
	}
}
::-webkit-scrollbar {
	width: 6px;
	height: 4px;
}
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px var(--theme-red);
	border-radius: 5px;
}
::-webkit-scrollbar-thumb {
	background: var(--theme-red);
	border-radius: 10px;
}
.fix {
	overflow: hidden;
}
.bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-position: center;
}
.search_widget form {
	width: 100%;
	position: relative;
}
.search_widget form input {
	background-color: var(--bg);
	font-size: 15px;
	padding: 20px;
	width: 100%;
	border: none;
	text-transform: capitalize;
	color: var(--header);
}
.search_widget form button {
	position: absolute;
	right: 0;
	top: 0;
	width: 70px;
	font-size: 18px;
	height: 100%;
	background-color: var(--theme-blue);
	color: var(--white);
	text-align: center;
	transition: all 0.3s ease-in-out;
}
.search_widget form button:hover {
	background-color: var(--header);
}
.courses-card-main-items {
	position: relative;
	overflow: hidden;
	border-radius: 7px;
}
.courses-card-main-items .courses-card-items {
	background-color: var(--white);
	border-radius: 7px;
	border: 1px solid var(--border);
	transition: all 0.4s ease-in-out;
	width: 100%;
	height: 100%;
}
.courses-card-main-items .courses-card-items .courses-image {
	padding: 5px 5px 0 5px;
	position: relative;
}
.courses-card-main-items .courses-card-items .courses-image img {
	width: 100%;
	height: 100%;
	border-radius: 7px;
}
.courses-card-main-items .courses-card-items .courses-image .courses-title {
	color: var(--white);
	text-align: center;
	font-size: 35px;
	font-weight: 600;
	letter-spacing: -1.05px;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.courses-card-main-items .courses-card-items .courses-image .topic-title {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	color: var(--white);
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.9px;
}
.courses-card-main-items .courses-card-items .courses-image .arrow-items {
	position: absolute;
	left: 27px;
	top: 44%;
	display: flex;
	align-items: center;
}
.courses-card-main-items .courses-card-items .courses-content {
	padding: 25px 30px;
}
.courses-card-main-items .courses-card-items .courses-content .post-cat {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.courses-card-main-items .courses-card-items .courses-content .post-cat li i {
	font-size: 14px;
	color: var(--theme-yellow);
	transition: all 0.4s ease-in-out;
}
.courses-card-main-items .courses-card-items .courses-content .post-cat li a {
	display: inline-block;
	padding: 8px 10px;
	align-items: center;
	background-color: var(--bg);
	font-weight: 500;
	font-size: 14px;
	color: var(--theme-blue);
	line-height: 1;
	border-radius: 7px;
}
.courses-card-main-items .courses-card-items .courses-content .client-items {
	margin-top: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--border);
}
.courses-card-main-items .courses-card-items .courses-content .client-items .client-img {
	border-radius: 50%;
	width: 25px;
	height: 25px;
}
.courses-card-main-items .courses-card-items .courses-content .client-items p {
	font-size: 14px;
	font-weight: 500;
	color: var(--header);
	text-transform: capitalize;
}
.courses-card-main-items .courses-card-items .courses-content .post-class {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}
@media (max-width: 1399px) {
	.courses-card-main-items .courses-card-items .courses-content .post-class {
		flex-wrap: wrap;
		gap: 10px;
	}
}
.courses-card-main-items .courses-card-items .courses-content .post-class li {
	font-size: 14px;
	color: var(--header);
}
.courses-card-main-items .courses-card-items .courses-content .post-class li i {
	color: var(--text);
	margin-right: 5px;
}
.courses-card-main-items .courses-card-items.style-2 {
	opacity: 1;
	visibility: visible;
}
.courses-card-main-items .courses-card-items.style-2 .courses-image .courses-title {
	font-size: 30px;
}
.courses-card-main-items .courses-card-items.style-2 .courses-image .topic-title {
	font-size: 20px;
}
.courses-card-main-items .courses-card-items.style-2 .courses-content h3 a:hover {
	color: var(--theme-blue);
}
.courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn {
	padding: 12px 15px;
	font-size: 14px;
	background: 0 0;
	border: 1px solid var(--border);
	color: var(--text);
}
.courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn::after,
.courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn::before {
	background-color: var(--theme-orange);
}
.courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn:hover {
	color: var(--white);
}
.courses-card-main-items .courses-card-items.style-2:hover {
	box-shadow: 10px 4px 60px rgba(143, 102, 255, 0.3);
}
.courses-card-main-items .courses-card-items-hover {
	padding: 30px;
	background-color: var(--theme-blue);
	border-radius: 7px;
	border: 1px solid var(--theme-blue);
	transition: all 0.2s linear;
	top: 0;
	right: -100%;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
	margin-bottom: 15px;
}
@media (max-width: 767px) {
	.courses-card-main-items .courses-card-items-hover {
		padding-top: 70px;
	}
}
.courses-card-main-items .courses-card-items-hover .courses-content .post-cat {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.courses-card-main-items .courses-card-items-hover .courses-content .post-cat li i {
	font-size: 14px;
	color: var(--white);
	transition: all 0.4s ease-in-out;
}
.courses-card-main-items .courses-card-items-hover .courses-content .post-cat li a {
	display: inline-block;
	padding: 8px 10px;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.1);
	font-weight: 500;
	font-size: 14px;
	color: var(--white);
	line-height: 1;
	border-radius: 7px;
}
.courses-card-main-items .courses-card-items-hover .courses-content .post-cat li a:hover {
	background-color: var(--white);
	color: var(--header);
}
@media (max-width: 767px) {
	.courses-card-main-items .courses-card-items-hover .courses-content h5 {
		font-size: 19px;
	}
}
.courses-card-main-items .courses-card-items-hover .courses-content h5 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0 2px;
	display: inline;
	color: var(--white);
	font-family: 19px;
	line-height: 1.6em !important;
}
.courses-card-main-items .courses-card-items-hover .courses-content h5 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(var(--white), var(--white));
	font-family: 19px;
	line-height: 1.6em !important;
}
.courses-card-main-items .courses-card-items-hover .courses-content h4 {
	color: var(--white);
	font-size: 21px;
	padding: 15px 0;
	line-height: 1.6em !important;
}
.courses-card-main-items .courses-card-items-hover .courses-content span {
	color: var(--white);
	font-size: 13px;
	font-weight: 400;
}
.courses-card-main-items .courses-card-items-hover .courses-content .client-items {
	margin-top: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--white);
	padding-bottom: 25px;
}
.courses-card-main-items .courses-card-items-hover .courses-content .client-items .client-img {
	border-radius: 50%;
	width: 25px;
	height: 25px;
}
.courses-card-main-items .courses-card-items-hover .courses-content .client-items p {
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
	text-transform: capitalize;
}
.courses-card-main-items .courses-card-items-hover .courses-content .post-class {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}
.courses-card-main-items .courses-card-items-hover .courses-content .post-class li {
	font-size: 14px;
	color: var(--white);
}
.courses-card-main-items .courses-card-items-hover .courses-content .post-class li i {
	color: var(--white);
	margin-right: 5px;
}
.courses-card-main-items .courses-card-items-hover .courses-content .theme-btn {
	padding: 15px 25px;
	margin-top: 19px;
}
@media (max-width: 575px) {
	.courses-card-main-items .courses-card-items-hover .courses-content .theme-btn {
		width: 100%;
		display: block;
		text-align: center;
	}
}
.courses-card-main-items:hover .courses-card-items {
	opacity: 0;
	visibility: hidden;
}
.courses-card-main-items:hover .courses-card-items.style-2 {
	opacity: 1;
	visibility: visible;
	right: 0;
	transform: initial;
}
.courses-card-main-items:hover .courses-card-items-hover {
	opacity: 1;
	visibility: visible;
	right: 0;
}
.courses-card-main-items .GlidingArrow {
	-webkit-animation: slide 5s linear infinite;
	animation: slide 5s linear infinite;
}
.courses-card-main-items .delay1 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
.courses-card-main-items .delay2 {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}
.courses-card-main-items .delay3 {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}
.courses-card-main-items .delay4 {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
}
.courses-card-main-items .delay5 {
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
}
@-webkit-keyframes slide {
	0% {
		opacity: 0;
		transform: translateX(-150);
	}
	20% {
		opacity: 1;
		transform: translateX(-90);
	}
	80% {
		opacity: 1;
		transform: translateX(90);
	}
	100% {
		opacity: 0;
		transform: translateX(150);
	}
}
@keyframes slide {
	0% {
		opacity: 0;
		transform: translateX(-150);
	}
	20% {
		opacity: 1;
		transform: translateX(-90);
	}
	80% {
		opacity: 1;
		transform: translateX(90);
	}
	100% {
		opacity: 0;
		transform: translateX(150);
	}
}
.business-courses-main-items {
	position: relative;
	overflow: hidden;
	border-radius: 7px;
}
.business-courses-main-items .business-courses-items {
	margin-top: 30px;
	background-color: var(--white);
	border-radius: 7px;
	border: 1px solid var(--theme-blue-2);
	transition: all 0.4s ease-in-out;
	width: 100%;
	height: 100%;
}
.business-courses-main-items .business-courses-items .courses-image {
	padding: 5px 5px 0 5px;
	position: relative;
}
.business-courses-main-items .business-courses-items .courses-image img {
	width: 100%;
	height: 100%;
	border-radius: 7px;
}
.business-courses-main-items .business-courses-items .courses-content {
	padding: 25px 25px;
}
.business-courses-main-items .business-courses-items .courses-content .client-items {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 15px;
}
.business-courses-main-items .business-courses-items .courses-content .client-items .client-img {
	border-radius: 50%;
	width: 25px;
	height: 25px;
}
.business-courses-main-items .business-courses-items .courses-content .client-items p {
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	text-transform: capitalize;
}
.business-courses-main-items .business-courses-items .courses-content .client-items h4 {
	color: var(--theme-blue-2);
}
.business-courses-main-items .business-courses-items .courses-content .star {
	margin-top: 10px;
	margin-bottom: 10px;
}
.business-courses-main-items .business-courses-items .courses-content .star i {
	color: #fd8f21;
	font-size: 14px;
}
.business-courses-main-items .business-courses-items .courses-content .star span {
	display: inline-block;
	font-weight: 400;
	color: var(--header);
	font-size: 16px;
	margin-left: 4px;
}
.business-courses-main-items .business-courses-items .courses-content .post-class {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	border-top: 1px solid var(--border);
	padding-top: 25px;
}
.business-courses-main-items .business-courses-items .courses-content .post-class li {
	font-size: 14px;
	color: var(--header);
}
.business-courses-main-items .business-courses-items .courses-content .post-class li i {
	color: var(--text);
	margin-right: 5px;
}
.business-courses-main-items .courses-card-items-hover {
	margin-top: 30px;
	padding: 25px;
	background-color: var(--theme-blue-2);
	border-radius: 7px;
	border: 1px solid var(--theme-blue-2);
	transition: all 0.2s linear;
	top: 0;
	right: -100%;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
}
@media (max-width: 1199px) {
	.business-courses-main-items .courses-card-items-hover {
		padding-top: 60px;
	}
}
@media (max-width: 991px) {
	.business-courses-main-items .courses-card-items-hover {
		padding-top: 70px;
	}
}
@media (max-width: 767px) {
	.business-courses-main-items .courses-card-items-hover {
		padding-top: 100px;
	}
}
.business-courses-main-items .courses-card-items-hover .courses-content .star {
	margin-top: 10px;
	margin-bottom: 10px;
}
.business-courses-main-items .courses-card-items-hover .courses-content .star i {
	color: var(--theme-yellow-4);
	font-size: 14px;
}
.business-courses-main-items .courses-card-items-hover .courses-content .star span {
	display: inline-block;
	font-weight: 400;
	color: var(--white);
	font-size: 16px;
	margin-left: 4px;
}
.business-courses-main-items .courses-card-items-hover .courses-content h5 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0 2px;
	display: inline;
}
.business-courses-main-items .courses-card-items-hover .courses-content h5 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(var(--white), var(--white));
}
.business-courses-main-items .courses-card-items-hover .courses-content h4 {
	color: var(--white);
	font-size: 20px;
}
.business-courses-main-items .courses-card-items-hover .courses-content span {
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
	display: inline-block;
}
.business-courses-main-items .courses-card-items-hover .courses-content .client-items {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.business-courses-main-items .courses-card-items-hover .courses-content .client-items .client-img {
	border-radius: 50%;
	width: 25px;
	height: 25px;
}
.business-courses-main-items .courses-card-items-hover .courses-content .client-items p {
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
	text-transform: capitalize;
}
.business-courses-main-items .courses-card-items-hover .courses-content .theme-btn {
	padding: 15px 25px;
	margin-top: 19px;
	background-color: var(--theme-yellow-4);
}
.business-courses-main-items .courses-card-items-hover .courses-content .theme-btn::after,
.business-courses-main-items .courses-card-items-hover .courses-content .theme-btn::before {
	background-color: var(--white);
}
.business-courses-main-items .courses-card-items-hover .courses-content .theme-btn:hover {
	color: var(--header);
}
.business-courses-main-items:hover .courses-card-items {
	opacity: 0;
	visibility: hidden;
}
.business-courses-main-items:hover .courses-card-items.style-2 {
	opacity: 1;
	visibility: visible;
	right: 0;
	transform: initial;
}
.business-courses-main-items:hover .courses-card-items-hover {
	opacity: 1;
	visibility: visible;
	right: 0;
}
.courses-main-sidebar-area .courses-main-sidebar {
	border-radius: 7px;
	border: 1px solid var(--border);
	background: #f4f9ff;
	padding: 30px;
	margin-bottom: 20px;
}
.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .wid-title {
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(0, 91, 255, 0.1);
	padding-bottom: 20px;
}
.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .wid-title.style-2 {
	border: none;
	padding-bottom: 0;
}
.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items:not(:last-child) {
	margin-bottom: 30px;
}
.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .search-widget form {
	width: 100%;
	position: relative;
}
.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .search-widget form input {
	background-color: var(--white);
	padding: 16px 20px;
	width: 100%;
	border: none;
	color: var(--header);
	font-size: 14px;
	line-height: 1;
	border: 1px solid var(--theme-blue);
	border-radius: 7px;
}
.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .search-widget form button {
	position: absolute;
	right: 20px;
	top: 1px;
	font-size: 18px;
	height: 100%;
	color: var(--header);
	text-align: center;
	transition: all 0.3s ease-in-out;
}
.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single {
	position: relative;
	padding-left: 18px;
	cursor: pointer;
	display: block;
}
.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.courses-main-sidebar-area
	.courses-main-sidebar
	.courses-sidebar-items
	.courses-list
	.checkbox-single:not(:last-child) {
	margin-bottom: 10px;
}
.courses-main-sidebar-area
	.courses-main-sidebar
	.courses-sidebar-items
	.courses-list
	.checkbox-single
	.checkbox-area
	.checkmark {
	position: absolute;
	left: 0;
	height: 20px;
	width: 20px;
	border-radius: 5px;
	border: 1px solid rgba(0, 91, 255, 0.15);
	background-color: var(--white);
	top: 5px;
}
.courses-main-sidebar-area
	.courses-main-sidebar
	.courses-sidebar-items
	.courses-list
	.checkbox-single
	.checkbox-area
	.checkmark::after {
	content: '';
}
.courses-main-sidebar-area
	.courses-main-sidebar
	.courses-sidebar-items
	.courses-list
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark {
	background-color: var(--theme-blue);
}
.courses-main-sidebar-area
	.courses-main-sidebar
	.courses-sidebar-items
	.courses-list
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark::after {
	content: '\f00c';
	position: absolute;
	font-family: 'Font Awesome 5 Pro';
	top: -5px;
	left: 5px;
	color: var(--theme-blue);
	font-size: 11px;
}
.courses-main-sidebar-area
	.courses-main-sidebar
	.courses-sidebar-items
	.courses-list
	.checkbox-single
	.checkbox-area
	input:checked
	~ .checkmark:after {
	display: block;
	color: var(--white);
}
.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single .text-color {
	font-weight: 400;
	color: var(--text);
	font-size: 14px;
}
.courses-main-sidebar-area
	.courses-main-sidebar
	.courses-sidebar-items
	.courses-list
	.checkbox-single
	.text-color
	.star {
	color: #fd8f21;
	margin-right: 5px;
}
.courses-main-sidebar-area
	.courses-main-sidebar
	.courses-sidebar-items
	.courses-list
	.checkbox-single
	.text-color
	.star
	i.color-2 {
	color: var(--text);
}
.courses-main-sidebar-area .theme-btn {
	width: 100%;
	justify-content: center;
	gap: 10px;
}
.courses-main-sidebar-area .theme-btn i {
	margin-left: 0;
}
.courses-list-items {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 50px;
	border: 1px solid var(--border);
	border-radius: 7px;
	padding: 5px;
	position: relative;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
	.courses-list-items {
		flex-wrap: wrap;
		gap: 30px;
		padding: 30px;
	}
}
.courses-list-items::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 1px solid var(--theme-blue);
	border-left: 1px solid var(--theme-blue);
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
	transform: initial;
	border-radius: 7px;
	z-index: -1;
}
.courses-list-items::after {
	position: absolute;
	content: '';
	bottom: 0;
	right: 0;
	width: 0;
	height: 0;
	border-bottom: 1px solid var(--theme-blue);
	border-right: 1px solid var(--theme-blue);
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
	border-radius: 7px;
	z-index: -1;
}
.courses-list-items .content {
	max-width: 600px;
	padding-right: 40px;
}
.courses-list-items .content .post-cat {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.courses-list-items .content .post-cat li i {
	font-size: 14px;
	color: #ffae5d;
	transition: all 0.4s ease-in-out;
}
.courses-list-items .content .post-cat li a {
	display: inline-block;
	padding: 8px 10px;
	align-items: center;
	border-radius: 7px;
	background: rgba(0, 91, 255, 0.1);
	font-weight: 500;
	font-size: 14px;
	color: var(--theme-blue);
	line-height: 1;
}
.courses-list-items .content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
.courses-list-items .content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0 2px;
}
.courses-list-items .content h3 a:hover {
	color: var(--theme-blue);
	background-size: 100% 2px;
	background-image: linear-gradient(var(--theme-blue), var(--theme-blue));
}
.courses-list-items .content .post-class {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	border-top: 1px solid var(--border);
	padding-top: 20px;
}
@media (max-width: 1399px) {
	.courses-list-items .content .post-class {
		flex-wrap: wrap;
		gap: 10px;
	}
}
.courses-list-items .content .post-class li {
	font-size: 14px;
	color: var(--header);
}
.courses-list-items .content .post-class li i {
	color: var(--text);
	margin-right: 5px;
}
.courses-list-items .content .post-class li .client-items {
	display: flex;
	align-items: center;
	gap: 10px;
}
.courses-list-items .content .post-class li .client-items .client-img {
	border-radius: 50%;
	width: 25px;
	height: 25px;
}
.courses-list-items .content .post-class li .client-items p {
	font-size: 14px;
	font-weight: 500;
	color: var(--header);
	text-transform: capitalize;
}
.courses-list-items:hover {
	box-shadow: 10px 4px 60px rgba(0, 91, 255, 0.2);
}
.courses-list-items:hover::after {
	width: 100%;
	height: 100%;
	visibility: visible;
	opacity: 1;
}
.courses-list-items:hover::before {
	width: 100%;
	height: 100%;
	visibility: visible;
	opacity: 1;
	transform: initial;
	transform-origin: initial;
}
.courses-details-wrapper {
	margin-top: -275px;
	position: relative;
	z-index: 9;
}
.courses-details-wrapper .courses-image {
	position: relative;
	margin-bottom: 50px;
}
.courses-details-wrapper .courses-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.courses-details-wrapper .courses-details-items .breadcrumb-content {
	position: relative;
	z-index: 9;
	margin-bottom: 50px;
}
.courses-details-wrapper .courses-details-items .breadcrumb-content h1 {
	font-size: 35px;
	color: var(--header);
}
@media (max-width: 575px) {
	.courses-details-wrapper .courses-details-items .breadcrumb-content h1 {
		font-size: 34px;
	}
}
.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 20px;
}
@media (max-width: 1199px) {
	.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items {
		flex-wrap: wrap;
		gap: 30px;
	}
}
.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items .client-image-items {
	display: flex;
	align-items: center;
	gap: 20px;
	border-right: 1px solid var(--border);
	padding-right: 40px;
}
@media (max-width: 1199px) {
	.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items .client-image-items {
		padding-right: 0;
		border-right: none;
	}
}
.courses-details-wrapper
	.courses-details-items
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	span {
	font-size: 14px;
	display: inline-block;
	margin-bottom: 5px;
}
.courses-details-wrapper
	.courses-details-items
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	h5 {
	font-size: 16px;
	color: var(--header);
}
.courses-details-wrapper
	.courses-details-items
	.breadcrumb-content
	.courses-breadcrumb-items
	.client-image-items
	.client-content
	.star {
	color: #ffae5d;
}
.courses-details-wrapper .courses-details-items .courses-image {
	position: relative;
	margin-bottom: 0;
}
.courses-details-wrapper .courses-details-items .courses-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.courses-details-wrapper .courses-details-items .courses-details-content {
	margin-top: 32px;
}
.courses-details-wrapper .courses-details-items .courses-details-content .nav {
	display: flex;
	align-items: center;
	background-color: var(--white);
	box-shadow: 10px 4px 30px rgba(168, 168, 168, 0.2);
	border: 1px solid var(--border);
	border-radius: 10px;
	justify-content: center;
	padding: 14px 30px;
	gap: 80px;
	margin-bottom: 50px;
}
@media (max-width: 1199px) {
	.courses-details-wrapper .courses-details-items .courses-details-content .nav {
		gap: 30px;
		flex-wrap: wrap;
	}
}
@keyframes load {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
@keyframes load2 {
	0% {
		width: 0;
	}
	100% {
		width: 90%;
	}
}
@keyframes load3 {
	0% {
		width: 0;
	}
	100% {
		width: 80%;
	}
}
@keyframes load4 {
	0% {
		width: 0;
	}
	100% {
		width: 70%;
	}
}
@keyframes load5 {
	0% {
		width: 0;
	}
	100% {
		width: 60%;
	}
}
.courses-details-wrapper .courses-sidebar-area {
	background-color: var(--white);
	border-radius: 7px;
	box-shadow: 10px 4px 60px rgba(200, 200, 200, 0.25);
}
.courses-details-wrapper .courses-sidebar-area .courses-items {
	padding: 10px;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image {
	position: relative;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image img {
	width: 100%;
	height: 100%;
	border-radius: 7px;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image .courses-title {
	color: var(--white);
	text-align: center;
	font-size: 35px;
	font-weight: 600;
	letter-spacing: -1.05px;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image .topic-title {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	color: var(--white);
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -0.9px;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image .arrow-items {
	position: absolute;
	left: 27px;
	top: 44%;
	display: flex;
	align-items: center;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content {
	padding: 30px 25px;
}
@media (max-width: 575px) {
	.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content {
		padding: 10px 15px;
	}
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content h3 {
	font-size: 30px;
	margin-bottom: 15px;
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
@media (max-width: 1199px) {
	.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn {
		flex-wrap: wrap;
	}
}
@media (max-width: 575px) {
	.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn {
		display: block !important;
	}
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn {
	background-color: var(--secondary);
	color: var(--white);
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn:hover {
	background-color: var(--secondary);
	color: var(--white);
}
@media (max-width: 575px) {
	.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn {
		display: block !important;
		margin-top: 15px;
	}
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2 {
	background-color: transparent;
	border: 1px solid var(--border);
	color: var(--header);
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2::after,
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2::before {
	background-color: var(--secondary);
}
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2:hover {
	color: var(--white);
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items {
	border-top: 1px solid var(--border);
	padding: 40px 25px;
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items h5 {
	margin-bottom: 15px;
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
	border-bottom: 1px solid var(--border);
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li span {
	font-size: 16px;
	color: var(--text);
	font-weight: 400;
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li span i {
	margin-right: 10px;
}
.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li .text {
	font-weight: 500;
	color: var(--header);
	text-align: right;
	display: inline-block;
}

ul.post-cat::after,
ul.post-cat::before,
ul.post-class::before,
ul.post-class::after {
	content: none !important;
	display: none !important;
}

body
	> section.courses-section.section-padding.fix
	> div
	> div
	> div.col-xl-9.col-lg-8
	> div
	> .col-xl-4.col-lg-6.col-md-6 {
	margin-top: 0px !important;
	margin-bottom: 15px;
}

.courses-card-main-items {
	margin-bottom: 20px;
}

h5.course-title {
	font-size: 17px;
	line-height: 1.6em !important;
	min-height: auto !important;
}

.accordion-header {
	margin-top: 0px !important;
}
