@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800;900&display=swap");
@import url("https://fonts.cdnfonts.com/css/futurica");
@import url("https://fonts.cdnfonts.com/css/gotham-rounded");

@font-face {
	font-family: "Futurica";
	src: url("futurica/Futurica.ttf");
}

@font-face {
	font-family: "Gotham Rounded";
	src: url("gotham-rounded/GothamRounded-Bold.otf");
}

body {
	background: #fafafa !important;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a,
button,
i {
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

a,
a:hover {
	text-decoration: none !important;
}

input:focus,
textarea:focus {
	outline: none;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

button {
	border: none;
}

button:focus {
	outline: none;
}

section {
	padding: 90px 0;
}

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

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

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0px;
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: rgb(166 80 166);
	border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgb(166 80 166);
}

a,
span,
p,
input,
input::-webkit-input-placeholder {
	font-family: "Mulish", sans-serif;
}

a,
span,
p,
input,
input:-ms-input-placeholder {
	font-family: "Mulish", sans-serif;
}

a,
span,
p,
input,
input::-ms-input-placeholder {
	font-family: "Mulish", sans-serif;
}

a,
span,
p,
input,
input::placeholder {
	font-family: "Mulish", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Futurica", sans-serif;
}

.title {
	font-size: 30px;
	font-weight: 700;
	font-family: "Futurica", sans-serif;
	color: #181818;
	margin-bottom: 15px;
}

.subtitle {
	color: #353535;
	margin: auto;
	margin-bottom: 70px;
	max-width: 680px;
	text-align: center;
}

.card-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
}

#error {
	padding-top: 30px;
}

#error .error-page {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: calc(100vh - 90px);
}

#error .error-page img {
	max-width: 730px;
	width: 100%;
}

#error .error-title {
	font-family: "Futurica", sans-serif;
	font-weight: 500;
	font-size: 30px;
	margin-bottom: 0;
}

.filter::-webkit-scrollbar {
	width: 4px;
}

.filter::-webkit-scrollbar-thumb {
	border-radius: 8px;
}

.search {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.4);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.search .search-box {
	width: 100%;
	padding: 29px 0;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
}

.search input {
	border: none;
	width: 100%;
}

.search input::-webkit-input-placeholder {
	color: #181818;
}

.search input:-ms-input-placeholder {
	color: #181818;
}

.search input::-ms-input-placeholder {
	color: #181818;
}

.search input::placeholder {
	color: #181818;
}

.search button {
	background: transparent;
	border: none;
}

.search i {
	color: rgb(166 80 166);
	font-weight: 400;
	cursor: pointer;
}

.search .fa-times {
	width: 21px;
	height: 21px;
	border-radius: 50%;
	border: 2px solid rgb(166 80 166);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#breadcrumbs {
	list-style: none;
	width: 100%;
	overflow: auto;
}

#breadcrumbs::-webkit-scrollbar {
	width: 0px;
}

#breadcrumbs::-webkit-scrollbar-track {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0px;
	background: transparent;
}

#breadcrumbs::-webkit-scrollbar-thumb {
	background: transparent;
	border-radius: 8px;
}

#breadcrumbs::-webkit-scrollbar-thumb:hover {
	background: transparent;
}

#breadcrumbs li {
	position: relative;
	font-weight: 700;
	font-family: "Mulish", sans-serif;
	color: #fe5538;
	margin-right: 30px;
	display: inline;
}

#breadcrumbs li:not(:last-child):before {
	content: "";
	position: absolute;
	top: 10px;
	background: rgb(166 80 166);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	right: -17px;
}

#breadcrumbs a {
	color: #181818;
}

#breadcrumbs a:hover {
	color: #fe5538;
}

.button {
	background: rgb(166 80 166);
	color: white;
	border-radius: 30px;
	display: inline-block;
	margin-top: 30px;
	font-weight: 600;
	font-size: 16px;
	padding: 7px 33px;
	letter-spacing: 0.3px;
	border: 1px solid rgb(166 80 166);
}

.button:hover {
	background: white;
	color: rgb(166 80 166);
}

.button:focus {
	outline: none;
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
}

.btn-div {
	text-align: center;
	margin-top: 50px;
}

.wp-btn,
.top-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: white;
	border: 1px solid rgb(166 80 166);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	position: fixed;
	right: 50px;
	bottom: 70px;
	z-index: 1000;
	cursor: pointer;
}

.wp-btn:before,
.wp-btn:after,
.top-btn:before,
.top-btn:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	height: 100%;
	width: 100%;
	border: 1px solid rgb(166 80 166);
	z-index: -1;
	opacity: 0;
	-webkit-animation: pulse-border-2 1s linear infinite;
	animation: pulse-border-2 1s linear infinite;
}

.wp-btn:after,
.top-btn:after {
	-webkit-animation: pulse-border 1.4s linear infinite;
	animation: pulse-border 1.4s linear infinite;
}

.wp-btn i,
.top-btn i {
	color: rgb(166 80 166);
	font-weight: 300;
	font-size: 24px;
}

.wp-btn:hover,
.top-btn:hover {
	background: rgb(166 80 166);
}

.wp-btn:hover i,
.top-btn:hover i {
	color: white;
}

.wp-btn {
	bottom: 140px;
}

@-webkit-keyframes pulse-border-2 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

@keyframes pulse-border-2 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

@-webkit-keyframes pulse-border {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1.8);
		transform: scale(1.8);
		opacity: 0;
	}
}

@keyframes pulse-border {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1.8);
		transform: scale(1.8);
		opacity: 0;
	}
}

.square-1 {
	width: 211px;
	height: 234px;
	background: rgb(166 80 166);
	-webkit-box-shadow: 30px 4px 27px rgba(82, 82, 82, 0.25);
	box-shadow: 30px 4px 27px rgba(82, 82, 82, 0.25);
	border-radius: 5px;
	-webkit-transform: rotate(-37.25deg);
	transform: rotate(-37.25deg);
	position: absolute;
	left: -40px;
	top: -65px;
}

.square-2 {
	width: 295px;
	height: 460px;
	background-color: rgb(166 80 166);
	-webkit-box-shadow: 49px 42px 12px rgba(80, 80, 80, 0.25);
	box-shadow: 49px 42px 12px rgba(80, 80, 80, 0.25);
	border-radius: 5px;
	-webkit-transform: rotate(22.66deg);
	transform: rotate(22.66deg);
	position: absolute;
	right: 40px;
	top: -65px;
}

.point {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-box-shadow: 30px 20px 11px rgba(101, 101, 101, 0.25);
	box-shadow: 30px 20px 11px rgba(101, 101, 101, 0.25);
	position: absolute;
	display: inline-block;
	z-index: -1;
}

.point-1 {
	background: rgb(166 80 166);
	bottom: -19px;
	left: 83px;
}

.point-2 {
	background: rgb(166 80 166);
	left: 25px;
	top: -100px;
}

.point-3,
.point-7 {
	background: #fe5538;
	right: 60px;
	top: -100px;
}

.point-4,
.point-5,
.point-6 {
	background: #d6a7f9;
}

.bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
}

.play-btn {
	background: rgba(84, 62, 233, 0.8);
	border: 1px solid rgb(166 80 166);
	width: 88px;
	height: 88px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: 5;
	cursor: pointer;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.play-btn:hover {
	background: white;
}

.play-btn:hover i {
	color: rgba(84, 62, 233, 0.8);
}

.play-btn i {
	color: white;
	font-size: 27px;
}

.owl-item .img {
	max-width: 520px;
	width: 100%;
}


.fancybox {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 11;
}

.fancybox:hover ~ .play-btn {
	background: white;
}

.fancybox:hover ~ .play-btn i {
	color: rgba(84, 62, 233, 0.8);
}

#home-about {
	padding-top: 160px;
	position: relative;
}

#home-about:before {
	content: "";
	position: absolute;
	left: 0;
	top: -20px;
	bottom: 0;
	right: 0;
	background: #ffffff;
	-webkit-filter: blur(134px);
	filter: blur(134px);
}

#home-about .square-2 {
	width: 293px;
	height: 263px;
	-webkit-transform: rotate(-31.01deg);
	transform: rotate(-31.01deg);
	right: 80px;
}

#home-about .square-1 {
	-webkit-transform: rotate(-37.25deg);
	transform: rotate(-37.25deg);
	width: 211px;
	height: 234px;
	bottom: -70px;
	left: 115px;
	top: auto;
}

#home-about .point-3 {
	left: 125px;
	top: auto;
	bottom: -65px;
}

#home-about .point-2 {
	left: 100px;
}

#home-about .img {
	text-align: left;
}

#home-about .title,
#home-about p,
#home-about .button {
	margin-left: 50px;
}

#benefit .title {
	text-align: center;
	position: relative;
}

#benefit .card {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	border: none;
	border-radius: 0;
	padding: 20px;
	min-height: 330px;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

#benefit .card:hover {
	-webkit-box-shadow: 0px 0px 20px rgba(106, 106, 106, 0.4);
	box-shadow: 0px 0px 20px rgba(106, 106, 106, 0.4);
}

#benefit .card-header {
	border: none;
	text-align: right;
	background-color: transparent;
	padding: 0;
}

#benefit .card-header img {
	width: 85px;
	height: 85px;
	-o-object-fit: contain;
	object-fit: contain;
}

#benefit .card-title {
	font-family: "Futurica", sans-serif;
	font-weight: 400;
	color: #353535;
	font-size: 27px;
	margin: 25px 0 10px;
}

#benefit .card-text {
	padding-bottom: 0;
	font-family: "Mulish", sans-serif;
	font-size: 15px;
}

#benefit .card-body {
	padding: 0;
}

#benefit .col-lg-3 {
	padding-right: 7px;
	padding-left: 7px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

header .top-header {
	padding: 12px 0;
	background: rgb(166 80 166);
}

header .top-header .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

header .top-header a {
	color: #34485a;
	font-weight: 600;
}

header .top-header a:hover {
	color: blue;
}

header .top-header a:first-child {
	margin-right: 8px;
}

header .top-header a:last-child {
	margin-left: 8px;
}

header .top-right a {
	font-size: 18px;
}

header .top-right a:not(:last-child) {
	margin-right: 27px;
}

header .top-right a:last-child {
	margin-left: 0;
}

header .header-bottom {
	padding: 20px 0;
}

header .header-bottom .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	list-style: none;
	margin-bottom: 0;
}

nav ul a {
	color: #181818;
	font-weight: 700;
	font-size: 15px;
}

nav ul a:hover {
	color: blue;
}

.header-icons a {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 1;
}

header .header-icons a:hover {
	background: rgb(166 80 166);
}

.header-icons a:hover img {
	-webkit-filter: invert(1) brightness(2.5);
	filter: invert(1) brightness(2.5);
}

.header-icons a:not(:last-child) {
	margin-right: 15px;
}

header.show .header-bottom {
	background: white;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
}

#home {
	background: url(../images/home-bg.png) no-repeat;
	background-size: cover;
	height: 815px;
	position: relative;
	overflow: hidden;
}

#home p {
	margin-bottom: 5px;
}

#home .text a {
	font-family: "Mulish";
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #181818 !important;
}

#home .title {
	font-size: 45px;
	max-width: 400px;
	line-height: 53px;
	color: #181818;
}

#home .subtitle {
	font-weight: 700;
	color: #181818;
	text-align: left;
}

#home .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}



#home img {
	max-width: 520px;
	width: 98%;
	height: 350px;
	z-index: 5;
	object-fit: cover;
}

#home .square-2 {
	z-index: 1;
}

.img {
	position: relative;
	text-align: center;
}

.img .bg {
	border-radius: 5px;
}

.img img {
	border-radius: 5px;
	z-index: 3;
	position: relative;
	max-width: 520px;
	width: 100%;
	height: 100%;
}

#home-courses {
	padding-top: 120px;
}

#home-courses .point-1 {
	z-index: 0 !important;
}

#home-courses .title,
#home-courses .subtitle {
	text-align: center;
}

#home-courses .container {
	position: relative;
}

#home-courses .col-lg-3 {
	padding-left: 10px;
	padding-right: 10px;
}

#home-courses .btn-div .button {
	background: white;
	color: rgb(166 80 166);
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	border-radius: 50px;
	border-color: white;
}

#home-courses .btn-div .button:hover {
	background: rgb(166 80 166);
	color: white;
	border-color: rgb(166 80 166);
}

#home-courses .container {
	position: relative;
}

#home-courses .point-2 {
	top: 0;
	right: 100px;
	left: auto;
}

#home-courses .row {
	min-height: 500px;
}

#home-courses .btn-div {
	margin-top: -10px;
}

.card.course-card {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	border: none !important;
	border-radius: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	overflow: hidden;
	cursor: pointer;
	max-height: 480px;
	height: 100%;
	max-width: 315px;
	margin: auto;
	width: 100%;
}

.card.course-card:hover {
	height: 100%;
}

.card.course-card .card-header {
	border: none !important;
	background: transparent;
	padding: 0;
	border-radius: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.card.course-card .card-body {
	border-radius: 0;
	padding: 10px 13px;
}

.card.course-card img {
	width: 100%;
	height: 210px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.card.course-card .heart {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 99;
}

#play-video-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	color: white;
	background: #6610f2;
	-webkit-box-shadow: 0px 0px 10px rgb(67 67 67 / 25%);
	box-shadow: 0px 0px 10px rgb(67 67 67 / 25%);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	right: 10px;
	top: 58px;
	z-index: 99;
	margin-right: 15px;
}

.expiry-date {
	width: 100%;
	padding: 0 13px 0 13px;
}
.expiry-date-left-text {
	float: left;
}
.expiry-date-right-text {
	float: right;
}
.last-day {
	float: right;
	background-color: red;
	color: white;
	padding: 0 7px 0 7px;
	border-radius: 6px;
}

.score-table {
	display: inline-flex;
	width: 100%;
	text-align: center;
}
.result-score-div {
	width: 100%;
	background-color: #26cb26;
	margin-right: 3px;
}

.result-false_score-div {
	width: 100%;
	background-color: red;
	margin-right: 3px;
}

.result-not_marked-div {
	width: 100%;
	background-color: #fff5e2;
	margin-right: 3px;
}

.card.course-card .heart:not(:last-child) {
	margin-right: 15px;
}

.card.course-card .stars {
	visibility: hidden;
	opacity: 0;
	height: 0;
}

.card.course-card .stars i {
	color: rgb(166 80 166);
	font-size: 13px;
}

.card.course-card .card-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 7px;
}

.card.course-card .card-top span {
	color: #fe5538;
	font-family: "Mulish", sans-serif;
	font-weight: 700;
	font-size: 15px;
	position: relative;
}

.card.course-card .card-top span:first-child::before {
	content: "";
	position: absolute;
	right: -20px;
	top: 8px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgb(166 80 166);
}

.card.course-card .course-name {
	font-family: "Futurica", sans-serif;
	font-weight: 400;
	color: #353535;
	font-size: 19px;
	line-height: 19px;
	margin-top: 10px;
	margin-bottom: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.card.course-card .course-subtitle {
	color: #3e3d3d;
	font-size: 14px;
	visibility: hidden;
	opacity: 0;
	height: 40px;
	margin-bottom: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	overflow: hidden;
	margin-top: 10px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.card.course-card .card-foot {
	padding: 10px 15px 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.card.course-card .card-foot p {
	font-family: "Mulish", sans-serif;
	font-weight: 800;
	margin-bottom: 0;
	position: relative;
}

.price-div {
	display: flex;
	flex-direction: column;
}

.price {
	color: rgb(166 80 166) !important;
}

.discount-price {
	color: #fe5538 !important;
}

.old-price {
	color: #929292 !important;
}

.old-price::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background: #353535;
	top: 50%;
	left: 0;
	right: 0;
}

.card.course-card .card-foot p span {
	font-size: 13px;
	display: inline-block;
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
}

.card.course-card .card-foot .button {
	margin-top: 0;
}

.card.course-card:hover {
	-webkit-box-shadow: 0px 0px 70px rgba(106, 106, 106, 0.4);
	box-shadow: 0px 0px 70px rgba(106, 106, 106, 0.4);
	-webkit-transform: scale(1.04);
	transform: scale(1.04);
}

.card.course-card:hover img {
	-webkit-transform: scale(0.93);
	transform: scale(0.93);
}

.card.course-card:hover .course-subtitle,
.card.course-card:hover .stars {
	visibility: visible;
	opacity: 1;
	height: auto;
}

.card.course-card:hover .course-subtitle {
	height: 67px;
}

.card.course-card:hover .card-foot .price {
	color: rgb(166 80 166);
}

.card.course-card:hover .button {
	background: white;
	color: #353535;
	border-color: #353535;
}

.card.course-card:hover .card-top span:first-child::before {
	background: rgb(166 80 166);
}

#course {
	padding-top: 200px;
}

#course .col-lg-3,
#course .col-lg-9 {
	padding: 0 5px;
}

#course .title {
	text-align: center;
}

#course .catalog {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

#course .filter {
	max-width: 315px;
	width: 100%;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	padding: 30px;
	margin-right: 17px;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	overflow: scroll;
	margin-bottom: 30px !important;
	height: 800px;
}

#course .catalog .col-lg-3 {
	position: sticky;
	top: 160px;
}

#course .filter form > div:first-child {
	position: relative;
}

#course .filter form > div:first-child:before {
	content: "";
	width: 106%;
	height: 1px;
	background: #212121;
	position: absolute;
	left: -6px;
	right: 0;
	bottom: 0;
	z-index: 1;
}

#course input {
	position: absolute;
	opacity: 0;
}

#course .catalog-cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#course .card.course-card {
	max-width: 310px;
	margin-bottom: 20px;
	margin-right: 15px;
	min-height: 430px;
	width: 100%;
}

#course h5 {
	font-weight: 700;
	font-size: 20px;
}

#course label {
	position: relative;
	font-family: "Futurica", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	display: block;
	margin-bottom: 10px;
}

#course label:before {
	/* content: "";
	width: 106%;
	height: 1px;
	background: #d5d5d5;
	position: absolute;
	left: -6px;
	right: 0;
	bottom: 0; */
}

#course .checkbox {
	position: relative;
	background: transparent;
	border: 1px solid #fe5538;
	border-radius: 0px;
	width: 13px;
	height: 13px;
	margin-right: 5px;
	display: inline-block;
}

#course .checkbox:before {
	content: "";
	position: absolute;
	opacity: 0;
	left: 3px;
	top: -6px;
	width: 9px;
	height: 15px;
	border: solid #fe5538;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#course input:checked ~ .checkbox:before {
	opacity: 1;
}

#course .seo-section {
	padding: 90px 0 0;
}

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

#course .seo-section .seo-text {
	margin-bottom: 10px;
	color: #181818;
	font-weight: 400;
}

#course .card.exam-card {
	max-width: 310px;
	margin-bottom: 20px;
	margin-right: 15px;
	max-height: 426px;
}

#home-teacher {
	background: #e2eaf8;
}

#home-teacher .row,
.teacher .row {
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}

#home-teacher .container,
.teacher .container {
	position: relative;
}

#home-teacher .point-3,
.teacher .point-3 {
	right: auto;
	top: 0;
	left: 0;
}

#home-teacher .point-2,
.teacher .point-2 {
	right: 0;
	top: 0;
	left: auto;
}

#home-teacher .point-4,
.teacher .point-4 {
	bottom: -25px;
	right: 100px;
}

#home-teacher .point-1,
.teacher .point-1 {
	left: 383px;
}

#home-teacher .row,
.teacher .row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#home-teacher .col-lg-6 span,
#home-teacher .col-lg-6 p,
#home-teacher .col-lg-6 a,
.teacher .col-lg-6 span,
.teacher .col-lg-6 p,
.teacher .col-lg-6 a {
	margin-left: 60px;
}

#home-teacher .col-lg-6 span,
.teacher .col-lg-6 span {
	color: rgb(166 80 166);
	font-family: "Futurica", sans-serif;
	font-weight: 600;
	-webkit-transform: translateY(8px);
	transform: translateY(8px);
	display: inline-block;
}

#home-teacher .col-lg-6 .teacher-name,
.teacher .col-lg-6 .teacher-name {
	font-family: "Futurica", sans-serif;
	font-weight: 700;
	font-size: 30px;
	color: #181818;
	display: block;
	margin-bottom: 15px;
}

#home-teacher .col-lg-6 p,
.teacher .col-lg-6 p {
	color: #181818;
	font-size: 16px;
}

#home-teacher .col-lg-5,
.teacher .col-lg-5 {
	padding-left: 0px;
	margin-left: -20px;
}

#home-teacher .col-lg-5 img,
.teacher .col-lg-5 img {
	max-width: 475px;
	width: 100%;
}

#teachers {
	padding-top: 180px;
}

#teachers .teacher p {
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.teacher .point-3 {
	top: 40px;
	left: 50px;
}

.teacher .point-2 {
	right: 65px;
	top: 35px;
}

.teacher .point-1 {
	left: 383px;
	bottom: 35px;
}

.teacher .point-4 {
	bottom: 25px;
	right: 160px;
}

#teachers .teacher {
	padding: 40px 0;
}

#teachers .teacher {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	position: relative;
}

#teachers .teacher:not(:last-child) {
	margin-bottom: 60px;
}

#teachers .title {
	text-align: center;
}

#single-teacher {
	padding-top: 180px;
	padding-bottom: 0;
}

#single-teacher .row {
	min-height: 500px;
}

#single-teacher .title {
	margin-bottom: 50px;
	text-align: center;
}

#single-teacher .teacher-box {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	margin-top: 60px;
	padding: 80px;
	margin-bottom: 100px;
}

#single-teacher .teacher-box .col-lg-6 > span {
	font-size: 15px;
	font-family: "Mulish", sans-serif;
	font-weight: 700;
	color: rgb(166 80 166);
}

#single-teacher .teacher-box .col-lg-6 p {
	max-width: 560px;
}

#single-teacher .teacher-box .teacher-name {
	font-family: "Futurica", sans-serif;
	font-weight: 700;
	font-size: 40px;
}

#single-teacher .teacher-box .row {
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#single-teacher .teacher-box .row p {
	color: #181818;
	font-weight: 600;
}

#single-teacher .teacher-box .col-lg-12 {
	margin-top: 40px;
}

#single-teacher .teacher-box .col-lg-12 p {
	max-width: 770px;
	margin: auto;
	text-align: center;
}

#single-teacher .teacher-box .col-lg-12 p:not(:last-child) {
	margin-bottom: 10px;
}

#single-teacher .teacher-box .col-12:not(:last-child) {
	margin-bottom: 50px;
}

#single-teacher .teacher-box .col-lg-5 {
	position: relative;
}

#single-teacher .teacher-box .col-lg-5 img {
	width: 100%;
}

#single-teacher .teacher-box .point-2 {
	left: inherit;
	top: -10px;
	right: -45px;
}

#single-teacher .teacher-box .point-4 {
	right: 55px;
	bottom: -8px;
}

#single-teacher .teacher-box .teacher-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 325px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	-webkit-transform: translateY(40px);
	transform: translateY(40px);
}

#single-teacher .teacher-box .teacher-info span {
	width: 84px;
	height: 84px;
	-webkit-box-shadow: 30px 20px 11px rgba(101, 101, 101, 0.25);
	box-shadow: 30px 20px 11px rgba(101, 101, 101, 0.25);
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	font-weight: 700;
	font-family: "Mulish", sans-serif;
	color: white;
	font-size: 14px;
}

#single-teacher .teacher-box .teacher-info .span-1 {
	background: #fe5538;
}

#single-teacher .teacher-box .teacher-info .span-2 {
	background: rgb(166 80 166);
	color: #181818;
}

#single-teacher .teacher-box .teacher-info .span-3 {
	background: #d6a7f9;
}

#lesson-process {
	min-height: 500px;
}

#lesson-process .title,
#lesson-process .subtitle {
	text-align: center;
}

#lesson-process .flip-card {
	background-color: transparent;
	max-width: 380px;
	margin: auto;
	margin-bottom: 30px;
	width: 100%;
	height: 300px;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	cursor: pointer;
}

#lesson-process img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

#lesson-process .flip-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px 25px;
}

#lesson-process .flip-overlay .flip-title {
	color: white;
	font-size: 15px;
}

#lesson-process .flip-title {
	font-weight: 700;
	color: #353535;
	margin-bottom: 0;
	font-size: 15px;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}

#lesson-process span {
	font-family: "Gotham Rounded", sans-serif;
	font-weight: 900;
	font-size: 35px;
}

#lesson-process .red {
	color: #fe5538;
}

#lesson-process .green {
	color: #52dec1;
}

#lesson-process .purple {
	color: #d6a7f9;
}

#lesson-process .flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 0.6s;
	transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	transition: transform 0.6s, -webkit-transform 0.6s;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

#lesson-process .flip-card:hover .flip-card-inner {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

#lesson-process .flip-card-front,
#lesson-process .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#lesson-process .flip-card-front:before {
	content: "";
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(black),
		color-stop(rgba(0, 0, 0, 0.2)),
		color-stop(rgba(0, 0, 0, 0.1)),
		color-stop(rgba(0, 0, 0, 0.1)),
		to(rgba(0, 0, 0, 0))
	);
	background: linear-gradient(
		to top,
		black,
		rgba(0, 0, 0, 0.2),
		rgba(0, 0, 0, 0.1),
		rgba(0, 0, 0, 0.1),
		rgba(0, 0, 0, 0)
	);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#lesson-process .flip-card-back {
	background-color: white;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	padding: 15px 25px;
}

#lesson-process .flip-card-back:hover {
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
}

#lesson-process .flip-card-back .flip-title {
	margin-top: 70px;
}

#lesson-process .flip-card-back span {
	margin-bottom: 10px;
	display: inline-block;
}

#lesson-process .flip-card-back .flip-subtitle {
	margin-bottom: 0;
	font-size: 15px;
}

#lesson-process .col-lg-4 {
	padding-left: 10px;
	padding-right: 10px;
}

#home-exam {
	position: relative;
}

#home-exam:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #e2eaf8;
	-webkit-clip-path: polygon(100% 28%, 0 100%, 100% 100%);
	clip-path: polygon(100% 28%, 0 100%, 100% 100%);
}

#home-exam .container {
	position: relative;
}

#home-exam .title,
#home-exam .subtitle {
	text-align: center;
}

#home-exam .col-lg-4 {
	padding-left: 10px;
	padding-right: 10px;
}

#home-exam .swiper {
	min-height: 490px;
	padding: 0px 70px;
	position: relative;
}

#home-exam .swiper:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 175px;
	height: 415px;
	background-image: url("../images/customer-left-pattern.png");
	z-index: 2;
}

#home-exam .swiper:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 175px;
	height: 415px;
	background-image: url("../images/customer-right-pattern.png");
	z-index: 2;
}


#home-exam .btn-div {
	margin-top: -40px;
}

#home-exam .btn-div .button {
	background: white;
	color: rgb(166 80 166);
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	border-radius: 50px;
	border-color: white;
}

#home-exam .btn-div .button:hover {
	border-color: rgb(166 80 166);
	color: white;
	background: rgb(166 80 166);
}

.card.exam-card {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	border: none !important;
	border-radius: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	overflow: hidden;
	cursor: pointer;
}

.card.exam-card .card-header {
	border: none !important;
	background: transparent;
	padding: 0;
	border-radius: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.card.exam-card .card-body {
	border-radius: 0;
	padding: 10px 13px;
}

.card.exam-card img {
	width: 100%;
	height: 200px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.card.exam-card .heart {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 99;
}

.card.exam-card .heart:not(:last-child) {
	margin-right: 15px;
}

.card.exam-card .stars {
	visibility: hidden;
	opacity: 0;
	height: 0;
}

.card.exam-card .stars i {
	color: rgb(166 80 166);
	font-size: 13px;
}

.card.exam-card .card-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.card.exam-card .card-top span {
	color: #fe5538;
	font-family: "Mulish", sans-serif;
	font-weight: 700;
	font-size: 15px;
	position: relative;
}

.card.exam-card .course-subtitle {
	color: #3e3d3d;
	font-size: 14px;
	visibility: hidden;
	opacity: 0;
	height: 67px;
	margin-bottom: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	overflow: hidden;
	margin-top: 10px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.card.exam-card .course-subtitle {
	color: #3e3d3d;
	font-size: 14px;
	visibility: hidden;
	opacity: 0;
	height: 67px;
	margin-bottom: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	overflow: hidden;
	margin-top: 10px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.card.exam-card .card-foot {
	padding: 10px 15px 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.card.exam-card .card-foot p {
	font-family: "Mulish", sans-serif;
	font-weight: 800;
	color: rgb(166 80 166);
	margin-bottom: 0;
	position: relative;
}

.card.exam-card .card-foot p span {
	font-size: 13px;
	display: inline-block;
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
}

.card.exam-card .card-foot .button {
	margin-top: 0;
}

.card.exam-card:hover {
	-webkit-box-shadow: 0px 0px 70px rgba(106, 106, 106, 0.4);
	box-shadow: 0px 0px 70px rgba(106, 106, 106, 0.4);
}

.card.exam-card:hover img {
	-webkit-transform: scale(0.93);
	transform: scale(0.93);
}

.card.exam-card:hover .course-subtitle,
.card.exam-card:hover .stars {
	visibility: visible;
	opacity: 1;
	height: auto;
}

.card.exam-card:hover .course-subtitle {
	height: 67px;
}

.card.exam-card:hover .card-foot p {
	color: rgb(166 80 166);
}

.card.exam-card:hover .button {
	background: white;
	color: #353535;
	border-color: #353535;
}

.card.exam-card:hover .card-top span:first-child::before {
	background: rgb(166 80 166);
}

.card.exam-card .card-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.swiper {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

section .swiper-button-next,
section .swiper-container-rtl .swiper-button-prev,
section .swiper-button-prev,
section .swiper-container-rtl .swiper-button-next {
	background-image: none !important;
	background: rgb(166 80 166);
	border: 1px solid rgb(166 80 166);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

section .swiper-button-next i,
section .swiper-container-rtl .swiper-button-prev i,
section .swiper-button-prev i,
section .swiper-container-rtl .swiper-button-next i {
	font-weight: 200;
	color: white;
}

section .swiper-button-next:hover,
section .swiper-container-rtl .swiper-button-prev:hover,
section .swiper-button-prev:hover,
section .swiper-container-rtl .swiper-button-next:hover {
	background: white;
}

section .swiper-button-next:hover i,
section .swiper-container-rtl .swiper-button-prev:hover i,
section .swiper-button-prev:hover i,
section .swiper-container-rtl .swiper-button-next:hover i {
	color: rgb(166 80 166);
}

#home-info {
	background: #e2eaf8;
	padding-top: 120px;
	padding-bottom: 120px;
}

#home-info .container {
	position: relative;
}

#home-info .img {
	max-width: 464px;
}

#home-info .square-2 {
	-webkit-transform: rotate(-37.25deg);
	transform: rotate(-37.25deg);
	width: 211px;
	height: 234px;
	bottom: -35px;
	right: 0;
	top: auto;
}

#home-info .point-3 {
	bottom: -80px;
	right: 150px;
	top: auto;
}

#home-info .row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#home-info .col-lg-6 span {
	color: rgb(166 80 166);
	font-family: "Futurica", sans-serif;
	font-weight: 600;
	-webkit-transform: translateY(3px);
	transform: translateY(3px);
	display: inline-block;
}

#home-info .col-lg-6 .title {
	font-family: "Futurica", sans-serif;
	font-weight: 700;
	font-size: 30px;
	color: #181818;
	display: block;
	margin-bottom: 15px;
}

#home-info .col-lg-6 p {
	color: #181818;
	font-size: 16px;
	margin-bottom: 0;
}

#info {
	padding-top: 180px;
}

#info .title {
	text-align: center;
}

#info .card {
	background: transparent;
	border: none;
	border-radius: 0;
	position: relative;
	max-width: 305px;
	margin: auto;
	width: 100%;
}

#info .col-lg-3 {
	margin-bottom: 30px;
}

#info .card:hover .play-btn {
	width: 150px;
	height: 40px;
	text-align: center;
	border-radius: 30px;
	background: rgb(166 80 166);
}

#info .card:hover .play-btn i {
	display: none;
}

#info .card:hover .play-btn span {
	display: inline-block;
}

#info .play-btn {
	width: 65px;
	height: 65px;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

#info .play-btn i {
	font-size: 21px;
	display: inline-block;
}

#info .play-btn span {
	color: white;
	font-family: "Mulish", sans-serif;
	font-size: 14px;
	font-weight: 700;
	display: none;
}

#info .img {
	border-radius: 0;
}

#info .img img {
	border-radius: 0;
}

#info .card-text {
	font-family: "Futurica", sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #353535;
	margin-top: 20px;
}

#reviews {
	padding-bottom: 0;
}

#reviews .container {
	position: relative;
}

#reviews .point-1 {
	left: 0;
	top: -30px;
}

#reviews .point-4 {
	bottom: 0;
	right: 0;
}

#reviews .title {
	text-align: center;
	margin-bottom: -15px;
}

#reviews .card.review-card {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
	border-radius: 0;
	max-width: 315px;
	max-height: 350px;
	min-height: 350px;
	height: 100%;
	padding: 20px 25px;
	border: none;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

#reviews .card-header {
	padding: 0;
	background: transparent;
	border: none;
	margin-bottom: 10px;
}

#reviews .card-header img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
}

#reviews .card-body {
	padding: 0;
}

#reviews span {
	color: #fe5538;
	font-weight: 900;
	font-size: 15px;
}

#reviews .review-name {
	font-family: "Futurica", sans-serif;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 10px;
}

#reviews p {
	margin-bottom: 0;
	color: #353535;
}

#reviews .review-text {
	font-size: 14px;
}

#reviews .swiper-slide-next .card.review-card {
	-webkit-box-shadow: 0px 0px 23px rgba(106, 106, 106, 0.4);
	box-shadow: 0px 0px 23px rgba(106, 106, 106, 0.4);
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
}

#reviews .swiper {
	padding: 90px 0;
}

#graduate {
	padding-top: 40px;
	position: relative;
}

#graduate:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #e2eaf8;
	-webkit-clip-path: polygon(100% 14%, 0 100%, 100% 100%);
	clip-path: polygon(100% 14%, 0 100%, 100% 100%);
}

#graduate .title,
#graduate .subtitle {
	text-align: center;
}

#graduate .container {
	position: relative;
}

#graduate .col-lg-3 {
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 30px;
}

#graduate .button {
	background: white;
	border-color: white;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	color: rgb(166 80 166);
}

#graduate .button:hover {
	border-color: rgb(166 80 166);
	color: white;
	background: rgb(166 80 166);
}

#graduate-list {
	padding-top: 180px;
}

#graduate-list .title {
	text-align: center;
}

#graduate-list .col-lg-3 {
	margin-bottom: 30px;
}

.card.graduate-card {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	border: none !important;
	border-radius: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	overflow: hidden;
	cursor: pointer;
	max-height: 423px;
	max-width: 305px;
	width: 100%;
	margin: auto;
}

.card.graduate-card:hover {
	max-height: 500px;
}

.card.graduate-card .card-header {
	border: none !important;
	background: transparent;
	padding: 0;
	border-radius: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.card.graduate-card .card-body {
	border-radius: 0;
	padding: 10px 13px;
}

.card.graduate-card img {
	width: 100%;
	height: 210px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.card.graduate-card .card-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 7px;
}

.card.graduate-card .card-top span {
	color: #fe5538;
	font-family: "Mulish", sans-serif;
	font-weight: 700;
	font-size: 14px;
	position: relative;
}

.card.graduate-card .graduate-name {
	font-family: "Futurica", sans-serif;
	font-weight: 400;
	color: #353535;
	font-size: 19px;
	line-height: 19px;
	margin-top: 10px;
	margin-bottom: 0;
}

.card.graduate-card .graduate-subtitle {
	color: #3e3d3d;
	font-size: 14px;
	/* visibility: hidden;
  opacity: 0; */
	height: 67px;
	margin-bottom: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	overflow: hidden;
	margin-top: 10px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.card.graduate-card .card-foot {
	padding: 10px 15px 25px;
}

.card.graduate-card .card-foot p {
	font-family: "Mulish", sans-serif;
	font-weight: 800;
	color: rgb(166 80 166);
	margin-bottom: 0;
	text-align: right;
	position: relative;
}

.card.graduate-card:hover {
	-webkit-box-shadow: 0px 0px 70px rgba(106, 106, 106, 0.4);
	box-shadow: 0px 0px 70px rgba(106, 106, 106, 0.4);
	-webkit-transform: scale(1.04);
	transform: scale(1.04);
}

.card.graduate-card:hover img {
	-webkit-transform: scale(0.93);
	transform: scale(0.93);
}

.card.graduate-card:hover .graduate-subtitle {
	visibility: visible;
	opacity: 1;
}

.card.graduate-card:hover .card-foot p {
	color: rgb(166 80 166);
}

#home-seo {
	background: #e2eaf8;
	margin-top: -2px;
	padding-top: 30px;
}

#home-seo .container {
	position: relative;
}

#home-seo .row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#home-seo .col-lg-6.img {
	text-align: right;
}

#home-seo .col-lg-6.img img {
	max-width: 515px;
	width: 100%;
	border-radius: 5px;
}

#home-seo p:not(:last-child) {
	margin-bottom: 10px;
}

#home-seo .point-1 {
	bottom: -60px;
	right: 430px;
	left: auto;
}

#home-certificate {
	padding-bottom: 0;
}

#home-certificate .container {
	position: relative;
}

#home-certificate .point-2 {
	left: auto;
	right: 20px;
	top: 50px;
}

#home-certificate .title,
#home-certificate .subtitle {
	text-align: center;
}

#home-certificate .subtitle {
	margin-bottom: 0;
}

#home-certificate .swiper {
	padding: 90px 0;
	position: relative;
}

#home-certificate .swiper-slide-next + div + div .certificate-card {
	-webkit-box-shadow: 0px 0px 23px rgba(106, 106, 106, 0.4);
	box-shadow: 0px 0px 23px rgba(106, 106, 106, 0.4);
	-webkit-transform: scale(1.09);
	transform: scale(1.09);
}

#home-certificate .swiper-button-next,
#home-certificate .swiper-button-prev {
	bottom: 110px;
	top: auto;
}

#certificate {
	padding-top: 180px;
}

#certificate .title {
	text-align: center;
}

#certificate .container {
	position: relative;
}

#certificate .point-4 {
	right: 150px;
	top: 60px;
}

#certificate .point-3 {
	left: 250px;
	top: 50px;
}

#certificate .col-lg-3 {
	margin-bottom: 20px;
}

#certificate .certificate-card {
	max-width: 315px;
}

#certificate .certificate-card:hover {
	-webkit-box-shadow: 0px 0px 50px rgba(106, 106, 106, 0.3);
	box-shadow: 0px 0px 50px rgba(106, 106, 106, 0.3);
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.btn-div .button {
	background: white;
	color: rgb(166 80 166);
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	border-radius: 50px;
	border-color: white;
}

.btn-div .button:hover {
	border-color: rgb(166 80 166);
	color: white;
	background: rgb(166 80 166);
}

.certificate-card {
	max-width: 270px;
	cursor: pointer;
	min-height: 290px;
	max-height: 290px;
	width: 100%;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	padding: 20px 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.certificate-card img {
	max-width: 170px;
	max-height: 230px;
	width: 100%;
	border: 0.5px solid #181818;
	border-radius: 10px;
}

#home-book {
	padding-top: 40px;
	padding-bottom: 0px;
}

#home-book .title {
	text-align: center;
}

#home-book .subtitle {
	margin-bottom: 20px;
}

#home-book .container {
	position: relative;
}

#home-book .swiper-slide-active {
	max-width: 278px;
}

#home-book .swiper-slide-next {
	max-width: calc(100% - 278px);
	width: 100% !important;
}

#home-book .swiper-slide-next .book-card {
	z-index: 100;
}

#home-book .swiper-slide-next .card-text {
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
	opacity: 1;
	visibility: visible;
}

#home-book .swiper {
	padding: 70px 10px;
}

#home-book .swiper-button-next,
#home-book .swiper-button-prev {
	top: 68%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#home-book .swiper-button-next {
	right: -30px;
}

#home-book .swiper-button-prev {
	left: -30px;
}

#home-book .point-3 {
	left: 60px;
	top: 10px;
	right: inherit;
}

#home-book .point-4 {
	bottom: -14px;
	left: 40px;
}

#home-book .point-1 {
	left: auto;
	right: 60px;
	bottom: -50px;
}

#home-book .btn-div {
	margin-top: 0;
}

#book-list {
	padding-top: 180px;
}

#book-list .title {
	text-align: center;
}

#book-list .container {
	position: relative;
}

#book-list .point-4 {
	right: 150px;
	top: 60px;
}

#book-list .point-3 {
	left: 250px;
	top: 50px;
}

#book-list .col-lg-6 {
	margin-bottom: 40px;
}

#book-list .book-card {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	cursor: pointer;
}

#book-list .book-card img {
	-webkit-filter: drop-shadow(4px 0px 10px rgba(46, 46, 46, 0.15));
	filter: drop-shadow(4px 0px 10px rgba(46, 46, 46, 0.15));
}

#book-list .book-card .card-text {
	padding: 30px 35px;
	opacity: 1;
	visibility: visible;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
	-webkit-box-shadow: 0px 0px 70px rgba(130, 130, 130, 0.25);
	box-shadow: 0px 0px 70px rgba(130, 130, 130, 0.25);
	max-height: 280px;
}

#book-list .book-card img {
	-webkit-transform: none;
	transform: none;
	max-width: 245px;
}

#book-list .book-card .book-subtitle {
	font-size: 14px;
}

#book-list .book-card:hover {
	-webkit-transform: scale(1.02);
	transform: scale(1.02);
}

.book-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 750px;
	min-height: 360px;
	max-height: 360px;
}

.book-card img {
	-webkit-transform: scale(1.14);
	transform: scale(1.14);
	-webkit-filter: drop-shadow(4px 0px 10px rgba(46, 46, 46, 0.25));
	filter: drop-shadow(4px 0px 10px rgba(46, 46, 46, 0.25));
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	z-index: 1;
}

.book-card .book-subtitle {
	color: #3e3d3d;
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}

.book-card .card-text {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 70px rgba(106, 106, 106, 0.4);
	box-shadow: 0px 0px 70px rgba(106, 106, 106, 0.4);
	padding: 50px 50px;
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.book-card .card-text span {
	color: #fe5538;
	font-family: "Mulish", sans-serif;
	font-weight: 700;
	font-size: 14px;
}

.book-card .book-link {
	text-align: right;
}

.book-card .book-link a {
	width: 36px;
	height: 36px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: white;
	-webkit-filter: drop-shadow(0px 2px 7px rgba(38, 110, 199, 0.2));
	filter: drop-shadow(0px 2px 7px rgba(38, 110, 199, 0.2));
	border-color: white;
	padding: 0;
	margin-top: 8px;
}

.book-card .book-link a i {
	color: rgb(166 80 166);
	font-weight: 300;
}

.book-card .book-link a:hover {
	border-color: rgb(166 80 166);
	background: rgb(166 80 166);
}

.book-card .book-link a:hover i {
	color: white;
}

.book-card .book-title {
	font-family: "Futurica", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 21px;
}

#home-news .title {
	text-align: center;
}

#home-news .container {
	position: relative;
}

#home-news .col-lg-3 {
	padding-left: 10px;
	padding-right: 10px;
}

#home-news .button {
	background: white;
	border-color: white;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	color: rgb(166 80 166);
}

.card.news-card {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	border: none !important;
	border-radius: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	overflow: hidden;
	cursor: pointer;
	max-width: 305px;
	margin: auto;
}

.card.news-card .card-header {
	border: none !important;
	background: transparent;
	padding: 0;
	border-radius: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.card.news-card .card-body {
	border-radius: 0;
	padding: 10px 13px;
}

.card.news-card img {
	width: 100%;
	height: 210px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.card.news-card .news-name {
	font-family: "Futurica", sans-serif;
	font-weight: 400;
	color: #353535;
	font-size: 19px;
	line-height: 20px;
	margin-top: 10px;
	margin-bottom: 0;
	height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.card.news-card .news-subtitle {
	color: #3e3d3d;
	font-size: 14px;
	visibility: hidden;
	opacity: 0;
	height: 40px;
	margin-bottom: 0;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	overflow: hidden;
	margin-top: 10px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.card.news-card .card-foot {
	padding: 10px 15px 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.card.news-card .card-foot p {
	font-family: "Mulish", sans-serif;
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 0;
	color: #353535;
}

.card.news-card .card-foot p span:first-child {
	color: #fe5538;
	font-weight: 700;
}

.card.news-card .card-foot .button {
	margin-top: 0;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	padding: 0;
	-webkit-filter: drop-shadow(0px 2px 7px rgba(38, 110, 199, 0.2));
	filter: drop-shadow(0px 2px 7px rgba(38, 110, 199, 0.2));
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.card.news-card .card-foot .button i {
	font-weight: 400;
}

.card.news-card:hover {
	-webkit-box-shadow: 0px 0px 70px rgba(106, 106, 106, 0.4);
	box-shadow: 0px 0px 70px rgba(106, 106, 106, 0.4);
	-webkit-transform: scale(1.04);
	transform: scale(1.04);
}

.card.news-card:hover img {
	-webkit-transform: scale(0.93);
	transform: scale(0.93);
}

.card.news-card:hover .news-subtitle {
	visibility: visible;
	opacity: 1;
}

.card.news-card:hover .card-foot .button {
	opacity: 1;
	visibility: visible;
}

.card.news-card:hover .button {
	background: white;
	color: #353535;
	border-color: #353535;
}

.card.news-card .card-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

#news {
	padding-top: 180px;
}

#news .title {
	text-align: center;
}

#news .col-lg-3 {
	margin-bottom: 25px;
}

#single-news {
	padding-top: 180px;
}

#single-news .news {
	margin: auto;
	margin-top: 80px;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	max-width: 985px;
	width: 100%;
}

#single-news img {
	width: 100%;
	height: 300px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

#single-news img:hover {
	-webkit-transform: scaleX(0.97) scaleY(0.9);
	transform: scaleX(0.97) scaleY(0.9);
}

#single-news .news-img {
	overflow: hidden;
}

#single-news .news-text {
	padding: 30px;
}

#single-news .news-text span {
	color: rgb(166 80 166);
	font-family: "Mulish", sans-serif;
	font-size: 14px;
	font-weight: 700;
}

#single-news .news-text .title {
	font-size: 21px;
	margin-top: 3px;
}

#single-news .news-text p {
	margin-bottom: 0;
	color: #181818;
}

#single-news .news-text p:not(:last-child) {
	margin-bottom: 13px;
}

footer {
	background: rgb(166 80 166);
	position: relative;
	padding: 60px 0 0px;
}

footer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.5;
}

footer .logo {
	text-align: center;
	margin-bottom: 90px;
}

footer div {
	position: relative;
	z-index: 1;
}

footer .footer-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

footer .footer-link a {
	color: white;
	margin-bottom: 5px;
	display: inline-block;
}

footer .footer-link a:hover {
	color: blue;
}

footer .footer-menu {
	width: 91%;
	text-align: center;
	list-style: none;
	margin-bottom: 0;
}

footer .footer-menu li {
	margin-bottom: 5px;
}

footer .footer-menu a {
	color: white;
	margin-bottom: 5px;
	display: inline-block;
}

footer .footer-menu a:hover {
	color: blue;
}

footer .footer-menu:nth-child(2) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transform: translateX(45px);
	transform: translateX(45px);
}

footer .footer-menu:nth-child(2) li {
	width: 45%;
}

footer .footer-menu:nth-child(2) li a {
	margin-bottom: 0;
}

footer .social-media {
	position: absolute;
	left: 15px;
	top: 30px;
}

footer .social-media a {
	color: white;
	font-size: 19px;
}

footer .social-media a:not(:last-child) {
	margin-right: 35px;
}

footer .social-media a:hover {
	color: blue;
}

footer .button {
	position: absolute;
	right: 15px;
	top: 20px;
	margin-top: 0;
	background: #6d28d2;
	border-color: #6d28d2;
	color: white;
	z-index: 10;
}

footer .button:hover {
	background: white;
}

footer .container {
	position: relative;
}

footer .footer-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

#pagination {
	display: none;
}

#course {
	padding-bottom: 0;
}

footer .copyright {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 100px;
	padding-bottom: 10px;
}

footer .copyright p,
footer .copyright a {
	color: white;
	font-size: 13px;
	margin-bottom: 10px;
}

footer .copyright img {
	height: 12px;
}

footer .copyright a:hover {
	color: blue;
}

#single-course-top {
	background: url(../images/home-bg.png) no-repeat;
	background-size: cover;
}

#single-course-top #breadcrumbs {
	width: 100%;
	margin-bottom: 100px;
}

#breadcrumbs li {
	text-transform: lowercase;
}

#single-course-top p {
	margin-bottom: 5px;
}

#single-course-top .title {
	font-size: 45px;
	line-height: 53px;
	color: #181818;
	margin-bottom: 15px;
}

#single-course-top .text {
	font-weight: 600;
	color: #181818;
	text-align: left;
}

#single-course-top .text:not(:last-child) {
	margin-bottom: 14px;
}

#single-course-top .container {
	padding-top: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#single-course-top .img img {
	max-width: 100%;
	width: 100%;
}

#single-course-top p {
	max-width: 565px;
}

#single-course-top .stars {
	margin-bottom: 13px;
}

#single-course-top .stars i {
	color: rgb(166 80 166);
	font-size: 13px;
}

#single-course-top .point-2 {
	left: 0;
	top: -70px;
}

#single-course {
	padding-bottom: 0;
}

#single-course .col-lg-4 .card {
	min-width: 400px;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	border-radius: 0;
	cursor: pointer;
	border: none;
	position: -webkit-sticky;
	position: sticky;
	top: 160px;
}

#single-course .col-lg-4 .card img {
	width: 100%;
}

#single-course .col-lg-4 .card-header {
	padding: 0;
}

#single-course .col-lg-4 .card-info i {
	font-size: 12px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: white;
	background: rgb(166 80 166);
}

#single-course .col-lg-4 .card-info p {
	color: #fe5538;
	font-weight: 700;
	margin-bottom: 0;
}

#single-course .col-lg-4 .card-info p:not(:last-child) {
	margin-bottom: 13px;
}

#single-course .col-lg-4 .card-info .card-title {
	font-family: "Futurica", sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: #181818;
}

#single-course .col-lg-4 .card-price p {
	font-weight: 800;
	font-size: 20px;
	margin-bottom: 0;
	position: relative;
}

#single-course .col-lg-4 .card-price p.original-price {
	color: rgb(166 80 166);
}

#single-course .col-lg-4 .card-price p.original-price span {
	color: rgb(166 80 166);
}

#single-course .col-lg-4 .card-price p.original-price:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #353535;
	width: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#single-course .col-lg-4 .card-price p.current-price {
	color: #fe5538;
}

#single-course .col-lg-4 .card-price p.current-price span {
	color: #fe5538;
}

#single-course .col-lg-4 .card-price p span {
	font-size: 13px;
	display: inline-block;
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
}

#single-course .col-lg-4 .card-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

#single-course .col-lg-4 .card-foot {
	padding: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#single-course .col-lg-4 .button {
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	min-width: 165px;
	/* display: flex;
  align-items: center; */
	text-align: center;
}

#checkout {
	min-height: 60vh;
	padding-top: 150px;
}

#single-course .col-lg-4 .button:first-child {
	background: white;
	color: rgb(166 80 166);
	border-color: white;
	line-height: 25px;
}

#single-course .col-lg-4 .button:first-child:hover {
	background: rgb(166 80 166);
	color: white;
	border-color: rgb(166 80 166);
}

#single-course .col-lg-4 .button:first-child i {
	font-weight: 300;
}

#single-course .col-lg-4 .button i {
	margin-right: 3px;
}

#single-course .col-lg-8 {
	padding-left: 60px;
}

#single-course .section-title {
	color: #181818;
	font-size: 30px;
	font-weight: 700;
	font-family: "Futurica", sans-serif;
}

#single-course ul {
	padding-left: 20px;
	margin-bottom: 0;
}

#single-course li {
	font-family: "Mulish", sans-serif;
	color: #181818;
	font-weight: 600;
}

#single-course li::marker {
	margin-left: 5px;
}

#single-course li:not(:last-child) {
	margin-bottom: 10px;
}

#single-course .section-1 {
	padding: 0 30px 30px;
}

#single-course .section-2,
#single-course .section-3 {
	margin-top: 40px;
	background: white;
	padding: 30px;
	-webkit-box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
}

#single-course .section-4 {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	padding: 30px;
	margin-top: 60px;
}

#single-course .section-4 .card-title {
	font-family: "Futurica", sans-serif;
	font-size: 35px;
	font-weight: 400;
	margin-bottom: 0;
}

#single-course .section-4 .card-subtitle {
	color: rgb(166 80 166);
	font-size: 15px;
	font-weight: 800;
}

#single-course .section-4 .teacher-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 15px;
}

#single-course .section-4 .teacher-info p {
	color: #3e3d3d;
	margin-bottom: 0;
	font-size: 15px;
	max-width: 450px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

#single-course .section-3 .section-title {
	font-family: "Futurica", sans-serif;
	font-size: 35px;
	font-weight: 400;
	margin-bottom: 0;
}

#single-course .section-3 .course-time {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#single-course .section-3 .course-time p {
	color: rgb(166 80 166);
	font-weight: 700;
	font-size: 15px;
}

#single-course .section-3 #accordion .fa-plus {
	width: 28px;
	height: 28px;
	background: rgb(166 80 166);
	border-radius: 50%;
	color: white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#single-course .section-3 #accordion .collapse-text {
	font-family: "Futurica", sans-serif;
	font-weight: 400;
	color: #353535;
	font-size: 20px;
}

#single-course .section-3 .accordion-lessons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 6px;
	margin-bottom: 6px;
}

#single-course .section-3 .collapse .accordion-lessons,
#single-course .section-3 .collapse {
	position: relative;
}

#single-course .section-3 .collapse .accordion-lessons:before,
#single-course .section-3 .collapse:before {
	content: "";
	position: absolute;
	background: #d5d5d5;
	height: 1px;
	width: 93%;
	bottom: 0;
}

#single-course .section-3 .collapse:before {
	background: rgb(166 80 166) !important;
	top: -7px;
}

#single-course .section-3 .accordion-duration {
	color: rgb(166 80 166);
	font-family: "Mulish", sans-serif;
	font-weight: 700;
	font-size: 14px;
}

#single-course .section-3 .collapse-link.collapsed .fa-plus {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

#single-course .section-3 .collapse-link .fa-plus {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#single-course .section-5 {
	margin-top: 60px;
	padding: 30px;
}

#single-course .section-5 .rating {
	margin-top: 15px;
	max-width: 485px;
	width: 100%;
}

#single-course .section-5 .rating .bar-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-bottom: 10px;
}

#single-course .section-5 .rating .bar-container .side {
	font-size: 20px;
	margin-left: 10px;
}

#single-course .section-5 .rating .bar-container .bar {
	max-width: 370px;
	width: 100%;
	background: #c4c4c4;
	height: 7px;
	border-radius: 10px;
	position: relative;
	bottom: 6px;
}

#single-course .section-5 .rating .bar-container .bar::before {
	content: "";
	position: absolute;
	border-radius: 10px;
	height: 7px;
	background-color: rgb(166 80 166);
}

#single-course .section-5 .rating .bar-container:first-child .bar::before {
	width: 88%;
}

#single-course .section-5 .rating .bar-container:nth-child(2) .bar::before {
	width: 68%;
}

#single-course .section-5 .rating .bar-container:nth-child(3) .bar::before {
	width: 78%;
}

#single-course .section-5 .rating .bar-container:nth-child(4) .bar::before {
	width: 68%;
}

#single-course .section-5 .rating .bar-container:nth-child(5) .bar::before {
	width: 98%;
}

#single-course .section-5 .rating .rating-stars {
	margin-top: -5px;
}

#single-course .section-5 .rating .rating-stars i {
	font-size: 11px;
}

#single-course .section-5 .rating .rating-info span {
	color: #fe5538;
	font-size: 12px;
	font-family: "Mulish", sans-serif;
	font-weight: 700;
}

#single-course .section-5 .section-title {
	font-size: 35px;
	font-weight: 400;
}

#single-course .section-5 #rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#single-course .section-5 #rating i {
	color: rgb(166 80 166);
}

#single-course .section-5 #rating .rating-info .rating-button {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	border-radius: 50px;
	margin-top: 30px;
	display: inline-block;
	font-weight: 700;
	font-family: "Mulish", sans-serif;
	font-size: 15px;
	color: #34485a;
	padding: 10px 35px;
	white-space: nowrap;
	margin-right: 15px;
}

#single-course .section-5 #rating .rating-info .rating-button:focus {
	outline: none;
}

#single-course .section-5 #rating .rating-info .rating-button:hover {
	background: rgb(166 80 166);
	color: white;
}

#single-course .section-5 #rating .rating-info .rating-button:hover i {
	color: white;
}

#single-course .section-5 #rating .rating-info span {
	color: #fe5538;
	font-family: "Mulish", sans-serif;
	font-weight: 700;
	font-size: 13px;
	margin-top: -8px;
	display: inherit;
}

#single-course .section-5 #rating .rating-info .rating-stars {
	margin-top: 15px;
}

#single-course .section-5 #rating .rating-info .rating-stars button {
	background: none;
}

#single-course .section-5 #rating .rating-info p {
	font-family: "Futurica", sans-serif;
	font-weight: 700;
	font-size: 50px;
	color: rgb(166 80 166);
	margin-bottom: 0;
}

#single-course .section-5 #rating .rating-info i {
	font-size: 12px;
}

#single-course .section-6 .section-title {
	font-size: 35px;
	font-weight: 400;
	padding-left: 30px;
}

#single-course .section-6 .leader-board {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	max-width: 790px;
	padding: 15px 30px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 15px;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

#single-course .section-6 .leader-board > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 380px;
	width: 100%;
}

#single-course .section-6 .leader-board h2 {
	font-family: "Futurica", sans-serif;
	font-weight: 400;
	font-size: 23px;
	margin-bottom: 0;
}

#single-course .section-6 .leader-board img {
	height: 33px;
	margin-right: 14px;
}

#single-course .section-6 .leader-board h5 {
	font-family: "Futurica", sans-serif;
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 0;
}

#single-course .section-6 .leader-board h5:last-child {
	max-width: 100px;
	width: 100%;
}

#single-course-top .single-course-text,
#single-course-top .img {
	width: 50%;
}

#single-course .section-6 .leader-board h5:nth-child(2) {
	max-width: 75px;
	width: 100%;
}

#single-course .section-6 .leader-board:hover {
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}

#single-course .section-6 .leader-board-top {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
}

#single-course .section-6 .leader-board-top:hover {
	-webkit-transform: none;
	transform: none;
}

#single-course .section-6 .leader-board-top h5 {
	color: #fe5538;
	font-family: "Mulish", sans-serif;
	font-weight: 700;
	font-size: 12px;
}

#single-course .section-6 .leader-board-top h5:nth-child(2) {
	max-width: 100px;
	width: 100%;
}

#single-course .section-6 .leader-board-top h5:last-child {
	width: 100%;
}

#single-course.single-exam .section-2 {
	margin-top: 0;
}

.related {
	padding-top: 120px;
	padding-bottom: 70px;
}

.related .row {
	min-height: 500px;
}

.related .title {
	text-align: center;
	margin-bottom: 50px;
}

.wp-btn,
.top-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: white;
	border: 1px solid rgb(166 80 166);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	position: fixed;
	right: 50px;
	bottom: 70px;
	z-index: 1000;
	cursor: pointer;
}

.wp-btn:before,
.wp-btn:after,
.top-btn:before,
.top-btn:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	height: 100%;
	width: 100%;
	border: 1px solid rgb(166 80 166);
	z-index: -1;
	opacity: 0;
	-webkit-animation: pulse-border-2 1s linear infinite;
	animation: pulse-border-2 1s linear infinite;
}

.wp-btn:after,
.top-btn:after {
	-webkit-animation: pulse-border 1.4s linear infinite;
	animation: pulse-border 1.4s linear infinite;
}

.wp-btn i,
.top-btn i {
	color: rgb(166 80 166);
	font-weight: 300;
	font-size: 24px;
}

.wp-btn:hover,
.top-btn:hover {
	background: rgb(166 80 166);
}

.wp-btn:hover i,
.top-btn:hover i {
	color: white;
}

.wp-btn {
	bottom: 140px;
}

@-webkit-keyframes pulse-border-2 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

@keyframes pulse-border-2 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}
}

@-webkit-keyframes pulse-border {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1.8);
		transform: scale(1.8);
		opacity: 0;
	}
}

@keyframes pulse-border {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1.8);
		transform: scale(1.8);
		opacity: 0;
	}
}

#login .container {
	padding-top: 150px;
}

#login > .container {
	position: relative;
}

#login > .container .square-1 {
	bottom: -55px;
	left: 60px;
	top: auto;
}

#login > .container .square-2 {
	right: 95px;
	top: 107px;
}

#login > .container > .point-3 {
	left: 70px;
	right: inherit;
	bottom: -5px;
	top: auto;
	z-index: 111;
}

#login > .container > .point-4 {
	right: 135px;
	top: 75px;
	background: #fe5538;
	z-index: 111;
}

#login .login-box {
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	position: relative;
	overflow: hidden;
	margin: auto;
	max-width: 1150px;
	width: 100%;
	min-height: 530px;
}

#login form {
	background: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	max-width: 340px;
	margin-left: 80px;
}

#login .form-title {
	font-family: "Futurica", sans-serif;
	font-weight: 400;
	font-size: 35px;
	color: #191919;
}

#login button {
	border-radius: 20px;
	border: 1px solid rgb(166 80 166);
	background-color: rgb(166 80 166);
	color: #ffffff;
	padding: 8px 45px;
	letter-spacing: 1px;
	-webkit-transition: -webkit-transform 80ms ease-in;
	transition: -webkit-transform 80ms ease-in;
	transition: transform 80ms ease-in;
	transition: transform 80ms ease-in, -webkit-transform 80ms ease-in;
	font-family: "Mulish", sans-serif;
	margin-top: 25px;
	font-weight: 600;
	margin-bottom: 15px;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

#login button:focus {
	outline: none;
}

#login button:hover {
	background: white;
	color: rgb(166 80 166);
}

#login button:active {
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
}

#login button.ghost {
	background-color: transparent;
	border-color: rgb(166 80 166);
	color: rgb(166 80 166);
}

#login button.ghost:hover {
	background: rgb(166 80 166);
	color: #fff;
}

#login input {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.15);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.15);
	border-radius: 50px;
	border: 1px solid transparent;
	color: #353535;
	font-family: "Mulish", sans-serif;
	padding: 8px 20px;
	margin: 10px 0;
	width: 100%;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	font-size: 15px;
}

#login input:focus {
	border-color: #d6a7f9;
}

#login input::-webkit-input-placeholder {
	color: #353535;
}

#login input:-ms-input-placeholder {
	color: #353535;
}

#login input::-ms-input-placeholder {
	color: #353535;
}

#login input::placeholder {
	color: #353535;
}

#login .form-container {
	position: absolute;
	top: 0;
	height: 100%;
	-webkit-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

#login .form-container div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#login .form-container div a {
	font-family: "Mulish", sans-serif;
	color: #353535;
	font-size: 13px;
}

#login .form-container div a:hover {
	color: blue;
}

#login .form-container label {
	position: relative;
	font-family: "Mulish", sans-serif;
	color: #6b6b6b;
	font-size: 13px;
	cursor: pointer;
}

#login .form-container label input {
	opacity: 0;
	position: absolute;
}

#login .form-container label input:checked ~ span:before {
	opacity: 1;
}

#login .form-container label span {
	height: 12px;
	width: 12px;
	border: 1px solid rgb(166 80 166);
	border-radius: 3px;
	display: inline-block;
	margin-right: 0px;
	cursor: pointer;
	position: relative;
}

#login .form-container label span:before {
	content: "";
	position: absolute;
	opacity: 0;
	left: 2px;
	top: 0px;
	width: 7px;
	height: 9px;
	border: solid rgb(166 80 166);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#login .sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

#login .login-box.right-panel-active .sign-in-container {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	z-index: -1;
}

#login .sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

#login .login-box.right-panel-active .sign-up-container {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	-webkit-animation: show 0.6s;
	animation: show 0.6s;
}

#login .login-box.right-panel-active-mobile .sign-in-container {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	z-index: -1;
	width: 100%;
}

#login .login-box.right-panel-active-mobile .sign-up-container {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	opacity: 1;
	z-index: 5;
	-webkit-animation: show 0.6s;
	animation: show 0.6s;
	width: 100%;
}

@-webkit-keyframes show {
	0%,
	49.99% {
		opacity: 0;
		z-index: 1;
	}

	50%,
	100% {
		opacity: 1;
		z-index: 5;
	}
}

@keyframes show {
	0%,
	49.99% {
		opacity: 0;
		z-index: 1;
	}

	50%,
	100% {
		opacity: 1;
		z-index: 5;
	}
}

#login .overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.6s ease-in-out;
	transition: -webkit-transform 0.6s ease-in-out;
	transition: transform 0.6s ease-in-out;
	transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
	z-index: 100;
}

#login .login-box.right-panel-active .overlay-container {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

#login .overlay {
	background: #f7f1fe;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: -webkit-transform 0.6s ease-in-out;
	transition: -webkit-transform 0.6s ease-in-out;
	transition: transform 0.6s ease-in-out;
	transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

#login .login-box.right-panel-active .overlay {
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
}

#login .overlay-panel {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0 80px;
	top: 0;
	height: 100%;
	width: 50%;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: -webkit-transform 0.6s ease-in-out;
	transition: -webkit-transform 0.6s ease-in-out;
	transition: transform 0.6s ease-in-out;
	transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

#login .overlay-panel button {
	max-width: 340px;
}

#login .overlay-panel .form-title {
	margin-bottom: 0;
}

#login .overlay-left {
	-webkit-transform: translateX(-20%);
	transform: translateX(-20%);
}

#login .overlay-left .point-4 {
	bottom: 60px;
	left: 90px;
}

#login .overlay-left .point-3 {
	right: inherit;
	top: 100px;
	left: 50px;
}

#login .overlay-left .point-1 {
	right: 92px;
	left: auto;
	top: 45px;
}

#login .overlay-left .point-2 {
	right: 65px;
	top: auto;
	left: auto;
	bottom: 110px;
}

#login .login-box.right-panel-active .overlay-left {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

#login .overlay-right {
	right: 0;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

#login .overlay-right .point-4 {
	top: 80px;
	right: 110px;
}

#login .overlay-right .point-3 {
	right: inherit;
	top: 30px;
	left: 45px;
}

#login .overlay-right .point-1 {
	bottom: 80px;
	right: 100px;
	left: auto;
	top: auto;
}

#login .overlay-right .point-2 {
	bottom: 50px;
	left: 150px;
	top: auto;
}

#login .login-box.right-panel-active .overlay-right {
	-webkit-transform: translateX(20%);
	transform: translateX(20%);
}

#password,
#confetti {
	padding: 280px 0 120px;
}

#password .container,
#confetti .container {
	position: relative;
}

#password .forgot-pass,
#confetti .forgot-pass {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	min-height: 500px;
	max-width: 1150px;
	margin: auto;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
}

#password .forgot-pass form,
#confetti .forgot-pass form {
	max-width: 340px;
}

#password .forgot-pass form input,
#password .forgot-pass form .button,
#confetti .forgot-pass form input,
#confetti .forgot-pass form .button {
	width: 100%;
}

#password .forgot-pass form input,
#confetti .forgot-pass form input {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	border-radius: 50px;
	border: 1px solid transparent;
	color: #353535;
	font-family: "Mulish", sans-serif;
	padding: 8px 20px;
	margin: 10px 0;
	width: 100%;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	font-size: 15px;
}

#password .forgot-pass form input:focus,
#confetti .forgot-pass form input:focus {
	border-color: #d6a7f9;
}

#password .forgot-pass form input::-webkit-input-placeholder,
#confetti .forgot-pass form input::-webkit-input-placeholder {
	color: #353535;
}

#password .forgot-pass form input:-ms-input-placeholder,
#confetti .forgot-pass form input:-ms-input-placeholder {
	color: #353535;
}

#password .forgot-pass form input::-ms-input-placeholder,
#confetti .forgot-pass form input::-ms-input-placeholder {
	color: #353535;
}

#password .forgot-pass form input::placeholder,
#confetti .forgot-pass form input::placeholder {
	color: #353535;
}

#password .forgot-pass form .button,
#confetti .forgot-pass form .button {
	margin-top: 15px;
}

#password .title,
#confetti .title {
	font-weight: 400;
	position: relative;
	z-index: 1;
}

#password .square-1,
#confetti .square-1 {
	bottom: -55px;
	left: 60px;
	top: auto;
	z-index: -1;
}

#password .square-2,
#confetti .square-2 {
	z-index: -1;
	right: 95px;
	top: -10px;
}

#password .point-7,
#confetti .point-7 {
	right: 135px;
	top: -35px;
}

#password .point-3,
#confetti .point-3 {
	left: 70px;
	right: inherit;
	bottom: -5px;
	top: auto;
}

#password .sms-pass,
#confetti .sms-pass {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#password .sms-pass .input-pass,
#confetti .sms-pass .input-pass {
	border: 1px solid #c4c4c4;
	width: 40px;
	height: 60px;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
	color: #191919;
}

#password .sms-pass .input-pass:focus,
#confetti .sms-pass .input-pass:focus {
	border-color: rgb(166 80 166);
}

#password .sms-pass .input-pass::-webkit-input-placeholder,
#confetti .sms-pass .input-pass::-webkit-input-placeholder {
	color: #c4c4c4;
}

#password .sms-pass .input-pass:-ms-input-placeholder,
#confetti .sms-pass .input-pass:-ms-input-placeholder {
	color: #c4c4c4;
}

#password .sms-pass .input-pass::-ms-input-placeholder,
#confetti .sms-pass .input-pass::-ms-input-placeholder {
	color: #c4c4c4;
}

#password .sms-pass .input-pass::placeholder,
#confetti .sms-pass .input-pass::placeholder {
	color: #c4c4c4;
}

#password .sms-pass .input-pass:not(:last-child),
#confetti .sms-pass .input-pass:not(:last-child) {
	margin-right: 23px;
}

#password .sms-pass .input-pass.active,
#confetti .sms-pass .input-pass.active {
	border-color: #191919;
}

#password .form-subtitle,
#confetti .form-subtitle {
	margin-bottom: 40px;
}

#password .sms-form button.button,
#confetti .sms-form button.button {
	margin-top: 40px;
}

#password .button,
#confetti .button {
	position: relative;
	z-index: 1;
}

#confetti .forgot-pass {
	background: #fefeff;
}

#confetti .point-1 {
	bottom: 150px;
	left: auto;
	right: 190px;
}

#confetti .point-5 {
	left: 190px;
	bottom: 100px;
}

#confetti .point-4 {
	right: 350px;
	top: 70px;
}

#confetti .point-2 {
	left: 290px;
	top: 50px;
}

.confetti {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

#member-area {
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#member-area .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#member-area nav {
	padding: 30px 60px 0;
	max-width: 300px;
	width: 100%;
	background: rgb(166 80 166);
	height: 100vh;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}

#member-area .member-area-content {
	padding-top: 30px;
	max-width: calc(100% - 330px);
}

#member-area .profile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 80px;
	margin-bottom: 80px;
}

#member-area .profile img {
	width: 50px;
	height: 50px;
}

#member-area .profile .title {
	margin-top: 15px;
	margin-bottom: 3px;
	color: white;
	font-size: 20px;
}

#member-area .profile .phone {
	color: #2f2f2f;
	font-family: "Mulish", sans-serif;
}

#member-area .memeber-area-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: white !important;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

#member-area .memeber-area-menu svg {
	margin-right: 3px;
}

#member-area .memeber-area-menu svg path {
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

#member-area .memeber-area-menu a {
	font-weight: 400;
	font-size: 20px;
	color: #2f2f2f;
	margin-bottom: 5px;
	display: inline-block;
}

#member-area .memeber-area-menu a:hover,
#member-area .memeber-area-menu a:hover svg path {
	color: #fe5538;
	fill: #fe5538;
}

#member-area .memeber-area-menu .active,
#member-area .memeber-area-menu .active svg path {
	color: #fe5538;
	fill: #fe5538;
}

#member-area .header-left a {
	color: #34485a;
}

#member-area .header-left a:hover {
	color: #fe5538;
}

.member-area-content {
	width: 100%;
	padding: 0 30px;
}

.member-area-content .member-area-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.member-area-courses .course-container {
	padding-top: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.member-area-courses .course-card,
.member-area-courses .exam-card {
	max-width: 300px;
	width: 100%;
	margin: 10px 10px;
}

.member-area-courses .course-card:hover .button:last-child,
.member-area-courses .exam-card:hover .button:last-child {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	border-radius: 50px;
	color: rgb(166 80 166);
	border-color: white;
}

.member-area-courses .course-card:hover .button:first-child,
.member-area-courses .exam-card:hover .button:first-child {
	color: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	border-radius: 50px;
	background: rgb(166 80 166);
	border-color: rgb(166 80 166);
}

.member-area-courses .progress-bar {
	width: 100%;
	background-color: #d8d8d8;
	height: 7px;
}

.member-area-courses .progress-bar div {
	position: absolute;
	width: 100px;
	max-width: 100%;
	height: 7px;
	background-color: rgb(166 80 166);
}

.member-area-courses .button {
	font-size: 14px;
	padding: 7px 30px;
	z-index: 100;
}

.member-area-courses .course-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 20px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.member-area-courses .course-content p {
	font-weight: 700;
	color: #fe5538;
	font-size: 15px;
	margin-bottom: 0;
}

.member-area-courses .course-content i {
	color: rgb(166 80 166);
	font-size: 19px;
}

.member-area-courses .button:first-child {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	border-radius: 50px;
	color: rgb(166 80 166);
	border-color: white;
}

.member-area-profile form {
	position: relative;
	max-width: 830px;
	width: 100%;
	min-height: 325px;
	margin-top: 170px;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 60px 65px;
}

.member-area-profile form .form-div {
	width: 48%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 20px;
}

.member-area-profile form div:last-child {
	width: 100%;
}

.member-area-profile form div:last-child p {
	font-size: 15px;
	margin-bottom: 0;
}

.member-area-profile form div:last-child p a {
	color: rgb(166 80 166);
}

.member-area-profile form div:last-child p a:hover {
	color: #fe5538;
}

.member-area-profile input {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	border-radius: 50px;
	padding: 6px 20px;
	border: 1px solid transparent;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	font-family: "Mulish", sans-serif;
}

.member-area-profile input:focus {
	border-color: #d6a7f9;
}

.member-area-profile input::-webkit-input-placeholder {
	font-size: 14px;
}

.member-area-profile input:-ms-input-placeholder {
	font-size: 14px;
}

.member-area-profile input::-ms-input-placeholder {
	font-size: 14px;
}

.member-area-profile input::placeholder {
	font-size: 14px;
}

.member-area-profile .point-4 {
	bottom: 0;
	right: 30px;
}

.member-area-profile .point-7 {
	left: 60px;
	top: -70px;
}

.member-area-profile .point-6 {
	right: -180px;
	top: -100px;
}

.member-area-profile .point-5 {
	left: 330px;
	bottom: -100px;
}

.member-area-profile label {
	font-family: "Mulish", sans-serif;
	color: #797979;
	font-size: 14px;
	padding-left: 20px;
}

.member-area-profile div:last-child .button {
	margin-top: 15px;
}

.member-area-invoice .invoice-container {
	padding-top: 10px;
}

.member-area-invoice .invoice {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
	max-width: 985px;
	padding: 20px 100px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 13px;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.member-area-invoice .invoice:hover {
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}

.member-area-invoice .invoice p {
	margin-bottom: 0;
	font-family: "Mulish", sans-serif;
	font-size: 14px;
	width: 100%;
	text-align: center;
}

.member-area-invoice .invoice p:nth-child(1) {
	max-width: 100px;
}

.member-area-invoice .invoice p:nth-child(2) {
	max-width: 60px;
}

.member-area-invoice .invoice p:nth-child(3) {
	max-width: 270px;
}

.member-area-invoice .invoice p:nth-child(4) {
	max-width: 45px;
}

.member-area-invoice .invoice .date,
.member-area-invoice .invoice .name {
	color: #69768b;
}

.member-area-invoice .invoice .price {
	color: red;
}

.member-area-invoice .invoice-header {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0px 100px;
}

.member-area-invoice .invoice-header p {
	font-family: "Futurica", sans-serif;
	color: #69768b;
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 0px;
}

.member-area-invoice .modal-box {
	display: none;
}

.member-area-invoice .invoice-modal {
	background: rgba(0, 0, 0, 0.2);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.member-area-invoice .modal-container {
	position: relative;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
	max-width: 820px;
	width: 100%;
	padding: 65px 40px;
}

.member-area-invoice .modal-container .title {
	font-weight: 400;
	text-align: center;
	margin-bottom: 50px;
}

.member-area-invoice .modal-container .modal-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 550px;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: auto;
}

.member-area-invoice .modal-container .modal-text p,
.member-area-invoice .modal-container .modal-text a {
	font-weight: 700;
	color: #181818;
	margin-bottom: 12px;
	display: block;
}

.member-area-invoice .modal-container .modal-text .phone a {
	display: inline;
}

.member-area-invoice .modal-container .modal-text .phone {
	margin-bottom: 12px;
}

.member-area-invoice .modal-container .modal-text i {
	color: rgb(166 80 166);
	margin-right: 4px;
}

.member-area-invoice .modal-container .modal-text a:hover {
	color: blue;
}

.member-area-invoice .modal-container .modal-bottom {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid rgb(166 80 166);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.member-area-invoice .modal-container .modal-bottom span {
	color: #989898;
	font-size: 14px;
}

.member-area-invoice .modal-container .modal-bottom p {
	font-family: "Futurica", sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #353535;
	margin-bottom: 0;
}

.member-area-invoice .fa-times {
	position: absolute;
	color: #181818;
	font-size: 20px;
	font-weight: 300;
	cursor: pointer;
	top: 30px;
	right: 30px;
}

.member-area-invoice .fa-times:hover {
	color: rgb(166 80 166);
}

/* #member-area .navbar-video {
  max-width: 165px;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
} */

/* #member-area .navbar-video h2, #member-area .navbar-video p, #member-area .navbar-video span {
  display: none;
} */

 .member-area-video {
   width: 100%;
   padding-bottom: 100px;
 }

 .member-area-video .video-top {
   width: 100%;
   height: 155px;
 }

 .member-area-video .video-top img {
   width: 100%;
   height: 100%;
 }

 .member-area-video .sidebar-icon {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: rgb(166 80 166);
   border: 1px solid rgb(166 80 166);
   position: fixed;
   top: 50px;
   right: 50px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   cursor: pointer;
   -webkit-transition: all 0.4s linear;
   transition: all 0.4s linear;
 }

 .member-area-video .sidebar-icon i {
   font-size: 30px;
   font-weight: 300;
   color: white;
 }

 .member-area-video .sidebar-icon:hover {
   background: white;
 }

 .member-area-video .sidebar-icon:hover i {
   color: rgb(166 80 166);
 }

 .member-area-video .course-sidebar {
   position: fixed;
   right: 0;
   top: 0;
   bottom: 0;
   background: #FFFFFF;
   -webkit-box-shadow: -4px 0px 7px rgba(190, 190, 190, 0.25);
   box-shadow: -4px 0px 7px rgba(190, 190, 190, 0.25);
   height: 100vh;
   max-width: 355px;
   width: 100%;
   right: -100%;
   opacity: 0;
   visibility: hidden;
   -webkit-transition: all 0.4s linear;
   transition: all 0.4s linear;
 }

 .member-area-video .course-sidebar.active {
   opacity: 1;
   visibility: visible;
   right: 0;
   z-index: 100;
   overflow: auto;
 }

 .member-area-video .course-sidebar.active::-webkit-scrollbar {
   width: 3px;
 }

 .member-area-video .course-sidebar.active::-webkit-scrollbar-track {
   -webkit-box-shadow: none;
   box-shadow: none;
   border-radius: 0px;
   background: transparent;
 }

 .member-area-video .course-sidebar.active::-webkit-scrollbar-thumb {
   background: rgb(166 80 166);
   border-radius: 8px;
 }

 .member-area-video .course-sidebar.active::-webkit-scrollbar-thumb:hover {
   background: rgb(166 80 166);
 }

 .member-area-video .sidebar-title {
   background: rgb(166 80 166);
   color: white;
   margin-top: 50px;
   padding: 30px;
 }

 .member-area-courses .course-content p span {
   border-radius: 50%;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 25px;
   height: 25px;
   background-color: rgb(166 80 166);
 }

 .member-area-courses .course-content p span i {
   color: white;
   font-size: 13px;
 }

 .member-area-video .sidebar-title #courseMaterials {
   width: 25px;
   height: 25px;
   border: 1px solid white;
   border-radius: 50%;
   display: -webkit-inline-box;
   display: -ms-inline-flexbox;
   display: inline-flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   font-weight: 300;
   cursor: pointer;
   -webkit-transition: all 0.4s linear;
   transition: all 0.4s linear;
   font-size: 22px;
 }

 .member-area-video .sidebar-title #courseMaterials:hover {
   color: #D6A7F9;
   border-color: #D6A7F9;
 }

 .member-area-video .sidebar-title p {
   font-weight: 400;
   font-family: "Futurica", sans-serif;
   font-size: 35px;
   margin-bottom: 0;
 }

 .member-area-video .sidebar-section {
   padding: 10px 30px;
   border-bottom: 1px solid #686868;
 }

 .member-area-video .sidebar-section-panel {
   padding: 10px 30px;
   border-bottom: 1px solid #686868;
 }

 .member-area-video .sidebar-section-panel .sidebar-title {
   line-height: 22px;
 }

 .member-area-video .sidebar-section-panel.active {
   background: #F1F1F1;
 }

 .member-area-video .sidebar-section-panel .section-subtitle {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   margin-top: 10px;
 }

 .member-area-video .sidebar-section-panel .section-subtitle i {
   width: 25px;
   height: 25px;
   border-radius: 50%;
   display: -webkit-inline-box;
   display: -ms-inline-flexbox;
   display: inline-flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   color: white;
   background: rgb(166 80 166);
 }

 .member-area-video .sidebar-section-panel .section-subtitle .fa-check {
   background: #D6D6D6;
 }

 .member-area-video .sidebar-section-panel .section-subtitle .fa-check.active {
   background: #009834;
 }

 .member-area-video .sidebar-section-panel .section-subtitle span {
   color: #FE5538;
 }

 .member-area-video .section-title {
   font-family: "Futurica", sans-serif;
   font-weight: 400;
   font-size: 20px;
   margin-bottom: 0px;
 }

 .member-area-video .section-subtitle {
   font-weight: 700;
   font-family: "Mulish", sans-serif;
   margin-bottom: 0;
   font-size: 15px;
 }

 .member-area-video .iframe {
   max-width: 100%;
   width: 100%;
   background: #FFFFFF;
   -webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
   box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
   padding: 50px 30px;
   margin: -40px 0px 0;
   position: relative;
   z-index: 1;
 }

 .member-area-video .iframe iframe {
   max-width: 800px;
   width: 100%;
   min-height: 480px;
   height: 100%;
 }

 .quiz-list {
   max-width: 837px;
   width: 100%;
   background: #FFFFFF;
   -webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
   box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
   padding: 50px 0px;
   margin: -40px 40px 0;
   position: relative;
   z-index: 1;
 }

 .filter-logo {
   display: none;
 }

 .close-filter {
   display: none;
 }

 .search-input {
   width: 100%;
   height: 80px;
   background: #ffffff;
   display: flex;
   align-items: center;
   transition: 0.3s all ease-in-out;
   transform: translateY(-100%);
 }

 .search-input form {
   width: 95%;
   display: flex;
   justify-content: space-between;
 }

 .search-input form button {
   background: none;
   margin-right: 20px;
 }

 .active .search-input {
   transform: translateY(0);
 }

 .search-input input {
   width: 95%;
   border: none;
   font-weight: 400;
   font-size: 16px;
   line-height: 20px;
   color: #181818;
 }

 .search-input input::placeholder {
   font-weight: 400;
   font-size: 16px;
   line-height: 20px;
   color: #181818;
 }

 .search-input img {
   cursor: pointer;
 }

 .bg-search {
   position: absolute;
   height: 100%;
   width: 100%;
   background: rgba(0, 0, 0, 0.4);
   backdrop-filter: blur(4px);
   opacity: 0;
   visibility: hidden;
   transition: 0.3s all ease-in-out;
 }

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

 .search-input .row {
   padding: 0 250px;
   justify-content: space-between;
 }

 .searched {
   position: fixed;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   /* display: none; */
   visibility: hidden;
 }

 .searched.active {
   visibility: visible;
 }

 .quiz-list .quiz-options {
   position: relative;
 }

 .quiz-list .quiz-options label {
   font-family: "Mulish", sans-serif;
   font-weight: 600;
   color: #353535;
   cursor: pointer;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
 }

 .quiz-list .quiz-options input {
   opacity: 0;
   visibility: hidden;
   position: absolute;
 }

 .quiz-list .quiz-options input:checked~.checkmark:before {
   opacity: 1;
 }

 .quiz-list .quiz-options .checkmark {
   display: inline-block;
   width: 16px;
   height: 16px;
   position: relative;
   border-radius: 50%;
   border: 1px solid #353535;
   margin-right: 3px;
   cursor: pointer;
 }

 .quiz-list .quiz-options .checkmark:before {
   content: '';
   position: absolute;
   width: 10px;
   height: 10px;
   left: 2px;
   top: 2px;
   border-radius: 50%;
   background: #353535;
   opacity: 0;
 }

 .quiz-list .quiz-options.empty input:checked~.checkmark {
   border-color: #D6A7F9;
 }

 .quiz-list .quiz-options.empty input:checked~.checkmark:before {
   background: #D6A7F9;
 }

 .quiz-list .quiz-options.true input:checked~.checkmark {
   border-color: #00C850;
 }

 .quiz-list .quiz-options.true input:checked~.checkmark:before {
   background: #00C850;
 }

 .quiz-list .quiz-options.false input:checked~.checkmark {
   border-color: #FF0000;
 }

 .quiz-list .quiz-options.false input:checked~.checkmark:before {
   background: #FF0000;
 }

 .quiz-list .exam {
   padding: 20px 30px;
   margin: 20px 0;
   border-bottom: 1px dashed #686868;
 }

 .quiz-list .quiz p {
   font-family: "Futurica", sans-serif;
   font-size: 20px;
 }

 .quiz-list .quiz-title {
   padding: 0 30px;
   border-bottom: 1px solid #686868;
 }

 .quiz-list .quiz-title h5 {
   font-family: "Futurica", sans-serif;
   font-size: 20px;
   margin-bottom: 0;
 }

 .quiz-list .quiz-title p {
   font-family: "Mulish", sans-serif;
   font-size: 16px;
   font-weight: 700;
 }

 .quiz-list .quiz-title p span {
   color: rgb(166 80 166);
 }

 .quiz-list .explanation {
   padding: 0 30px;
 }

 .quiz-list .explanation iframe {
   width: 100%;
   min-height: 375px;
 }

 .quiz-list .explanation p {
   font-weight: 700;
 }

 #wish-list {
   position: fixed;
   top: 0;
   bottom: 0;
   right: -100%;
   height: 100vh;
   background: #FFFFFF;
   -webkit-box-shadow: -4px 0px 7px rgba(190, 190, 190, 0.25);
   box-shadow: -4px 0px 7px rgba(190, 190, 190, 0.25);
   z-index: 1000;
   padding: 30px 20px;
   overflow: auto;
   -webkit-transition: all 0.4s linear;
   transition: all 0.4s linear;
 }

 #wish-list.active {
   right: 0;
 }

 #wish-list p {
   margin-bottom: 0;
 }

 #wish-list .wish-list-card {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   position: relative;
   margin-bottom: 20px;
   padding-bottom: 20px;
   border-bottom: 1px solid #D3D3D3;
 }

 #wish-list .wish-list-img {
   width: 120px;
   height: 100px;
   margin-right: 15px;
 }

 #wish-list .wish-list-img img {
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
 }

 #wish-list .card-price {
   font-family: "Mulish", sans-serif;
   font-weight: 800;
   color: rgb(166 80 166);
   margin-bottom: 0;
   position: relative;
 }

 #wish-list .card-price span {
   font-size: 13px;
   display: inline-block;
   -webkit-transform: translateY(-8px);
   transform: translateY(-8px);
 }

 #wish-list .card-name {
   font-family: "Futurica", sans-serif;
   width: 150px;
   line-height: 17px;
 }

 #wish-list .card-top {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   margin-top: 7px;
 }

 #wish-list .card-top span {
   color: #FE5538;
   font-family: "Mulish", sans-serif;
   font-weight: 700;
   font-size: 12px;
   position: relative;
 }

 #wish-list .card-top span:first-child::before {
   content: '';
   position: absolute;
   right: -40px;
   top: 8px;
   width: 5px;
   height: 5px;
   border-radius: 50%;
   background: rgb(166 80 166);
 }

 #wish-list .fa-chevron-right {
   width: 22px;
   height: 22px;
   display: -webkit-inline-box;
   display: -ms-inline-flexbox;
   display: inline-flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   background: #FFFFFF;
   -webkit-box-shadow: 0px 0px 7px rgba(67, 67, 67, 0.25);
   box-shadow: 0px 0px 7px rgba(67, 67, 67, 0.25);
   border-radius: 50%;
   color: rgb(166 80 166);
   cursor: pointer;
   -webkit-transition: all 0.4s linear;
   transition: all 0.4s linear;
 }

 #wish-list .fa-chevron-right:hover {
   background: rgb(166 80 166);
   color: #FFFFFF;
 }

 #wish-list .button {
   margin-top: 7px;
   font-size: 13px;
   padding: 4px 35px;
 }

 #wish-list .title {
   font-weight: 500;
   margin-top: 60px;
 }

 #wish-list .fa-times {
   color: #7D7C7C;
   font-weight: 400;
   font-size: 14px;
   cursor: pointer;
   position: absolute;
   top: -10px;
   right: 0;
 }

 #wish-list .card-bottom {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   margin-top: 10px;
 }

 #wish-list .wish-list-container {
   margin-top: 30px;
 }

 #wish-list::-webkit-scrollbar {
   width: 0px;
 }

 #wish-list::-webkit-scrollbar-track {
   -webkit-box-shadow: none;
   box-shadow: none;
   border-radius: 0px;
   background: transparent;
 }

 #wish-list::-webkit-scrollbar-thumb {
   background: transparent;
   border-radius: 8px;
 }

 #wish-list::-webkit-scrollbar-thumb:hover {
   background: transparent;
 }

 #contact {
   padding: 280px 0 130px;
 }

 #contact .contact-text {
   background: #FFFFFF;
   -webkit-box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
   box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
   padding: 33px 35px;
   max-width: 600px;
   width: 100%;
   position: relative;
   z-index: 1;
 }

 #contact .contact-text a {
   color: #181818;
   font-weight: 700;
   display: inline-block;
   margin-bottom: 18px;
 }

 #contact .contact-text a:hover {
   color: rgb(166 80 166);
 }

 #contact .contact-text .title {
   margin-bottom: 30px;
 }

 #contact .contact-text i {
   color: rgb(166 80 166);
   margin-right: 5px;
 }

 #contact .contact-text .social-media {
   margin-top: 20px;
 }

 #contact .contact-text .social-media a {
   margin-bottom: 0;
   margin-right: 35px;
 }

 #contact .contact-text .social-media i {
   color: rgb(166 80 166);
   font-size: 20px;
 }

 #contact .row {
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
 }

 #contact .title {
   font-weight: 400;
 }

 #contact .square-2 {
   right: 190px;
   height: 440px;
 }

 #contact .point-2 {
   left: 125px;
 }

 #contact .point-1 {
   bottom: -75px;
   left: 35px;
 }

 #contact .point-3 {
   right: 160px;
 }

 #contact form .title {
   margin-bottom: 0;
 }

 #contact .subtitle {
   margin-bottom: 50px;
   text-align: left;
 }

 #contact .form-div {
   max-width: 465px;
 }

 #contact input,
 #contact .button,
 #contact textarea {
   width: 100%;
 }

 #contact input,
 #contact textarea {
   background: #FFFFFF;
   -webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
   box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
   border-radius: 50px;
   border: 1px solid transparent;
   padding: 7px 20px;
 }

 #contact input:focus,
 #contact textarea:focus {
   outline: none;
   border-color: rgb(166 80 166);
 }

 #contact input::-webkit-input-placeholder,
 #contact textarea::-webkit-input-placeholder {
   font-weight: 400;
   font-family: "Mulish", sans-serif;
   font-size: 15px;
   color: #353535;
 }

 #contact input:-ms-input-placeholder,
 #contact textarea:-ms-input-placeholder {
   font-weight: 400;
   font-family: "Mulish", sans-serif;
   font-size: 15px;
   color: #353535;
 }

 #contact input::-ms-input-placeholder,
 #contact textarea::-ms-input-placeholder {
   font-weight: 400;
   font-family: "Mulish", sans-serif;
   font-size: 15px;
   color: #353535;
 }

 #contact input::placeholder,
 #contact textarea::placeholder {
   font-weight: 400;
   font-family: "Mulish", sans-serif;
   font-size: 15px;
   color: #353535;
 }

 #contact input {
   margin-bottom: 12px;
 }

 #contact textarea {
   min-height: 100px;
   border-radius: 20px;
 }

 #contact .button {
   margin-top: 18px;
   font-weight: 600;
 }

 #home .owl-dots {
   display: block;
   position: absolute;
   bottom: 30px;
   width: 100%;
   z-index: 12;
   display: flex;
   justify-content: center;
   background: transparent;
 }

 #home .owl-dots button:focus {
   outline: none;
 }

 #home .owl-dots .owl-dot span {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: #42C0C4;
   display: block;
   margin-right: 5px;
   transition: 0.5s all ease-in-out;
 }

 #home .owl-dots .owl-dot.active span {
   background: rgb(166 80 166);
 }

 #reviews .review-text {
   font-size: 14px;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 7 !important;
   -webkit-box-orient: vertical;
 }

 .member-area-courses .course-card,
 .member-area-courses .exam-card {
   min-height: 430px;
 }

 #home .owl-stage {
   display: flex;
 }

 .swiper-button-next:after,
 .swiper-button-prev:after {
   display: none;
 }

 .book-card {
   max-width: 100%;
   width: 100%;
 }

 .swiper-slide-next .book-card img {
   max-width: 280px;
   height: 400px;
   transform: scale(1);
   object-fit: cover;
   margin-top: -20px;
 }

 .book-card img {
   max-width: 240px;
   height: 340px;
   transform: scale(1);
   object-fit: cover;
 }

 .book-card .card-text {
   width: 65%;
 }

 #home .owl-dots button {
   background: transparent;
 }

 #mobile-menu {
   position: fixed;
   left: 0;
   right: -100%;
   bottom: 0;
   top: 136px;
   background: white;
   z-index: 1000;
   padding: 30px 0;
   opacity: 0;
   visibility: hidden;
   transition: all 0.4s linear;
 }

 #mobile-menu.show-menu {
   opacity: 1;
   visibility: visible;
   right: 0%;
   overflow: auto;
 }

 #mobile-menu form {
   background: #FFFFFF;
   -webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
   box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
   border-radius: 10px;
   min-height: 50px;
   position: relative;
   margin: 0 20px;
 }

 #mobile-menu button {
   background: transparent;
   outline: none;
   position: absolute;
   right: 20px;
   top: 13px;
 }

 #mobile-menu button i {
   color: rgb(166 80 166);
   font-weight: 400;
 }

 #mobile-menu input {
   border: none;
   min-height: 50px;
   padding-left: 10px;
   width: 100%;
 }

 #mobile-menu input::-webkit-input-placeholder {
   color: #989898;
 }

 #mobile-menu input:-ms-input-placeholder {
   color: #989898;
 }

 #mobile-menu input::-ms-input-placeholder {
   color: #989898;
 }

 #mobile-menu input::placeholder {
   color: #989898;
 }

 #mobile-menu ul {
   padding-top: 50px;
   list-style: none;
 }

 #mobile-menu ul li {
   padding: 10px 20px;
 }

 #mobile-menu ul li:nth-child(odd) {
   background: #F4F4F4;
 }

 #mobile-menu ul a {
   color: #181818;
   font-size: 20px;
   line-height: 25px;
   font-weight: 700;
 }

 #mobile-menu .social-media {
   padding-top: 60px;
   padding-left: 20px;
   padding-right: 20px;
 }

 #mobile-menu .social-media a {
   margin-right: 25px;
 }

 #mobile-menu .social-media i {
   color: #34485A;
   font-size: 22px;
 }


 header .menu-btn-div .menu-btn {
   background: rgb(166 80 166);
   width: 25px;
   height: 2px;
   -webkit-transition: all 0.4s linear;
   transition: all 0.4s linear;
   -webkit-transform: translate(0px, 24px);
   transform: translate(0px, 24px);
 }


 header .menu-btn-div:before {
   -webkit-transform: translateY(17px);
   transform: translateY(17px);
   left: 0;
 }

 header .menu-btn-div:after {
   -webkit-transform: translateY(29px);
   transform: translateY(29px);
 }

 header .open .menu-btn {
   -webkit-transform: translate(100px, 25px);
   transform: translate(100px, 25px);
   opacity: 0;
 }


 #login .form-container .mobile-qeydiyyat {
   display: none;
 }


 .member-area-arrow.open-menu {
   right: 0;
   width: 107px !important;
   transform: rotate(180deg);
   background: white;
   color: rgb(166 80 166);

 }

 .member-area-arrow.open-menu div {
   transform: rotate(180deg);
   background-color: rgb(166 80 166) !important;
   color: white !important;

 }

 .member-area-arrow.open-menu i {
   color: white !important;

 }

 .member-area-arrow.open-menu strong {
   right: 0;
   transform: rotate(180deg);
   background: white;
   color: rgb(166 80 166);
 }

 #exam-header {
   padding: 0;
 }

 #exam-header .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 @media only screen and (min-width: 992px) and (max-width: 1200px) {
   #home .title {
     font-size: 41px;
   }

   #home-about {
     padding-top: 350px;
   }

   #contact .square-2 {
     right: 95px;
   }
 }

 @media only screen and (max-width: 1440px) {
   .member-area-profile .point-6 {
     right: 80px;
   }

   .member-area-profile form {
     max-width: 100%;
   }

   #member-area .member-area-content {
     max-width: 100%;
   }

   #home .title {
     max-width: 487px;
   }

   #member-area nav {
     max-width: 275px;
   }
 }

 @media only screen and (max-width: 1200px) {

   #single-course .col-lg-4 .card-header,
   #single-course .col-lg-4 .card-body {
     display: none;
   }

   .card.course-card .card-top span:first-child::before {
     display: none;
   }

   #single-course .col-lg-4 .card {
     position: fixed;
     bottom: 0;
     top: auto;
     z-index: 10000;
     left: 0;
     right: 0;
   }

   #single-course .col-lg-4 .card-foot {
     justify-content: center;
   }

   #single-course .col-lg-4 .button:not(:last-child) {
     margin-right: 30px;
   }

   nav {
     max-width: 670px;
   }

   .header-icons a:not(:last-child) {
     margin-right: 4px;
   }
 }

 @media only screen and (max-width: 992px) {

   .member-area-video {
     width: calc(100% - 70px);
   }

   .member-area-arrow {
     display: flex;
   }

   #member-area nav .logo img {
     width: 50px;
   }

   #member-area nav {
     padding: 0;
     max-width: 20px;
   }

   #member-area nav a,
   #member-area nav span,
   #member-area nav svg,
   #member-area nav p,
   #member-area nav h2,
   #member-area nav img {
     display: none !important;
   }

   #member-area {
     justify-content: right;
   }

   #member-area nav.show-mobile-menu {
     position: fixed;
     left: 0;
     right: 0;
     top: 0;
     bottom: 0;
     z-index: 10000;
     max-width: 100%;
     padding: 30px 20px 0;
   }

   #member-area nav.show-mobile-menu a,
   #member-area nav.show-mobile-menu span,
   #member-area nav.show-mobile-menu svg,
   #member-area nav.show-mobile-menu p,
   #member-area nav.show-mobile-menu img,
   #member-area nav.show-mobile-menu h2 {
     display: inline-block !important;
   }

   #exam-header .container {
     flex-direction: column;
   }

   #login .form-container .mobile-qeydiyyat {
     display: block;
   }

   header .menu-btn-div {
     display: block;
   }

   .header-icons {
     display: flex;
     align-items: center;
   }

   .member-area-video .iframe {
     margin-left: 0;
   }

   #login form {
     max-width: 100%;
     margin-left: 0;
     padding: 0 40px;
   }

   #login .container {
     padding-top: 180px;
   }

   #login>.container .square-2 {
     right: 61px;
     top: 150px;
   }

   #login .sign-up-container,
   #login .sign-in-container {
     width: 100%;
   }

   #login .overlay-container {
     display: none;
   }

   .search-input,
   #single-course-top .point-2,
   #single-course .col-lg-4 .card-header,
   #single-course .col-lg-4 .card-body {
     display: none;
   }

   .header-icons a:hover {
     background: transparent;
   }

   .header-icons a:hover img {
     filter: none;
   }

   #single-course-top #breadcrumbs {
     margin-bottom: 50px;
     margin-top: 40px;
   }

   footer .footer-content {
     flex-direction: column;
   }

   footer .footer-menu:nth-child(2) {
     flex-direction: row;
     margin: 15px;
     transform: translate(0);
   }

   footer .social-media {
     position: static;
     margin-top: 20px;
     text-align: center;
   }

   footer .logo {
     /* text-align: left; */
     margin-bottom: 60px;
   }

   footer .footer-link {
     margin-bottom: 20px;
     width: 86%;
     text-align: center;
   }

   header .top-right,
   header .header-bottom nav,
   header .search-icon,
   footer .button {
     display: none;
   }

   .header-icons a {
     background: transparent;
     box-shadow: none;
   }

   header .header-bottom {
     background: #FFFFFF;
     box-shadow: 0px 1px 6px rgba(153, 153, 153, 0.25);
     padding: 15px 0;
   }

   .member-area-profile form .form-div {
     width: 100%;
   }

   #member-area .member-area-content .header-left a {
     display: none;
   }

   #member-area .member-area-content .header-left p {
	margin-top:20px;
  }


   .member-area-content .member-area-header {
     justify-content: end;
   }

   #single-course .section-5 #rating {
     flex-direction: column;
   }

   #single-course .col-lg-8 {
     padding-left: 15px;
   }

   #single-course .section-5 .rating .bar-container {
     align-items: center;
   }

   #single-course .section-5 #rating .rating-info {
     margin-bottom: 30px;
   }

   .related .col-lg-3 {
     margin-bottom: 30px;
   }

   #single-course-top .single-course-text,
   #single-course-top .img {
     width: 100%;
   }

   #single-course-top img {
     max-width: 100%;
   }

   .book-card {
     max-width: initial;
     min-width: initial;
   }

   #book-list .point-4,
   #book-list .point-3 {
     display: none;
   }

   #book-list .book-card {
     margin-bottom: 30px;
   }

   #home-news .col-lg-3 {
     margin-bottom: 30px;
   }

   #home-book .swiper-slide-next,
   #home-book .swiper-slide-active {
     max-width: initial;
   }

   .book-card .card-text {
     opacity: 1;
     visibility: visible;
     padding: 30px 50px;
   }

   .book-card .card-text {
     width: 100%;
     clip-path: inset(0 0% 0 0);

   }

   .book-card {
     flex-direction: column;
     align-items: center;
   }

   #home-seo .col-lg-6.img {
     text-align: center;
     margin-top: 40px;
   }

   #home-teacher .col-lg-5 {
     text-align: center;
     margin-top: 50px;
   }

   #home-courses .point-2 {
     top: -100px;
   }

   #home-courses .col-lg-3 {
     margin-bottom: 30px;
   }

   #home-about .row {
     flex-direction: column-reverse;
   }

   #home {
     height: auto;
   }

   #home .home-text {
     margin-bottom: 30px;
   }

   #password .square-2,
   #confetti .square-2 {
     top: -85px;
   }

   #home .container {
     justify-content: center !important;
     flex-wrap: wrap;
   }

   #certificate .point-3,
   #certificate .point-4,
   #home-teacher .point-3,
   #home-teacher .point-1 {
     display: none;
   }

   #certificate .certificate-card {
     margin: auto;
   }

   #contact .row>.col-lg-6:first-child {
     margin-bottom: 200px;
   }
 }

 @media only screen and (min-width: 768px) and (max-width: 992px) {

   #info .img {
     margin-top: 0;
   }

   .img {
     position: relative;
     text-align: center;
     margin-top: 100px;
   }

   #home-about .img {
     margin-top: 225px;
     display: flex;
     justify-content: center;
     margin-bottom: 40px;
   }

   #home-about .point-3 {
     left: 0;
     top: auto;
     bottom: -65px;
   }

   section {
     padding: 40px 0;
   }

   #home-about .container {
     justify-content: center !important;
   }

   #benefit .col-lg-3:first-child {
     margin-bottom: 20px;
   }

   #single-teacher .col-md-6 {
     margin-bottom: 20px;
   }

   #single-teacher .col-md-6:last-child {
     margin-bottom: 80px;
   }

   #single-teacher .col-md-6:nth-last-child(2) {
     margin-bottom: 80px;
   }

   #course .catalog .col-lg-3 {
     width: 100% !important;
   }

   #course .catalog .col-lg-3 .filter {
     max-width: 100% !important;
   }

   #course .catalog .col-lg-3 {
     position: sticky;
     top: 20px;
     z-index: 9999;
     transition: 0.5s all ease-in-out;
   }

   #course .filter {
     overflow-y: scroll;
     overflow-x: hidden;
     height: 80vh;
   }

   .col-md-6.catalog-cards {
     justify-content: center;
   }

   #course .card.course-card {
     margin-right: 0;
   }

 }

 @media only screen and (max-width: 768px) {
   .member-area-invoice .invoice-header {
     padding: 0;

   }

   .member-area-invoice .invoice {
     padding-left: 0;
     padding-right: 0;
   }

   .member-area-profile form {
     margin-top: 90px;
     padding: 50px 30px;
   }

   .profileLogo {
     display: block !important;
   }

   #home-certificate .swiper {
     padding-bottom: 10px;
   }

   #benefit .col-lg-3 {
     margin-bottom: 20px;
   }

   .square-2 {
     right: 82px;
   }

   #home-about .square-1 {
     left: 80px;
   }

   #wish-list {
     right: -140%;
   }

   #home .title {
     font-size: 32px;
     line-height: 33px;
   }

   .img {
     position: relative;
     text-align: center;
     margin-top: 20px;
   }

   #home .point-7 {
     background: #FE5538;
     right: 0px;
     top: -113px;
   }

   #home-about {
     padding-top: 0px;
     position: relative;
   }

   #home-about .col-lg-6:first-child {
     order: 1;
   }

   section {
     padding: 40px 0;
   }

   #benefit .card-header img {
     width: 63px;
     height: 50px;
   }

   #benefit .card {
     min-height: 245px;
   }

   #home-about .img {
     margin-top: 40px;
   }

   #home-about .point-3 {
     z-index: 0;
   }

   #home-about .point-2 {
     left: 10px;
   }

   #home .point-1 {
     display: none;
   }

   #home-about .title,
   #home-about p,
   #home-about .button {
     margin-left: 0;
   }

   #home .square-1 {
     display: none;
   }

   #home .square-2 {
     display: none;
   }

   #home-about .square-1 {
     display: none;
   }

   #home-about .square-2 {
     display: none;
   }

   #home .point-2 {
     display: none;
   }

   #home-about .point-2 {
     display: none;
   }

   .play-btn {
     width: 60px;
     height: 60px;
   }

   #contact .row>.col-lg-6:first-child {
     margin-bottom: 50px;
   }

   #home-teacher .col-lg-5,
   .teacher .col-lg-5 {
     padding-left: 15px !important;
     margin-left: 0 !important;
   }

   .teacher .point-1 {
     display: none;
   }

   .teacher .button {
     margin-top: 10px;
     margin-bottom: 40px;
   }

   .teacher .point-3 {
     top: 0;
     left: 5px;
   }

   .teacher .point-2 {
     right: 15px;
     top: 15px;
   }

   .teacher .col-lg-6 {
     order: 1;
   }

   #home-teacher .col-lg-6 span,
   #home-teacher .col-lg-6 p,
   #home-teacher .col-lg-6 a,
   .teacher .col-lg-6 span,
   .teacher .col-lg-6 p,
   .teacher .col-lg-6 a {
     margin-left: 20px;
   }

   #single-teacher .teacher-box {
     margin-top: 30px;
     padding: 20px;
     margin-bottom: 50px;
   }

   #single-teacher .teacher-box .point-2 {
     display: none;
   }

   #single-teacher .teacher-box .point-4 {
     bottom: -50px;
   }

   #single-teacher .teacher-box .teacher-info span {
     width: 60px;
     height: 60px;
     font-size: 11px;
   }

   #single-teacher .teacher-box .teacher-info {
     -webkit-transform: translateY(20px);
     transform: translateY(20px);
   }

   #single-teacher .teacher-box .teacher-name {
     font-size: 30px;
   }

   #single-teacher .teacher-box .col-lg-12 {
     margin-top: 0px;
   }

   .teacher-box span {
     font-size: 13px;
   }

   #single-teacher .teacher-box .col-lg-12 p:not(:last-child) {
     margin-bottom: 3px;
   }

   #single-teacher .col-lg-3 {
     margin-bottom: 20px;
   }

   #single-teacher .col-lg-3:last-child {
     margin-bottom: 50px;
   }

   .card.course-card .course-name {
     font-size: 16px;
     line-height: 16px;
   }

   .card.course-card .card-top span {
     font-size: 13px;
   }

   .card.course-card .card-foot p {
     font-size: 14px;
   }

   .card.course-card .card-foot .button {
     font-size: 13px;
   }

   #contact .square-2 {
     display: none;
   }

   #contact {
     padding: 235px 0 50px;
   }

   #contact .point-1 {
     bottom: -100px;
     left: -53px;
   }

   #contact .point-2 {
     left: 125px;
     top: -62px;
   }

   #contact .point-3 {
     display: none;
   }

   #contact .title {
     margin-top: 30px;
     font-size: 24px;
   }

   #contact .point-1 {
     bottom: -115px;
     left: 78%;
   }

   #contact .subtitle {
     font-size: 14px;
   }

   #course .catalog .col-lg-3 {
     width: 100% !important;
   }

   #course .catalog .col-lg-3 .filter {
     max-width: 100% !important;
   }

   #course .catalog .col-lg-3 {
     position: fixed;
     top: 0;
     z-index: 9999;
     left: 0;
     right: 0;
     transition: 0.5s all ease-in-out;
     transform: translate(-100%);
   }

   #course .catalog .col-lg-3.active {
     transform: translate(0);
   }

   #course .filter {
     overflow-y: scroll;
     overflow-x: hidden;
     height: 100vh;
   }

   .close-filter {
     display: flex;
     position: absolute;
     top: 20px;
     right: 20px;
     z-index: 999;
     width: 50px;
     height: 50px;
   }

   .close-filter img {
     width: 30px;
     height: 30px;
   }

   .col-md-6.catalog-cards {
     justify-content: center;
   }

   #course .card.course-card {
     margin-right: 0;
   }

   .filter-logo {
     display: block;
     background: #ffffff;
     max-width: 68px;
     height: auto;
     padding: 20px;
     position: fixed;
     top: 20vh;
     z-index: 9999;
     border-radius: 0 20px 20px 0;
   }
 }

 @media only screen and (min-width: 1440px) {

   body .container,
   body .container-lg,
   body .container-md,
   body .container-sm,
   body .container-xl {
     max-width: 1340px;
   }

   footer .container {
     max-width: 1000px;
   }
 }

 button:focus {
   outline: none !important;
 }

 @media only screen and (max-width: 575px) {
   .member-area-invoice .invoice-container {
     overflow: auto;
   }

   .member-area-invoice .invoice-header,
   .member-area-invoice .invoice {
     width: 500px;
   }

   .member-area-invoice .invoice-container::-webkit-scrollbar {
     width: 0px;
   }

   .member-area-video {
     width: 100%;
   }

   .navbar-video {
     z-index: 12;
   }

   .member-area-video .sidebar-icon {
     right: 10px;
     z-index: 12;
   }

   .member-area-video .iframe {
     padding: 40px 0;
   }

   #exam-header h1 {
     font-size: 30px;
   }

   .member-area-video .iframe .mt-5 {
     margin: 0 !important;
   }

   .member-area-video .iframe iframe {
     min-height: 370px;
   }

   .member-area-invoice .invoice-container::-webkit-scrollbar-track {
     -webkit-box-shadow: none;
     box-shadow: none;
     border-radius: 0px;
     background: transparent;
   }

   .member-area-invoice .invoice-container::-webkit-scrollbar-thumb {
     background: transparent;
     border-radius: 8px;
   }

   figure.image img {
     width: 100%;
   }

   .member-area-invoice .invoice-container::-webkit-scrollbar-thumb:hover {
     background: transparent;
   }

   .member-area-content {
     padding: 0 15px;
   }

   #member-area .profile {
     margin-top: 30px;
     margin-bottom: 30px;
   }

   #course .card.course-card {
     margin-left: 0;
   }

   #graduate {
     padding-top: 0;
   }

   .wp-btn,
   .top-btn {
     right: 16px;
   }

   .point-3,
   .point-7 {
     top: -55px;
   }

   .member-area-video .sidebar-title p {
     font-size: 30px;
   }

   #wish-list .wish-list-card {
     flex-direction: column;
   }

   #wish-list .card-bottom {
     flex-direction: column;
     align-items: flex-start;
   }

   #login>.container .square-2,
   #login>.container .square-1 {
     display: none;
   }

   #login>.container>.point-4 {
     top: 140px;
   }

   #login .form-title {
     font-size: 30px;
   }

   #login .form-container div {
     flex-direction: column;
   }

   #login {
     padding-bottom: 80px;
   }

   .related {
     padding-top: 60px;
   }

   #single-course .section-6 .leader-board-top {
     display: none;
   }

   #single-course .section-6 .leader-board {
     flex-direction: column;
   }

   #single-course .section-6 .leader-board h5 {
     margin-top: 6px;
   }

   #single-course .section-6 .leader-board>div {
     justify-content: center;
   }

   #wish-list.active {
     width: 100%;
   }

   #single-course-top .point-2,
   #single-course-top .point-3 {
     display: none;
   }

   #single-course .section-3 .section-title,
   #single-course .section-4 .card-title {
     font-size: 30px;
   }

   #single-course .section-4 .teacher-info {
     flex-direction: column;
   }

   #single-course .section-5 {
     margin-top: 30px;
   }

   #single-course-top .title {
     font-size: 30px;
     line-height: 38px;
   }

   footer .copyright {
     flex-direction: column;
     margin-top: 70px;
     text-align: center;
   }

   .member-area-content .point-3,
   #home-info .point-3,
   #home-certificate .point-2,
   #home-book .point-1 {
     display: none !important;
   }

   #home-certificate .swiper {
     padding-top: 50px;
   }

   #home-book .point-3 {
     top: -50px;
   }

   #home-info .img {
     margin-bottom: 30px;
     margin-top: 0;
   }

   #home-news {
     padding-top: 40px;
   }

   #graduate .btn-div {
     margin-top: 0;
   }

   #home-news .button {
     margin-top: 0;
   }

   #home-certificate .btn-div {
     margin-top: 20px;
   }

   #home-book .swiper {
     padding-top: 50px;
   }

   #single-course .section-5 .rating .bar-container {
     flex-direction: column;
   }

   #home-exam .swiper {
     padding: 0;
   }

   #home-about {
     padding-top: 60px;
   }

   #home-teacher {
     margin-top: 30px;
   }

   #home-about .row {
     flex-direction: column;
   }

   #home-info .square-2,
   #home-info .square-1 {
     display: none;
   }

   #home-exam .swiper:before {
     left: -75px;
   }

   #home-exam .swiper:after {
     right: -75px;
   }

   #password .square-2,
   #confetti .square-2,
   #password .square-1,
   #confetti .square-1 {
     display: none;
   }

   #password .forgot-pass,
   #confetti .forgot-pass {
     padding: 0 20px;
   }

   .title {
     font-size: 24px;
     line-height: 30px;
   }
 }



 .password-input,
 .password-input-1,
 .password-input-2,
 .password-input-3,
 .password-input-4 {
   position: relative;
 }

 .password-input i,
 .password-input-1 i {
   position: absolute;
   top: 23px;
   right: 20px;

 }

 .password-input-2 i,
 .password-input-3 i,
 .password-input-4 i {
   position: absolute;
   top: 43px;
   right: 20px;
 }

 #center-text {          
  display: flex;
  flex: 1;
  flex-direction:column; 
  justify-content: center;
  align-items: center;  
  height:100%;
  
}
#chat-circle {
  position: fixed;
  bottom: 210px;
  right: 50px;
  background: white;
  width: 50px;
  height: 50px;
  /* z-index: 1050; */
  border-radius: 50%;
  color: white;
  cursor: pointer;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.6), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.btn#my-btn {
     background: white;
    padding-top: 13px;
    padding-bottom: 12px;
    border-radius: 45px;
    padding-right: 40px;
    padding-left: 40px;
    color: #5865C3;
}
#chat-overlay {
    background: rgba(255,255,255,0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: none;
}


.chat-box {
  display:none;
  background: #efefef;
  position:fixed;
  right:30px;
  bottom:50px;  
  width:350px;
  max-width: 85vw;
  max-height:100vh;
  border-radius:5px;  
/*   box-shadow: 0px 5px 35px 9px #464a92; */
  box-shadow: 0px 5px 35px 9px #ccc;
}
.chat-box-toggle {
  float:right;
  margin-right:15px;
  cursor:pointer;
}
.chat-box-header {
  background: #5A5EB9;
  height:70px;
  border-top-left-radius:5px;
  border-top-right-radius:5px; 
  color:white;
  text-align:center;
  font-size:20px;
  padding-top:17px;
}
.chat-box-body {
  position: relative;  
  height:370px;  
  height:auto;
  border:1px solid #ccc;  
  overflow: hidden;
}
.chat-box-body:after {
  content: "";
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAgOCkiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGNpcmNsZSBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIgY3g9IjE3NiIgY3k9IjEyIiByPSI0Ii8+PHBhdGggZD0iTTIwLjUuNWwyMyAxMW0tMjkgODRsLTMuNzkgMTAuMzc3TTI3LjAzNyAxMzEuNGw1Ljg5OCAyLjIwMy0zLjQ2IDUuOTQ3IDYuMDcyIDIuMzkyLTMuOTMzIDUuNzU4bTEyOC43MzMgMzUuMzdsLjY5My05LjMxNiAxMC4yOTIuMDUyLjQxNi05LjIyMiA5LjI3NC4zMzJNLjUgNDguNXM2LjEzMSA2LjQxMyA2Ljg0NyAxNC44MDVjLjcxNSA4LjM5My0yLjUyIDE0LjgwNi0yLjUyIDE0LjgwNk0xMjQuNTU1IDkwcy03LjQ0NCAwLTEzLjY3IDYuMTkyYy02LjIyNyA2LjE5Mi00LjgzOCAxMi4wMTItNC44MzggMTIuMDEybTIuMjQgNjguNjI2cy00LjAyNi05LjAyNS0xOC4xNDUtOS4wMjUtMTguMTQ1IDUuNy0xOC4xNDUgNS43IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PHBhdGggZD0iTTg1LjcxNiAzNi4xNDZsNS4yNDMtOS41MjFoMTEuMDkzbDUuNDE2IDkuNTIxLTUuNDEgOS4xODVIOTAuOTUzbC01LjIzNy05LjE4NXptNjMuOTA5IDE1LjQ3OWgxMC43NXYxMC43NWgtMTAuNzV6IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIvPjxjaXJjbGUgZmlsbD0iIzAwMCIgY3g9IjcxLjUiIGN5PSI3LjUiIHI9IjEuNSIvPjxjaXJjbGUgZmlsbD0iIzAwMCIgY3g9IjE3MC41IiBjeT0iOTUuNSIgcj0iMS41Ii8+PGNpcmNsZSBmaWxsPSIjMDAwIiBjeD0iODEuNSIgY3k9IjEzNC41IiByPSIxLjUiLz48Y2lyY2xlIGZpbGw9IiMwMDAiIGN4PSIxMy41IiBjeT0iMjMuNSIgcj0iMS41Ii8+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTkzIDcxaDN2M2gtM3ptMzMgODRoM3YzaC0zem0tODUgMThoM3YzaC0zeiIvPjxwYXRoIGQ9Ik0zOS4zODQgNTEuMTIybDUuNzU4LTQuNDU0IDYuNDUzIDQuMjA1LTIuMjk0IDcuMzYzaC03Ljc5bC0yLjEyNy03LjExNHpNMTMwLjE5NSA0LjAzbDEzLjgzIDUuMDYyLTEwLjA5IDcuMDQ4LTMuNzQtMTIuMTF6bS04MyA5NWwxNC44MyA1LjQyOS0xMC44MiA3LjU1Ny00LjAxLTEyLjk4N3pNNS4yMTMgMTYxLjQ5NWwxMS4zMjggMjAuODk3TDIuMjY1IDE4MGwyLjk0OC0xOC41MDV6IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIvPjxwYXRoIGQ9Ik0xNDkuMDUgMTI3LjQ2OHMtLjUxIDIuMTgzLjk5NSAzLjM2NmMxLjU2IDEuMjI2IDguNjQyLTEuODk1IDMuOTY3LTcuNzg1LTIuMzY3LTIuNDc3LTYuNS0zLjIyNi05LjMzIDAtNS4yMDggNS45MzYgMCAxNy41MSAxMS42MSAxMy43MyAxMi40NTgtNi4yNTcgNS42MzMtMjEuNjU2LTUuMDczLTIyLjY1NC02LjYwMi0uNjA2LTE0LjA0MyAxLjc1Ni0xNi4xNTcgMTAuMjY4LTEuNzE4IDYuOTIgMS41ODQgMTcuMzg3IDEyLjQ1IDIwLjQ3NiAxMC44NjYgMy4wOSAxOS4zMzEtNC4zMSAxOS4zMzEtNC4zMSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjEuMjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvZz48L3N2Zz4=');
  opacity: 0.1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height:100%;
  position: absolute;
  z-index: -1;   
}
#chat-input {
  background: #f4f7f9;
  width:100%; 
  position:relative;
  height:47px;  
  padding-top:10px;
  padding-right:82px;
  padding-bottom:10px;
  padding-left:15px;
  border:none;
  resize:none;
  outline:none;
  border:1px solid #ccc;
  color:#888;
  border-top:none;
  border-bottom-right-radius:5px;
  border-bottom-left-radius:5px;
  overflow:hidden;  
}
.chat-input > form {
    margin-bottom: 0;
}
#chat-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ccc;
}
#chat-input::-moz-placeholder { /* Firefox 19+ */
  color: #ccc;
}
#chat-input:-ms-input-placeholder { /* IE 10+ */
  color: #ccc;
}
#chat-input:-moz-placeholder { /* Firefox 18- */
  color: #ccc;
}
.chat-submit {  
  position:absolute;
  bottom:3px;
  right:10px;
  background: transparent;
  box-shadow:none;
  border:none;
  border-radius:50%;
  color:#5A5EB9;
  width:35px;
  height:35px;  
}
.chat-logs {
  padding:15px; 
  height:370px;
  overflow-y:scroll;

}

.chat-logs::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.chat-logs::-webkit-scrollbar
{
	width: 5px;  
	background-color: #F5F5F5;
}

.chat-logs::-webkit-scrollbar-thumb
{
	background-color: #5A5EB9;
}



@media only screen and (max-width: 500px) {
   .chat-logs {
        height:40vh;
    }
}

.chat-msg.user > .msg-avatar img {
  width:45px;
  height:45px;
  border-radius:50%;
  float:left;
  width:15%;
}
.chat-msg.self > .msg-avatar img {
  width:45px;
  height:45px;
  border-radius:50%;
  float:right;
  width:15%;
}
.cm-msg-text {
  background:white;
  padding:10px 15px 10px 15px;  
  color:#666;
  max-width:75%;
  float:left;
  margin-left:10px; 
  position:relative;
  margin-bottom: 5px;
  border-radius:30px;
  /* inline-size: 230px; */
  overflow-wrap: break-word;
}
.chat-msg {
  clear:both;
  
}
.chat-msg.self > .cm-msg-text {  
  float:right;
  margin-right:10px;
  background: #5A5EB9;
  color:white;
}
.cm-msg-button>ul>li {
  list-style:none;
  float:left;
  width:50%;
}
.cm-msg-button {
    clear: both;
    margin-bottom: 70px;
}

 /*# sourceMappingURL=main.css.map */
.member-area-video {
	width: 100%;
	padding-bottom: 100px;
}

.member-area-video .video-top {
	width: 100%;
	height: 155px;
}

.member-area-video .video-top img {
	width: 100%;
	height: 100%;
}

.member-area-video .sidebar-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgb(166 80 166);
	border: 1px solid rgb(166 80 166);
	position: fixed;
	top: 50px;
	right: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.member-area-video .sidebar-icon i {
	font-size: 30px;
	font-weight: 300;
	color: white;
}

.member-area-video .sidebar-icon:hover {
	background: white;
}

.member-area-video .sidebar-icon:hover i {
	color: rgb(166 80 166);
}

.member-area-video .course-sidebar {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	background: #ffffff;
	-webkit-box-shadow: -4px 0px 7px rgba(190, 190, 190, 0.25);
	box-shadow: -4px 0px 7px rgba(190, 190, 190, 0.25);
	height: 100vh;
	max-width: 355px;
	width: 100%;
	right: -100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

.member-area-video .course-sidebar.active {
	opacity: 1;
	visibility: visible;
	right: 0;
	z-index: 100;
	overflow: auto;
}

.member-area-video .course-sidebar.active::-webkit-scrollbar {
	width: 3px;
}

.member-area-video .course-sidebar.active::-webkit-scrollbar-track {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0px;
	background: transparent;
}

.member-area-video .course-sidebar.active::-webkit-scrollbar-thumb {
	background: rgb(166 80 166);
	border-radius: 8px;
}

.member-area-video .course-sidebar.active::-webkit-scrollbar-thumb:hover {
	background: rgb(166 80 166);
}

.member-area-video .sidebar-title {
	background: rgb(166 80 166);
	color: white;
	margin-top: 50px;
	padding: 30px;
}

.member-area-courses .course-content p span {
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 25px;
	height: 25px;
	background-color: rgb(166 80 166);
}

.member-area-courses .course-content p span i {
	color: white;
	font-size: 13px;
}

.member-area-video .sidebar-title i {
	width: 25px;
	height: 25px;
	border: 1px solid white;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 300;
	cursor: pointer;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	font-size: 22px;
}

.member-area-video .sidebar-title i:hover {
	color: #d6a7f9;
	border-color: #d6a7f9;
}

.member-area-video .sidebar-title p {
	font-weight: 400;
	font-family: "Futurica", sans-serif;
	font-size: 35px;
	margin-bottom: 0;
}

.member-area-video .sidebar-section {
	padding: 10px 30px;
	border-bottom: 1px solid #686868;
}

.member-area-video .sidebar-section-panel {
	padding: 10px 30px;
	border-bottom: 1px solid #686868;
}

.member-area-video .sidebar-section-panel .sidebar-title {
	line-height: 22px;
}

.member-area-video .sidebar-section-panel.active {
	background: #f1f1f1;
}

.member-area-video .sidebar-section-panel .section-subtitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 10px;
}

.member-area-video .sidebar-section-panel .section-subtitle i {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: white;
	background: rgb(166 80 166);
}

.member-area-video .sidebar-section-panel .section-subtitle .fa-check {
	background: #d6d6d6;
}

.member-area-video .sidebar-section-panel .section-subtitle .fa-check.active {
	background: #009834;
}

.member-area-video .sidebar-section-panel .section-subtitle span {
	color: #fe5538;
}

.member-area-video .section-title {
	font-family: "Futurica", sans-serif;
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 0px;
}

.member-area-video .section-subtitle {
	font-weight: 700;
	font-family: "Mulish", sans-serif;
	margin-bottom: 0;
	font-size: 15px;
}

.member-area-video .iframe {
	max-width: 100%;
	width: 100%;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	padding: 50px 30px;
	margin: -40px 0px 0;
	position: relative;
	z-index: 1;
}

.member-area-video .iframe iframe {
	max-width: 800px;
	width: 100%;
	min-height: 480px;
	height: 100%;
}

.quiz-list {
	max-width: 837px;
	width: 100%;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.5);
	padding: 50px 0px;
	margin: -40px 40px 0;
	position: relative;
	z-index: 1;
}

.filter-logo {
	display: none;
}

.close-filter {
	display: none;
}

.search-input {
	width: 100%;
	height: 80px;
	background: #ffffff;
	display: flex;
	align-items: center;
	transition: 0.3s all ease-in-out;
	transform: translateY(-100%);
}

.search-input form {
	width: 95%;
	display: flex;
	justify-content: space-between;
}

.search-input form button {
	background: none;
	margin-right: 20px;
}

.active .search-input {
	transform: translateY(0);
}

.search-input input {
	width: 95%;
	border: none;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #181818;
}

.search-input input::placeholder {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #181818;
}

.search-input img {
	cursor: pointer;
}

.bg-search {
	position: absolute;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s all ease-in-out;
}

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

.search-input .row {
	padding: 0 250px;
	justify-content: space-between;
}

.searched {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/* display: none; */
	visibility: hidden;
}

.searched.active {
	visibility: visible;
}

.quiz-list .quiz-options {
	position: relative;
}

.quiz-list .quiz-options label {
	font-family: "Mulish", sans-serif;
	font-weight: 600;
	color: #353535;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.quiz-list .quiz-options input {
	opacity: 0;
	visibility: hidden;
	position: absolute;
}

.quiz-list .quiz-options input:checked ~ .checkmark:before {
	opacity: 1;
}

.quiz-list .quiz-options .checkmark {
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	border-radius: 50%;
	border: 1px solid #353535;
	margin-right: 3px;
	cursor: pointer;
}

.quiz-list .quiz-options .checkmark:before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	left: 2px;
	top: 2px;
	border-radius: 50%;
	background: #353535;
	opacity: 0;
}

.quiz-list .quiz-options.empty input:checked ~ .checkmark {
	border-color: #d6a7f9;
}

.quiz-list .quiz-options.empty input:checked ~ .checkmark:before {
	background: #d6a7f9;
}

.quiz-list .quiz-options.true input:checked ~ .checkmark {
	border-color: #00c850;
}

.quiz-list .quiz-options.true input:checked ~ .checkmark:before {
	background: #00c850;
}

.quiz-list .quiz-options.false input:checked ~ .checkmark {
	border-color: #ff0000;
}

.quiz-list .quiz-options.false input:checked ~ .checkmark:before {
	background: #ff0000;
}

.quiz-list .exam {
	padding: 20px 30px;
	margin: 20px 0;
	border-bottom: 1px dashed #686868;
}

.quiz-list .quiz p {
	font-family: "Futurica", sans-serif;
	font-size: 20px;
}

.quiz-list .quiz-title {
	padding: 0 30px;
	border-bottom: 1px solid #686868;
}

.quiz-list .quiz-title h5 {
	font-family: "Futurica", sans-serif;
	font-size: 20px;
	margin-bottom: 0;
}

.quiz-list .quiz-title p {
	font-family: "Mulish", sans-serif;
	font-size: 16px;
	font-weight: 700;
}

.quiz-list .quiz-title p span {
	color: rgb(166 80 166);
}

.quiz-list .explanation {
	padding: 0 30px;
}

.quiz-list .explanation iframe {
	width: 100%;
	min-height: 375px;
}

.quiz-list .explanation p {
	font-weight: 700;
}

#wish-list {
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	height: 100vh;
	background: #ffffff;
	-webkit-box-shadow: -4px 0px 7px rgba(190, 190, 190, 0.25);
	box-shadow: -4px 0px 7px rgba(190, 190, 190, 0.25);
	z-index: 1000;
	padding: 30px 20px;
	overflow: auto;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

#wish-list.active {
	right: 0;
}

#wish-list p {
	margin-bottom: 0;
}

#wish-list .wish-list-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #d3d3d3;
}

#wish-list .wish-list-img {
	width: 120px;
	height: 100px;
	margin-right: 15px;
}

#wish-list .wish-list-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

#wish-list .card-price {
	font-family: "Mulish", sans-serif;
	font-weight: 800;
	color: rgb(166 80 166);
	margin-bottom: 0;
	position: relative;
}

#wish-list .card-price span {
	font-size: 13px;
	display: inline-block;
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
}

#wish-list .card-name {
	font-family: "Futurica", sans-serif;
	width: 150px;
	line-height: 17px;
}

#wish-list .card-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 7px;
}

#wish-list .card-top span {
	color: #fe5538;
	font-family: "Mulish", sans-serif;
	font-weight: 700;
	font-size: 12px;
	position: relative;
}

#wish-list .card-top span:first-child::before {
	content: "";
	position: absolute;
	right: -40px;
	top: 8px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgb(166 80 166);
}

#wish-list .fa-chevron-right {
	width: 22px;
	height: 22px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 7px rgba(67, 67, 67, 0.25);
	border-radius: 50%;
	color: rgb(166 80 166);
	cursor: pointer;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}

#wish-list .fa-chevron-right:hover {
	background: rgb(166 80 166);
	color: #ffffff;
}

#wish-list .button {
	margin-top: 7px;
	font-size: 13px;
	padding: 4px 35px;
}

#wish-list .title {
	font-weight: 500;
	margin-top: 60px;
}

#wish-list .fa-times {
	color: #7d7c7c;
	font-weight: 400;
	font-size: 14px;
	cursor: pointer;
	position: absolute;
	top: -10px;
	right: 0;
}

#wish-list .card-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 10px;
}

#wish-list .wish-list-container {
	margin-top: 30px;
}

#wish-list::-webkit-scrollbar {
	width: 0px;
}

#wish-list::-webkit-scrollbar-track {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0px;
	background: transparent;
}

#wish-list::-webkit-scrollbar-thumb {
	background: transparent;
	border-radius: 8px;
}

#wish-list::-webkit-scrollbar-thumb:hover {
	background: transparent;
}

#contact {
	padding: 280px 0 130px;
}

#contact .contact-text {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	box-shadow: 0px 0px 10px rgba(190, 190, 190, 0.5);
	padding: 33px 35px;
	max-width: 600px;
	width: 100%;
	position: relative;
	z-index: 1;
}

#contact .contact-text a {
	color: #181818;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 18px;
}

#contact .contact-text a:hover {
	color: blue;
}

#contact .contact-text .title {
	margin-bottom: 30px;
}

#contact .contact-text i {
	color: rgb(166 80 166);
	margin-right: 5px;
}

#contact .contact-text .social-media {
	margin-top: 20px;
}

#contact .contact-text .social-media a {
	margin-bottom: 0;
	margin-right: 35px;
}

#contact .contact-text .social-media i {
	color: rgb(166 80 166);
	font-size: 20px;
}

#contact .row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#contact .title {
	font-weight: 400;
}

#contact .square-2 {
	right: 190px;
	height: 440px;
}

#contact .point-2 {
	left: 125px;
}

#contact .point-1 {
	bottom: -75px;
	left: 35px;
}

#contact .point-3 {
	right: 160px;
}

#contact form .title {
	margin-bottom: 0;
}

#contact .subtitle {
	margin-bottom: 50px;
	text-align: left;
}

#contact .form-div {
	max-width: 465px;
}

#contact input,
#contact .button,
#contact textarea {
	width: 100%;
}

#contact input,
#contact textarea {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	box-shadow: 0px 0px 10px rgba(67, 67, 67, 0.25);
	border-radius: 50px;
	border: 1px solid transparent;
	padding: 7px 20px;
}

#contact input:focus,
#contact textarea:focus {
	outline: none;
	border-color: rgb(166 80 166);
}

#contact input::-webkit-input-placeholder,
#contact textarea::-webkit-input-placeholder {
	font-weight: 400;
	font-family: "Mulish", sans-serif;
	font-size: 15px;
	color: #353535;
}

#contact input:-ms-input-placeholder,
#contact textarea:-ms-input-placeholder {
	font-weight: 400;
	font-family: "Mulish", sans-serif;
	font-size: 15px;
	color: #353535;
}

#contact input::-ms-input-placeholder,
#contact textarea::-ms-input-placeholder {
	font-weight: 400;
	font-family: "Mulish", sans-serif;
	font-size: 15px;
	color: #353535;
}

#contact input::placeholder,
#contact textarea::placeholder {
	font-weight: 400;
	font-family: "Mulish", sans-serif;
	font-size: 15px;
	color: #353535;
}

#contact input {
	margin-bottom: 12px;
}

#contact textarea {
	min-height: 100px;
	border-radius: 20px;
}

#contact .button {
	margin-top: 18px;
	font-weight: 600;
}

#home .owl-dots {
	display: block;
	position: absolute;
	bottom: 30px;
	width: 100%;
	z-index: 12;
	display: flex;
	justify-content: center;
	background: transparent;
}

#home .owl-dots button:focus {
	outline: none;
}

#home .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #42c0c4;
	display: block;
	margin-right: 5px;
	transition: 0.5s all ease-in-out;
}

#home .owl-dots .owl-dot.active span {
	background: rgb(166 80 166);
}

#reviews .review-text {
	font-size: 14px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 7 !important;
	-webkit-box-orient: vertical;
}

.member-area-courses .course-card,
.member-area-courses .exam-card {
	min-height: 430px;
}

#home .owl-stage {
	display: flex;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	display: none;
}

.book-card {
	max-width: 100%;
	width: 100%;
}

.swiper-slide-next .book-card img {
	max-width: 280px;
	height: 400px;
	transform: scale(1);
	object-fit: cover;
	margin-top: -20px;
}

.book-card img {
	max-width: 240px;
	height: 340px;
	transform: scale(1);
	object-fit: cover;
}

.book-card .card-text {
	width: 65%;
}

#home .owl-dots button {
	background: transparent;
}

#mobile-menu {
	position: fixed;
	left: 0;
	right: -100%;
	bottom: 0;
	top: 136px;
	background: white;
	z-index: 1000;
	padding: 30px 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s linear;
}

#mobile-menu.show-menu {
	opacity: 1;
	visibility: visible;
	right: 0%;
	overflow: auto;
}

#mobile-menu form {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
	box-shadow: 0px 0px 7px rgba(190, 190, 190, 0.25);
	border-radius: 10px;
	min-height: 50px;
	position: relative;
	margin: 0 20px;
}

#mobile-menu button {
	background: transparent;
	outline: none;
	position: absolute;
	right: 20px;
	top: 13px;
}

#mobile-menu button i {
	color: rgb(166 80 166);
	font-weight: 400;
}

#mobile-menu input {
	border: none;
	min-height: 50px;
	padding-left: 10px;
	width: 100%;
}

#mobile-menu input::-webkit-input-placeholder {
	color: #989898;
}

#mobile-menu input:-ms-input-placeholder {
	color: #989898;
}

#mobile-menu input::-ms-input-placeholder {
	color: #989898;
}

#mobile-menu input::placeholder {
	color: #989898;
}

#mobile-menu ul {
	padding-top: 50px;
	list-style: none;
}

#mobile-menu ul li {
	padding: 10px 20px;
}

#mobile-menu ul li:nth-child(odd) {
	background: #f4f4f4;
}

#mobile-menu ul a {
	color: #181818;
	font-size: 20px;
	line-height: 25px;
	font-weight: 700;
}

#mobile-menu .social-media {
	padding-top: 60px;
	padding-left: 20px;
	padding-right: 20px;
}

#mobile-menu .social-media a {
	margin-right: 25px;
}

#mobile-menu .social-media i {
	color: #34485a;
	font-size: 22px;
}

header .menu-btn-div {
	position: relative;
	cursor: pointer;
	z-index: 10000;
	overflow: hidden;
	display: none;
	margin-right: 15px;
}

header .menu-btn-div .menu-btn {
	background: rgb(166 80 166);
	width: 25px;
	height: 2px;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	-webkit-transform: translate(0px, 24px);
	transform: translate(0px, 24px);
}


header .menu-btn-div:before {
	-webkit-transform: translateY(17px);
	transform: translateY(17px);
	left: 0;
}

header .menu-btn-div:after {
	-webkit-transform: translateY(29px);
	transform: translateY(29px);
}

header .open .menu-btn {
	-webkit-transform: translate(100px, 25px);
	transform: translate(100px, 25px);
	opacity: 0;
}

header .open::before {
	-webkit-transform: translateY(22px) rotate(45deg);
	transform: translateY(22px) rotate(45deg);
}

header .open::after {
	-webkit-transform: translateY(20px) rotate(135deg);
	transform: translateY(20px) rotate(135deg);
}

#login .form-container .mobile-qeydiyyat {
	display: none;
}

.member-area-arrow {
	position: absolute;
    right: -105px;
    top: 36px;
    width: 118px;
    height: 39px;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgb(166 80 166);
    border-radius: 28px;
    color: white;
    font-size: 18px;
}

.member-area-arrow.open-menu {
	right: 0;
	transform: rotate(180deg);
	background: white;
	color: rgb(166 80 166);
}

.member-area-arrow.open-menu div {
	transform: rotate(180deg);
	background-color: rgb(166 80 166) !important;
	color: white !important;
}

.member-area-arrow.open-menu i {
	color: white !important;
}

.member-area-arrow.open-menu strong {
	right: 0;
	transform: rotate(180deg);
	background: white;
	color: rgb(166 80 166);
}

#exam-header {
	padding: 0;
}

#exam-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	#home .title {
		font-size: 41px;
	}

	#home-about {
		padding-top: 350px;
	}

	#contact .square-2 {
		right: 95px;
	}
}

@media only screen and (max-width: 1440px) {
	.member-area-profile .point-6 {
		right: 80px;
	}

	.member-area-profile form {
		max-width: 100%;
	}

	#member-area .member-area-content {
		max-width: 100%;
	}

	#home .title {
		max-width: 487px;
	}

	#member-area nav {
		max-width: 275px;
	}
}

@media only screen and (max-width: 1200px) {
	#single-course .col-lg-4 .card-header,
	#single-course .col-lg-4 .card-body {
		display: none;
	}

	.card.course-card .card-top span:first-child::before {
		display: none;
	}

	#single-course .col-lg-4 .card {
		position: fixed;
		bottom: 0;
		top: auto;
		z-index: 10000;
		left: 0;
		right: 0;
	}

	#single-course .col-lg-4 .card-foot {
		justify-content: center;
	}

	#single-course .col-lg-4 .button:not(:last-child) {
		margin-right: 30px;
	}

	nav {
		max-width: 670px;
	}

	.header-icons a:not(:last-child) {
		margin-right: 4px;
	}
}

@media only screen and (max-width: 992px) {
	.member-area-video {
		width: calc(100% - 70px);
	}

	.member-area-arrow {
		display: flex;
	}

	#member-area nav .logo img {
		width: 50px;
	}

	#member-area nav {
		padding: 0;
		max-width: 20px;
	}

	#member-area nav a,
	#member-area nav span,
	#member-area nav svg,
	#member-area nav p,
	#member-area nav h2,
	#member-area nav img {
		display: none !important;
	}

	#member-area {
		justify-content: right;
	}

	#member-area nav.show-mobile-menu {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		z-index: 10000;
		max-width: 100%;
		padding: 30px 20px 0;
	}

	#member-area nav.show-mobile-menu a,
	#member-area nav.show-mobile-menu span,
	#member-area nav.show-mobile-menu svg,
	#member-area nav.show-mobile-menu p,
	#member-area nav.show-mobile-menu img,
	#member-area nav.show-mobile-menu h2 {
		display: inline-block !important;
	}

	#exam-header .container {
		flex-direction: column;
	}

	#login .form-container .mobile-qeydiyyat {
		display: block;
	}

	header .menu-btn-div {
		display: block;
	}

	.header-icons {
		display: flex;
		align-items: center;
	}

	.member-area-video .iframe {
		margin-left: 0;
	}

	#login form {
		max-width: 100%;
		margin-left: 0;
		padding: 0 40px;
	}

	#login .container {
		padding-top: 180px;
	}

	#login > .container .square-2 {
		right: 61px;
		top: 150px;
	}

	#login .sign-up-container,
	#login .sign-in-container {
		width: 100%;
	}

	#login .overlay-container {
		display: none;
	}

	.search-input,
	#single-course-top .point-2,
	#single-course .col-lg-4 .card-header,
	#single-course .col-lg-4 .card-body {
		display: none;
	}

	.header-icons a:hover {
		background: transparent;
	}

	.header-icons a:hover img {
		filter: none;
	}

	#single-course-top #breadcrumbs {
		margin-bottom: 50px;
		margin-top: 40px;
	}

	footer .footer-content {
		flex-direction: column;
	}

	footer .footer-menu:nth-child(2) {
		flex-direction: row;
		margin: 15px;
		transform: translate(0);
	}

	footer .social-media {
		position: static;
		margin-top: 20px;
		text-align: center;
	}

	footer .logo {
		/* text-align: left; */
		margin-bottom: 60px;
	}

	footer .footer-link {
		margin-bottom: 20px;
		width: 86%;
		text-align: center;
	}

	header .top-right,
	header .header-bottom nav,
	header .search-icon,
	footer .button {
		display: none;
	}

	.header-icons a {
		background: transparent;
		box-shadow: none;
	}

	header .header-bottom {
		background: #ffffff;
		box-shadow: 0px 1px 6px rgba(153, 153, 153, 0.25);
		padding: 15px 0;
	}

	.member-area-profile form .form-div {
		width: 100%;
	}

	#member-area .member-area-content .header-left a{
		display: none;
	}

	.member-area-content .member-area-header {
		justify-content: end;
	}

	#single-course .section-5 #rating {
		flex-direction: column;
	}

	#single-course .col-lg-8 {
		padding-left: 15px;
	}

	#single-course .section-5 .rating .bar-container {
		align-items: center;
	}

	#single-course .section-5 #rating .rating-info {
		margin-bottom: 30px;
	}

	.related .col-lg-3 {
		margin-bottom: 30px;
	}

	#single-course-top .single-course-text,
	#single-course-top .img {
		width: 100%;
	}

	#single-course-top img {
		max-width: 100%;
	}

	.book-card {
		max-width: initial;
		min-width: initial;
	}

	#book-list .point-4,
	#book-list .point-3 {
		display: none;
	}

	#book-list .book-card {
		margin-bottom: 30px;
	}

	#home-news .col-lg-3 {
		margin-bottom: 30px;
	}

	#home-book .swiper-slide-next,
	#home-book .swiper-slide-active {
		max-width: initial;
	}

	.book-card .card-text {
		opacity: 1;
		visibility: visible;
		padding: 30px 50px;
	}

	.book-card .card-text {
		width: 100%;
		clip-path: inset(0 0% 0 0);
	}

	.book-card {
		flex-direction: column;
		align-items: center;
	}

	#home-seo .col-lg-6.img {
		text-align: center;
		margin-top: 40px;
	}

	#home-teacher .col-lg-5 {
		text-align: center;
		margin-top: 50px;
	}

	#home-courses .point-2 {
		top: -100px;
	}

	#home-courses .col-lg-3 {
		margin-bottom: 30px;
	}

	#home-about .row {
		flex-direction: column-reverse;
	}

	#home {
		height: auto;
	}

	#home .home-text {
		margin-bottom: 30px;
	}

	#password .square-2,
	#confetti .square-2 {
		top: -85px;
	}

	#home .container {
		justify-content: center !important;
		flex-wrap: wrap;
	}

	#certificate .point-3,
	#certificate .point-4,
	#home-teacher .point-3,
	#home-teacher .point-1 {
		display: none;
	}

	#certificate .certificate-card {
		margin: auto;
	}

	#contact .row > .col-lg-6:first-child {
		margin-bottom: 200px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
	#info .img {
		margin-top: 0;
	}

	.img {
		position: relative;
		text-align: center;
		margin-top: 100px;
	}

	#home-about .img {
		margin-top: 225px;
		display: flex;
		justify-content: center;
		margin-bottom: 40px;
	}

	#home-about .point-3 {
		left: 0;
		top: auto;
		bottom: -65px;
	}

	section {
		padding: 40px 0;
	}

	#home-about .container {
		justify-content: center !important;
	}

	#benefit .col-lg-3:first-child {
		margin-bottom: 20px;
	}

	#single-teacher .col-md-6 {
		margin-bottom: 20px;
	}

	#single-teacher .col-md-6:last-child {
		margin-bottom: 80px;
	}

	#single-teacher .col-md-6:nth-last-child(2) {
		margin-bottom: 80px;
	}

	#course .catalog .col-lg-3 {
		width: 100% !important;
	}

	#course .catalog .col-lg-3 .filter {
		max-width: 100% !important;
	}

	#course .catalog .col-lg-3 {
		position: sticky;
		top: 20px;
		z-index: 9999;
		transition: 0.5s all ease-in-out;
	}

	#course .filter {
		overflow-y: scroll;
		overflow-x: hidden;
		height: 80vh;
	}

	.col-md-6.catalog-cards {
		justify-content: center;
	}

	#course .card.course-card {
		margin-right: 0;
	}
}

@media only screen and (max-width: 768px) {
	.member-area-invoice .invoice-header {
		padding: 0;
	}

	.member-area-invoice .invoice {
		padding-left: 0;
		padding-right: 0;
	}

	.member-area-profile form {
		margin-top: 90px;
		padding: 50px 30px;
	}

	.profileLogo {
		display: block !important;
	}

	#home-certificate .swiper {
		padding-bottom: 10px;
	}

	#benefit .col-lg-3 {
		margin-bottom: 20px;
	}

	.square-2 {
		right: 82px;
	}

	#home-about .square-1 {
		left: 80px;
	}

	#wish-list {
		right: -140%;
	}

	#home .title {
		font-size: 32px;
		line-height: 33px;
	}

	.img {
		position: relative;
		text-align: center;
		margin-top: 20px;
	}

	#home .point-7 {
		background: #fe5538;
		right: 0px;
		top: -113px;
	}

	#home-about {
		padding-top: 0px;
		position: relative;
	}

	#home-about .col-lg-6:first-child {
		order: 1;
	}

	section {
		padding: 40px 0;
	}

	#benefit .card-header img {
		width: 63px;
		height: 50px;
	}

	#benefit .card {
		min-height: 245px;
	}

	#home-about .img {
		margin-top: 40px;
	}

	#home-about .point-3 {
		z-index: 0;
	}

	#home-about .point-2 {
		left: 10px;
	}

	#home .point-1 {
		display: none;
	}

	#home-about .title,
	#home-about p,
	#home-about .button {
		margin-left: 0;
	}

	#home .square-1 {
		display: none;
	}

	#home .square-2 {
		display: none;
	}

	#home-about .square-1 {
		display: none;
	}

	#home-about .square-2 {
		display: none;
	}

	#home .point-2 {
		display: none;
	}

	#home-about .point-2 {
		display: none;
	}

	.play-btn {
		width: 60px;
		height: 60px;
	}

	#contact .row > .col-lg-6:first-child {
		margin-bottom: 50px;
	}

	#home-teacher .col-lg-5,
	.teacher .col-lg-5 {
		padding-left: 15px !important;
		margin-left: 0 !important;
	}

	.teacher .point-1 {
		display: none;
	}

	.teacher .button {
		margin-top: 10px;
		margin-bottom: 40px;
	}

	.teacher .point-3 {
		top: 0;
		left: 5px;
	}

	.teacher .point-2 {
		right: 15px;
		top: 15px;
	}

	.teacher .col-lg-6 {
		order: 1;
	}

	#home-teacher .col-lg-6 span,
	#home-teacher .col-lg-6 p,
	#home-teacher .col-lg-6 a,
	.teacher .col-lg-6 span,
	.teacher .col-lg-6 p,
	.teacher .col-lg-6 a {
		margin-left: 20px;
	}

	#single-teacher .teacher-box {
		margin-top: 30px;
		padding: 20px;
		margin-bottom: 50px;
	}

	#single-teacher .teacher-box .point-2 {
		display: none;
	}

	#single-teacher .teacher-box .point-4 {
		bottom: -50px;
	}

	#single-teacher .teacher-box .teacher-info span {
		width: 60px;
		height: 60px;
		font-size: 11px;
	}

	#single-teacher .teacher-box .teacher-info {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}

	#single-teacher .teacher-box .teacher-name {
		font-size: 30px;
	}

	#single-teacher .teacher-box .col-lg-12 {
		margin-top: 0px;
	}

	.teacher-box span {
		font-size: 13px;
	}

	#single-teacher .teacher-box .col-lg-12 p:not(:last-child) {
		margin-bottom: 3px;
	}

	#single-teacher .col-lg-3 {
		margin-bottom: 20px;
	}

	#single-teacher .col-lg-3:last-child {
		margin-bottom: 50px;
	}

	.card.course-card .course-name {
		font-size: 16px;
		line-height: 16px;
	}

	.card.course-card .card-top span {
		font-size: 13px;
	}

	.card.course-card .card-foot p {
		font-size: 14px;
	}

	.card.course-card .card-foot .button {
		font-size: 13px;
	}

	#contact .square-2 {
		display: none;
	}

	#contact {
		padding: 235px 0 50px;
	}

	#contact .point-1 {
		bottom: -100px;
		left: -53px;
	}

	#contact .point-2 {
		left: 125px;
		top: -62px;
	}

	#contact .point-3 {
		display: none;
	}

	#contact .title {
		margin-top: 30px;
		font-size: 24px;
	}

	#contact .point-1 {
		bottom: -115px;
		left: 78%;
	}

	#contact .subtitle {
		font-size: 14px;
	}

	#course .catalog .col-lg-3 {
		width: 100% !important;
	}

	#course .catalog .col-lg-3 .filter {
		max-width: 100% !important;
	}

	#course .catalog .col-lg-3 {
		position: fixed;
		top: 0;
		z-index: 9999;
		left: 0;
		right: 0;
		transition: 0.5s all ease-in-out;
		transform: translate(-100%);
	}

	#course .catalog .col-lg-3.active {
		transform: translate(0);
	}

	#course .filter {
		overflow-y: scroll;
		overflow-x: hidden;
		height: 100vh;
	}

	.close-filter {
		display: flex;
		position: absolute;
		top: 20px;
		right: 20px;
		z-index: 999;
		width: 50px;
		height: 50px;
	}

	.close-filter img {
		width: 30px;
		height: 30px;
	}

	.col-md-6.catalog-cards {
		justify-content: center;
	}

	#course .card.course-card {
		margin-right: 0;
	}

	.filter-logo {
		display: block;
		background: #ffffff;
		max-width: 68px;
		height: auto;
		padding: 20px;
		position: fixed;
		top: 20vh;
		z-index: 9999;
		border-radius: 0 20px 20px 0;
	}
}

@media only screen and (min-width: 1440px) {
	body .container,
	body .container-lg,
	body .container-md,
	body .container-sm,
	body .container-xl {
		max-width: 1340px;
	}

	footer .container {
		max-width: 1000px;
	}
}

button:focus {
	outline: none !important;
}

@media only screen and (max-width: 575px) {
	.member-area-invoice .invoice-container {
		overflow: auto;
	}

	.member-area-invoice .invoice-header,
	.member-area-invoice .invoice {
		width: 500px;
	}

	.member-area-invoice .invoice-container::-webkit-scrollbar {
		width: 0px;
	}

	.member-area-video {
		width: 100%;
	}

	.navbar-video {
		z-index: 12;
	}

	.member-area-video .sidebar-icon {
		right: 10px;
		z-index: 12;
	}

	.member-area-video .iframe {
		padding: 40px 0;
	}

	#exam-header h1 {
		font-size: 30px;
	}

	.member-area-video .iframe .mt-5 {
		margin: 0 !important;
	}

	.member-area-video .iframe iframe {
		min-height: 370px;
	}

	.member-area-invoice .invoice-container::-webkit-scrollbar-track {
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
		background: transparent;
	}

	.member-area-invoice .invoice-container::-webkit-scrollbar-thumb {
		background: transparent;
		border-radius: 8px;
	}

	figure.image img {
		width: 100%;
	}

	.member-area-invoice .invoice-container::-webkit-scrollbar-thumb:hover {
		background: transparent;
	}

	.member-area-content {
		padding: 0 15px;
	}

	#member-area .profile {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	#course .card.course-card {
		margin-left: 0;
	}

	#graduate {
		padding-top: 0;
	}

	.wp-btn,
	.top-btn {
		right: 16px;
	}

	.point-3,
	.point-7 {
		top: -55px;
	}

	.member-area-video .sidebar-title p {
		font-size: 30px;
	}

	#wish-list .wish-list-card {
		flex-direction: column;
	}

	#wish-list .card-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	#login > .container .square-2,
	#login > .container .square-1 {
		display: none;
	}

	#login > .container > .point-4 {
		top: 140px;
	}

	#login .form-title {
		font-size: 30px;
	}

	#login .form-container div {
		flex-direction: column;
	}

	#login {
		padding-bottom: 80px;
	}

	.related {
		padding-top: 60px;
	}

	#single-course .section-6 .leader-board-top {
		display: none;
	}

	#single-course .section-6 .leader-board {
		flex-direction: column;
	}

	#single-course .section-6 .leader-board h5 {
		margin-top: 6px;
	}

	#single-course .section-6 .leader-board > div {
		justify-content: center;
	}

	#wish-list.active {
		width: 100%;
	}

	#single-course-top .point-2,
	#single-course-top .point-3 {
		display: none;
	}

	#single-course .section-3 .section-title,
	#single-course .section-4 .card-title {
		font-size: 30px;
	}

	#single-course .section-4 .teacher-info {
		flex-direction: column;
	}

	#single-course .section-5 {
		margin-top: 30px;
	}

	#single-course-top .title {
		font-size: 30px;
		line-height: 38px;
	}

	footer .copyright {
		flex-direction: column;
		margin-top: 70px;
		text-align: center;
	}

	.member-area-content .point-3,
	#home-info .point-3,
	#home-certificate .point-2,
	#home-book .point-1 {
		display: none !important;
	}

	#home-certificate .swiper {
		padding-top: 50px;
	}

	#home-book .point-3 {
		top: -50px;
	}

	#home-info .img {
		margin-bottom: 30px;
		margin-top: 0;
	}

	#home-news {
		padding-top: 40px;
	}

	#graduate .btn-div {
		margin-top: 0;
	}

	#home-news .button {
		margin-top: 0;
	}

	#home-certificate .btn-div {
		margin-top: 20px;
	}

	#home-book .swiper {
		padding-top: 50px;
	}

	#single-course .section-5 .rating .bar-container {
		flex-direction: column;
	}

	#home-exam .swiper {
		padding: 0;
	}

	#home-about {
		padding-top: 60px;
	}

	#home-teacher {
		margin-top: 30px;
	}

	#home-about .row {
		flex-direction: column;
	}

	#home-info .square-2,
	#home-info .square-1 {
		display: none;
	}

	#home-exam .swiper:before {
		left: -75px;
	}

	#home-exam .swiper:after {
		right: -75px;
	}

	#password .square-2,
	#confetti .square-2,
	#password .square-1,
	#confetti .square-1 {
		display: none;
	}

	#password .forgot-pass,
	#confetti .forgot-pass {
		padding: 0 20px;
	}

	.title {
		font-size: 24px;
		line-height: 30px;
	}
}

.password-input,
.password-input-1,
.password-input-2,
.password-input-3,
.password-input-4 {
	position: relative;
}

.password-input i,
.password-input-1 i {
	position: absolute;
	top: 23px;
	right: 20px;
}

.password-input-2 i,
.password-input-3 i,
.password-input-4 i {
	position: absolute;
	top: 43px;
	right: 20px;
}

/*# sourceMappingURL=main.css.map */
