.header-cart {
	position: relative;
	height: 30px;
}
.header-cart span {
	position: absolute;
	aspect-ratio: 1 / 1;
	min-width: 20px;
	height: 20px;
	background-color: white;
	border-radius: 50%;
	color: black;
	display: none;
	align-items: center;
	justify-content: center;
	top: -10px;
	right: -10px;
}
.header-cart span.active {
	display: flex;
}
.header-cart span:empty {
	display: none;
}
.cart-icon {
	width: 16px;
}
.header-cart .cart-icon {
	width: 24px;
}
.nav-link .heart-icon {
	width: 20px;
}
.button.in-nav.account-btn {
	background-color: #12c2e9;
	padding: 12px 19px;
	color: #171717;
	border-radius: 8px;
	font-weight: 500;
	font-size: 16px;
	margin-left: 0;
}
.button.in-nav.signed-in {
	background-color: #ffffff;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #000000;
	font-weight: 700;
	margin-left: 0;
	border: none;
	aspect-ratio: 1/1;
	padding: 0;
	text-transform: uppercase;
	cursor: pointer;
	z-index: 0;
}
.profile-dropdown {
	display: none;
	position: absolute;
	top: 0;
	padding-top: 72px;
	right: 0;
	z-index: 0;
}
.nav-link {
	z-index: 1;
}
.navbar-wrapper {
	position: relative;
}
.profile-dropdown ul {
	list-style: none;
	margin: 0;
	border-radius: 12px;
	min-width: 168px;
	padding: 16px 24px;
	background-color: #000000;
	border: 1px solid #ffffff33;
}
.profile-dropdown li {
	padding: 16px 0;
	text-align: left;
	border-bottom: 1px solid #ffffff0d;
}
.profile-dropdown li:last-of-type {
	border-bottom: none;
}
.profile-dropdown a,
.profile-dropdown button {
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-transform: capitalize;
}
.profile-dropdown.active {
	display: block;
}
.signup-terms {
	font-size: 12px;
	line-height: 1.5;
}
.signup-terms a {
	color: #12c2e9;
}
.course-card-actions-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	width: 100%;
}
.course-card-actions-wrapper .button {
	width: 100%;
	padding-inline: 8px;
	border-radius: 8px;
}
.course-card-actions-wrapper .add-to-cart {
	background-color: #12c2e9;
}
.btn-primary {
	background-color: #12c2e9;
}
.btn-primary:hover {
	background-color: #12c2e9e5;
}
.course-card-actions-wrapper .add-to-cart:hover {
	background-color: #12c2e9e5;
}
.modal .checkmark {
	width: 48px;
	height: 49px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	background-color: #30a46c;
	border-radius: 10px;
	margin-inline: auto;
}

.modal .checkmark.failed {
	background-color: #bf2727;
}
.modal-message-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	text-align: center;
}
.modal-message-text {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 12px;
	text-align: center;
}
.modal-cart-link {
	text-align: center;
	padding: 12px;
	background-color: #12c2e9;
	text-decoration: none;
	border: none;
	color: #171717;
	border-radius: 4px;
}
.modal-cart-link:hover {
	background-color: #12c2e9e5;
	color: #171717;
	text-decoration: none;
}
.modal.status-page .modal-cart-link {
	min-width: 50%;
	margin: auto;
}

.modal .course-data .absolute-image {
	height: 84px;
	object-fit: cover;
}
.modal-cart-link:hover {
	background-color: #12c2e9e5;
	color: #171717;
}
.modal {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.modal.status-page {
	background-color: transparent;
	position: static;
	width: auto;
	height: auto;
	display: flex;
}
.modal.status-page .modal-content {
	background-color: transparent;
	max-width: unset;
	width: max(400px, 50%);
}
.modal-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 24px;
	width: 100%;
}
.modal-actions:has(:only-child) {
	grid-template-columns: 1fr;
}
.modal-actions:has(:only-child) button {
	width: 50%;
	margin: auto;
}
.modal-actions .button.secondary {
	border: 1px solid #ffffff80;
	border-radius: 4px;
}
.modal-message {
	width: 100%;
}
.modal.active {
	display: flex;
}

.modal .modal-content {
	width: max(400px, 30vw);
	max-width: 600px;
	margin-inline: auto;
	padding: 32px 16px;
	background-color: #171717;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1px solid #ffffff4d;
	box-shadow: 0px 0px 70px 0px #ffffff1a;
}
.modal .course-data .course-card,
.modal .course-data .course-page-inner-wrapper {
	padding: 16px 20px;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 16px;
	background-color: #ffffff0d;
	border-radius: 4px;
	margin-top: 24px;
	border: none;
}
.modal .course-card-info {
	padding: 0;
}
.modal .course-card-info h3,
.modal .course-data .course-h1 {
	font-size: 16px;
	margin-bottom: 16px;
}
.modal .course-details-wrap {
	color: #ffffff80;
	font-size: 14px;
	margin-bottom: 0;
}
.modal .course-data .course-hero-content {
	padding: 0;
	align-self: unset !important;
	grid-area: unset;
}
.modal .course-data .course-image-wrap {
	grid-area: unset;
}
.cart-purchase-limit-text {
    text-align: center;    
}
.cart-purchase-limit-text:first-child {
    margin-top: 40px;
}

.cart-item {
	display: grid;
	grid-template-columns: 150px 1.9fr 1.6fr;
	gap: 16px;
	background-color: #ffffff05;
	padding: 16px;
	border-radius: 4px;
	margin-bottom: 12px;
	align-items: start;
}
.cart-items-page-wrap {
	gap: 24px;
}
.cart-items-page-wrap:has(.cart-empty) {
	grid-template-columns: 1fr;
}
.cart-item-image {
	width: 100%;
}
.cart-item .cart-item-image img {
	border-radius: 4px;
	height: 90px;
	width: 100%;
	object-fit: cover;
}
.cart-item-details a {
	text-decoration: none;
}
.cart-item-details {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.cart-item-details h4 {
	margin-top: 0;
	margin-bottom: 8px;
	font-size: 16px;
}
.cart-item-details p {
	font-size: 14px;
	color: #ffffff80;
	margin: 0;
}
.cart-item-details .price {
	margin-top: auto;
}
.cart-item-details .price span {
	color: #12c2e9;
	font-size: 16px;
	font-weight: 700;
}
.cart-item-details {
	text-align: left;
}
.modal .course-data .course-page-inner-wrapper {
	display: flex;
	flex-direction: row-reverse;
	gap: 16px;
}
.modal .course-page-inner-wrapper .course-image-wrap {
	width: 30%;
	position: static;
}
.add-to-cart img,
.modal-cart-link img {
	filter: invert(1);
}
.course-card-actions-wrapper .add-to-cart span {
	color: #171717;
}
.cart-item-actions {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	height: 45px;
}
.purchase-history.cart-item-actions {
	flex-direction: row;
	gap: 8px;
	height: unset;
	align-items: end;
	justify-content: end;
}
.purchase-history.cart-item-actions p {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 19.5px;
	text-align: right;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
}
.purchase-history.cart-item-actions time {
	font-size: 16px;
	font-weight: 400;
	line-height: 19.5px;
	text-align: right;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #ffffff80;
}
.cart-item-actions button,
.cart-item-actions.my-courses a {
	height: fit-content;
	padding: 8px 22px;
	border-radius: 4px;
	gap: 10px;
	height: 100%;
	text-align: center;
}
.cart-item-actions.my-courses {
	justify-content: end;
	margin-top: 32px;
}
.cart-item-actions.my-courses a {
	text-decoration: none;
	border: 1px solid #ffffff80;
	background-color: transparent;
	font-size: 16px;
	min-width: 144px;
	padding-top: 4px;
	padding-bottom: 4px;
	height: auto;
}
.cart-item-actions button.add-to-fav.active svg {
	fill: white;
}
.cart-item-actions button.remove-button {
	padding: 8px 12px;
}
.cart-item-actions button.remove-from-favs {
	padding: 8px 16px;
}
.wishlist-cart .cart-icon {
	width: 24px;
}
.heart-icon {
	width: 16px;
}
.checkout-btn.button {
	background-color: #12c2e9;
	color: #171717;
	gap: 10px;
	border-radius: 4px;
}
.checkout-btn.button:hover {
	background-color: #12c2e9e5;
	color: #171717;
}
.checkout-btn.button svg {
	width: 24px;
}
.cart-total-wrapper .price {
	text-align: left;
	margin-bottom: 32px;
	font-size: 24px;
}
.cart-total-wrapper .price div {
	font-size: 20px;
	font-weight: 700;
	color: #12c2e9;
}

.remove-all-btn {
	margin-top: 24px;
	margin-inline: auto;
	border-radius: 4px;
}

.course-page-inner-wrapper .course-image-wrap {
	padding-top: 0;
	position: sticky;
	top: 100px;
	align-self: start;
}
.courses-cl.related.course-instructors-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.courses-cl.related.course-instructors-list .courses-cli:only-child {
	grid-column: 1 / -1;
	width: calc(100% / 3);
}
.courses-cl.related.course-instructors-list.only {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.team-card.leadership-team-card img {
	height: 360px;
	object-fit: cover;
	border-radius: 8px;
}
.courses-cl.related.course-instructors-list.only .courses-cli:only-child {
	width: 50%;
	margin-inline: auto;
}
.course-page-inner-wrapper .course-image-wrap .absolute-image {
	max-height: 600px;
	position: static;
	border: 4px solid #ffffff1a;
	border-radius: 4px;
}
.courses-cl.related.course-instructors-list.only .course-image-wrap {
	height: 360px;
}
.course-inner-add-to-cart.button.secondary,
.inner-add-cart-btn {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	border: none;
	text-align: center;
	padding: 12px;
	margin-top: 24px;
	background-color: #12c2e9;
	color: #171717;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.instructors-section {
	background: #ffffff05;
}
.instructors-section a {
	width: 100%;
	border-radius: 8px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.course-card {
	border-radius: 8px;
}
.instructors-section a img {
	transform: rotate(180deg);
}
.recomended-courses-section {
	background: #ffffff0d;
}
.recomended-courses-section .course-card {
	border-radius: 8px;
}
.course-inner-add-to-cart.button.secondary:hover,
.inner-add-cart-btn:hover {
	background-color: #12c2e9e5;
	color: #171717;
}
.inner-add-cart-btn {
	margin-top: 48px;
	width: 50%;
}
.text-field {
	padding: 12px;
}
.input-message {
	color: #ffffff80;
	font-size: 10px;
	margin-top: -10px;
	margin-bottom: 20px;
}
.input-error {
	border: 1px solid #bf2727b2;
	color: #bf272780;
}
.error-message {
	color: #bf2727;
	font-size: 10px;
	display: block;
	margin-top: -10px;
	margin-bottom: 10px;
}
ul.input-message {
	padding-left: 20px;
}

.instructor-img-wrapper {
	height: 360px;
}
.course-image-wrap {
	position: relative;
}
.course-image-wrap .absolute-image {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.course-image-wrap .add-to-fav {
	top: 8px;
	right: 8px;
	width: 40px;
	height: 40px;
	position: absolute;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1717174d;
	z-index: 10;
	border: 1px solid #ffffff;
}
.course-image-wrap .add-to-fav.active svg {
	fill: #fff;
}
.course-inner-page-syllabus {
	margin-top: 48px;
	padding: 48px;
	background: #ffffff05;
}
.inner-page-inner-wrapper {
	max-width: 758px;
	margin: 0 auto;
	padding: 0;
}
.about-course-card {
	border: none;
}
.about-course-card:nth-child(2) {
	position: relative;
	border: 1px solid transparent;
	border: 1px solid;

	border-image-source: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 30%,
		rgba(255, 255, 255, 0.2) 60%,
		rgba(255, 255, 255, 0) 90%
	);
	border-image-slice: 1;
	border-top: none;
	border-bottom: none;
}
.course-details-block {
	background-color: transparent;
}
.course-details-block:nth-of-type(2) .about-course-card {
	position: relative;
	border: 1px solid transparent;
	border: 1px solid;

	border-image-source: linear-gradient(
		270deg,
		rgba(255, 255, 255, 0) 30%,
		rgba(255, 255, 255, 0.2) 60%,
		rgba(255, 255, 255, 0) 90%
	);
	border-image-slice: 1;
	border-bottom: none;
}

.course-details-block:nth-of-type(2) .about-course-card:nth-child(2)::before {
	content: "";
	position: absolute;
	inset: 0;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	border-image-source: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 30%,
		rgba(255, 255, 255, 0.2) 60%,
		rgba(255, 255, 255, 0) 90%
	);
	border-image-slice: 1;
	pointer-events: none;
}

.inner-title {
	font-weight: 700;
	font-size: 28px;
	line-height: 100%;
	letter-spacing: 0%;
	margin-bottom: 40px;
	text-align: center;
	margin-top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.inner-title span {
	flex-shrink: 0;
}
.inner-title:before,
.inner-title:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #ffffff1a;
}
.syllabus-dropdown {
	background: #ffffff0d;
	border-radius: 8px;
	border: 1px solid #ffffff0d;
	margin-bottom: 12px;
	position: relative;
}
.syllabus-dropdown:before {
	position: absolute;
	inset: 0;
	padding: 1px;
	background: linear-gradient(
		90deg,
		rgba(18, 194, 233, 0.5) 0%,
		rgba(196, 113, 237, 0.5) 50%,
		rgba(246, 79, 89, 0.5) 100%
	);
	border-radius: 8px;
	-webkit-mask: linear-gradient(white 0 0) content-box,
		linear-gradient(white 0 0);
	mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.syllabus-dropdown:has(.syllabus-toggle.w--open):before {
	content: "";
}
.syllabus-dropdown:has(.syllabus-toggle.w--open) {
	border: transparent;
}

.syllabus-toggle.w--open {
	background: linear-gradient(
		90deg,
		rgba(18, 194, 233, 0.8) 0%,
		rgba(196, 113, 237, 0.8) 50%,
		rgba(246, 79, 89, 0.8) 100%
	);
	border-radius: 8px;
}
.syllabus-toggle h4 {
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0%;
	margin: 0;
}
.syllabus-toggle.w--open h4 {
	font-weight: 600;
}
.syllabus-dropdown-list .faq-dropdown-list-wrap {
	padding: 24px;
	color: #ffffffcc;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0%;
}
.syllabus-dropdown-list .faq-dropdown-list-wrap:has(.video-lesson-link-block) {
	display: flex;
}
.syllabus-dropdown-list .video-lesson-link-block {
	border: 1px solid #ffffff80;
	padding: 6px 24px;
	width: fit-content;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	color: #ffffff;
	text-align: center;
	border-radius: 8px;
	text-align: center;
	background-image: none;
	display: flex;
	align-items: center;
	justify-content: center;
	height: fit-content;
	flex-shrink: 0;
	margin-left: auto;
}
.password-input {
	position: relative;
}

.see-password {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 10px;
	cursor: pointer;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background-image: url("../images/Eye.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	filter: invert(1);
}
.see-password.active {
	background-image: url("../images/Eye-Slash.svg");
}
.navbar-wrapper {
	padding-top: 0;
	padding-bottom: 0;
}

.panel {
	display: none;
}
.tabs {
	display: flex;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #ffffff33;
	margin-bottom: 24px;
}
.tab-link {
	padding: 22px 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 19.5px;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	cursor: pointer;
}
.tab-link.current {
	font-size: 16px;
	font-weight: 700;
	line-height: 19.5px;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	background: #ffffff0d;
	position: relative;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.tab-link.current:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, #12c2e9 0%, #c471ed 50%, #f64f59 100%);
	bottom: -1px;
	left: 0;
}
.panel.current {
	display: block;
}
.my-accont-wrap.pannels-wrapper {
	grid-template-columns: 1fr;
}

.welcome-user-wrapper {
	background: #ffffff0d;
	border: 1px solid #ffffff1a;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 24px;
	gap: 24px;
}
.user-img {
	width: 80px;
	height: 80px;
	border: 2px solid #ffffff80;
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 30px;
}
.user-info {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
}
.user-info p,
.user-info h2 {
	margin: 0;
}
.user-info p {
	font-size: 16px;
	font-weight: 400;
	line-height: 25.92px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
}
.user-info h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 52px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	text-transform: capitalize;
}
.user-log-in-log-out {
	border: 1px solid #ffffff80;
	border-radius: 4px;
	background-color: transparent;
	font-size: 16px;
	font-weight: 500;
	line-height: 19.5px;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #ffffff;
}
.settings-pannel {
	border: none;
	padding: 0;
}
.settings-pannel h3.no-top-margin {
	font-size: 18px;
	font-weight: 700;
	line-height: 21.94px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	margin-bottom: 24px;
}
.settings-pannel .user-account-form-block {
	margin-top: 0;
}
.settings-pannel .profile-settings-form {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}
.settings-pannel .profile-settings-form input {
	margin-bottom: 0;
	padding: 0;
	padding-inline: 12px;
	min-height: 30px;
}
.settings-pannel .profile-settings-form label {
	padding-inline: 12px;
	margin-bottom: 0;
}
.settings-pannel .profile-settings-form .buttons-wrap {
	grid-column: 1 / -1;
	grid-template-columns: 1fr;
}
.settings-pannel .profile-settings-form .buttons-wrap button {
	width: fit-content;
	margin-left: auto;
	border: 1px solid #ffffff80;
	background-color: transparent;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	line-height: 19.09px;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #ffffff;
}
[data-nav-menu-open] {
	display: flex !important;
}
.profile-dropdown .user-log-in-log-out {
	padding: 0;
	text-align: left;
	border: none;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.profile-dropdown .user-log-in-log-out:hover {
	background-color: transparent;
}
.cart-terms {
	display: flex;
	align-items: center;
	gap: 8px;
	border-top: 1px solid #ffffff0d;
	padding-top: 32px;
	padding-bottom: 32px;
}
.cart-terms input {
	width: 24px;
	height: 24px;
	accent-color: #12c2e9;
}
.cart-terms label {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 19.09px;
	letter-spacing: 0%;
	text-align: center;
}
.payment-method {
	background: #ffffff0d;
	padding: 16px 12px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 16px;
	border-radius: 8px;
}
.payment-method label {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}
.payment-method label img {
	width: 24px;
}
.choose-payment-method input {
	width: 16px;
	height: 16px;
	accent-color: #12c2e9;
}
.choose-payment-method {
	padding-top: 32px;
	border-top: 1px solid #ffffff0d;
	margin-bottom: 32px;
}
.choose-payment-method h5 {
	font-weight: 400;
	font-size: 18px;
	line-height: 21.94px;
	margin-top: 0;
	color: #ffffff;
	margin-bottom: 20px;
	text-align: left;
}
.section.footer {
	background-color: #000000;
	border-top: 1px solid #ffffff33;
	padding: 48px 0;
}
.navbar-wrapper,
.section.footer,
.inner-page-font,
.news-wrapper,
.syllabus-item-section,
.news-inner,
.similar-articles,
body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
}
.navbar-wrapper a,
.navbar-wrapper button,
.inner-page-font *,
.news-wrapper *,
.syllabus-item-section *,
.news-inner *,
.similar-articles * {
	font-family: inherit;
}
.footer-columns-wrap {
	grid-template-columns: 3fr 1fr 1fr 1fr;
}
.footer-column-heading {
	font-family: inherit;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	margin-bottom: 20px;
	letter-spacing: 0%;
	color: #ffffff;
}
.socials-wrap.in-footer {
	margin-top: 0;
}
.footer-columns-wrap .paragraph-smaller {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #ffffff;
}
.social-link {
	background: #ffffff1a;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-link img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}
.footer-link {
	margin-top: 0;
	color: #ffffffb2;

	font-family: inherit;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0%;

	margin-bottom: 20px;
}
.back-to-link {
	background: #ffffff0d;
	padding: 10px 12px;
	border-radius: 4px;
	margin-bottom: 24px;
}
.inner-page-font .course-hero-content {
	padding-top: 0;
}
.inner-page-font .course-hero-content h1 {
	font-weight: 600;
	font-size: 28px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	margin-bottom: 16px;
}
.inner-page-font .course-hero-content .course-details-wrap {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	margin-bottom: 24px;
	color: #ffffff80;
}
.inner-page-font .course-hero-content .short-description {
	color: #ffffffb2;
	max-width: 100%;
}
.course-hero.inner-page-font
	#w-node-_5102c097-6103-b497-bc20-6e07cb724927-28dbe10c {
	align-self: unset;
}

.news-wrapper {
	background: #171717;
	padding-bottom: 60px;
	padding-top: 32px;
}
.search-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 320px;
	width: 100%;
	position: relative;
}
.search-wrapper button,
.search-wrapper button:hover {
	background: transparent;
	border: none;
	padding: 0;
}
.news-list {
	gap: 30px;
}
.about-course-card .icon {
	width: 44px;
}
.about-course-card h5 {
	margin-bottom: 8px;
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
}
.about-course-card .paragraph-smaller {
	color: #ffffff80;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-align: center;
}

.search-wrapper button {
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
}
.search-wrapper input {
	padding: 10px 12px;
	margin-bottom: 0;
	padding-left: 30px;
}
.news-card {
	border: 1px solid #ffffff4d;
	border-radius: 8px;
	overflow: hidden;
	padding-bottom: 16px;
	height: 100%;
}
.news-card img {
	margin-bottom: 16px;
	height: 204px;
	object-fit: cover;
	width: 100%;
}
.news-list a {
	text-decoration: none;
}
.news-card .news-info {
	padding: 0 16px;
	height: calc(100% - 220px);
	display: flex;
	flex-direction: column;
}
.news-card .title {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	margin-top: 0;
	margin-bottom: 12px;
}
.news-card .news-info span {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	color: #ffffff80;
	margin-top: auto;
}
.top-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 20px;
}
.syllabus-inner-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
	margin-top: 32px;
	flex-wrap: wrap;
	z-index: 20;
}
.syllabus-inner-top:before {
	display: none;
}
.syllabus-inner-top .breadcrumbs-wrapper,
.syllabus-inner-top .breadcrumbs-wrapper a,
.syllabus-inner-top .course-h1 {
	margin-bottom: 0;
	margin-top: 0;
}
.syllabus-item-section .course-h1 {
	font-weight: 600;
	font-size: 28px;
	line-height: 100%;
	text-align: center;
}
.video-lessons-wrap {
	display: block;
}
.video-lessons-wrap .w-richtext {
	color: #ffffffb2;
}
.watch-list {
	margin-top: 64px;
	text-align: center;
}
.video-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	max-width: 800px;
	margin-inline: auto;
}
.video-wrapper video {
	border-radius: 8px;
	width: 100%;
	height: 204px;
	object-fit: cover;
}
.watch-list h5,
.tasks-wrapper h5 {
	margin: 0;
	font-weight: 600;
	font-size: 24px;
	line-height: 100%;
	text-align: center;
	color: #ffffff;
	margin-bottom: 32px;
}
.tasks-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-top: 64px;
	margin-bottom: 64px;
}
.read-list,
.todo-list {
	padding: 32px;
	border: 1px solid #ffffff1a;
	background-color: #ffffff08;
	border-radius: 8px;
}
.task-item {
	background-color: #ffffff0a;
	padding: 12px;
	border-radius: 12px;
	display: flex;
	margin-bottom: 16px;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}
.task-item h6 {
	color: #ffffff;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	margin-bottom: 8;
	margin-top: 0;
}
.task-item span {
	color: #ffffff80;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
}
.task-item .img-div {
	background-color: #ffffff1a;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	padding: 6px;
	width: 52px;
	height: 52px;
}
.task-item .img-div img {
	width: 40px;
}
.task-item a.button {
	padding: 8px;
	border: 1px solid #ffffff80;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-left: auto;
	border-radius: 8px;
}
.task-item a.button img {
	width: 24px;
}
.news-inner,
.similar-articles {
	background-color: #e8e8e8;
	color: #232323;
	padding-bottom: 64px;
}
.news-inner .breadcrumbs-link {
	color: #171717;
	background-color: #dcdcdc;
}
.news-inner .breadcrumbs-link img {
	filter: invert(1);
}
.news-inner .published {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	color: #17171780;
	font-weight: 400;
	font-size: 13px;
	line-height: 18.2px;
	letter-spacing: 2%;
}
.share-icon {
	background-color: #dcdcdc;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}
.share-icons-wrapper {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
	margin-bottom: 32px;
}
.share-icon img {
	width: 20px;
}
.news-top-part {
	margin-top: -70px;
}
.news-inner .news-top-part {
	margin-top: 0;
}
.news-inner .course-h1 {
	color: #232323;
	text-align: center;
	font-weight: 700;
	font-size: 32px;
	line-height: 100%;
	text-align: center;
	margin-inline: auto;
}
.similar-articles {
	border-top: 1px solid #17171780;
	padding-top: 32px;
}
.article-main-image {
	background-color: #dcdcdc;
	margin-bottom: 32px;
}
.article-main-image img {
	height: 509px;
	object-fit: cover;
	width: 100%;
}
.swipper-btns {
	position: absolute;
	right: 28px;
	bottom: 28px;
	z-index: 20;
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: center;
}
.swipper-btns .swiper-button-next,
.swipper-btns .swiper-button-prev {
	border: 1px solid #ffffff;
	background-color: #1717174d;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: static;
	margin: 0;
}
.swipper-btns .swiper-button-next:hover,
.swipper-btns .swiper-button-prev:hover {
	background-color: rgba(23, 23, 23, 0.5);
}
.swipper-btns .swiper-button-next:after,
.swipper-btns .swiper-button-prev:after {
	font-size: 12px;
	color: #ffffff;
}
.similar-articles .news-card {
	background-color: #f3f3f3;
	color: #171717;
}
.similar-articles .section-title {
	text-align: center;
	color: #171717;
	margin-bottom: 32px;
	margin-top: 0;
	text-transform: capitalize;
}
.similar-articles .news-card .title {
	color: #171717;
}
.similar-articles .news-card .news-info span {
	color: #17171780;
}
.news-tags-wrapper {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
}
.news-select {
	background-color: #ffffff0d;
	padding: 8px 16px;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	outline: none;
	letter-spacing: 0%;
	vertical-align: middle;
	color: #ffffff;
	border-radius: 8px;
	border: none;
}
.news-select option {
	background-color: #171717;
	padding: 8px 16px;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0%;
	vertical-align: middle;
	color: #ffffff;
	border-radius: 8px;
	width: fit-content;
}
.news-text,
.news-text * {
	color: #17171780;
}
.news-tag {
	background-color: #f3f3f3;
	border-radius: 32px;
	padding: 8px 24px;
	font-weight: 400;
	font-size: 14px;
	text-decoration: none;
	line-height: 100%;
	vertical-align: middle;
	width: fit-content;
	color: #12c2e9;
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	vertical-align: middle;
}
.news-tag:hover {
	text-decoration: none;
}
.share-icons-footer {
	justify-content: start;
}
.link-copied{
    display:none;
    padding: 2px 10px;
    background: #90ee9070;
    border-radius: 14px;
    color: #045804;
}
@media (max-width: 1024px) {
	.news-top-part {
		margin-top: 0;
	}
	.cart-items-page-wrap {
		grid-template-columns: 1fr;
	}
	.inner-page-inner-wrapper {
		padding: 0 20px;
	}
	.course-inner-page-syllabus {
		padding-inline: 0;
	}
	.syllabus-inner-top {
		gap: 32px;
	}
}
@media (max-width: 991px) {
	.settings-pannel .profile-settings-form,
	.tasks-wrapper,
	.video-wrapper {
		grid-template-columns: 1fr;
	}

	.news-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.course-details-block {
		grid-template-columns: 1fr;
	}
	.about-course-card:before {
		border: none !important;
	}
	.syllabus-dropdown-list
		.faq-dropdown-list-wrap:has(.video-lesson-link-block) {
		flex-direction: column;
	}

	.about-course-card,
	.about-course-card:nth-child(2),
	.course-details-block:nth-of-type(2) .about-course-card {
		position: relative;
		border: 1px solid transparent;
		border: 1px solid;

		border-image-source: linear-gradient(
			270deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.2) 50%,
			rgba(255, 255, 255, 0) 100%
		);
		border-image-slice: 1;
		border-bottom: none;
	}
	.header-cart .cart-icon,
	.nav-link .heart-icon {
		height: 24px;
	}
	.social-link {
		width: 60px;
	}
	.footer-columns-wrap {
		display: flex;
		flex-direction: column;
	}
	nav:has(.profile-dropdown.active) .nav-link,
	nav:has(.profile-dropdown.active) .header-cart {
		z-index: 0;
	}
	.button.in-nav.signed-in:has(.profile-dropdown.active)::before {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.8);
	}
	.nav-link,
	.header-cart {
		padding: 24px 10px !important;
		width: calc(100% - 32px) !important;
		margin-inline: auto;
		z-index: 1;
	}
	.profile-dropdown {
		top: unset;
		bottom: 0;
		width: 100%;
		padding: 0;
		background: black;
		z-index: 20000;
		border: none;
		border-radius: 24px;
	}
	.profile-dropdown ul {
		border: none;
	}
	[data-nav-menu-open] {
		height: calc(100vh - 89px);
	}
	.button.in-nav.account-btn,
	.button.in-nav.signed-in {
		margin-top: auto;
		margin-bottom: 30px;
	}
	.nav-link:has(.heart-icon) {
		border-bottom: 1px solid var(--dim-grey);
	}
	.tabs {
		flex-direction: column;
		border-bottom: none;
	}
	.header-cart {
		height: unset;
		border-top: 1px solid var(--dim-grey);
		padding: 16px 24px;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
	}
	.header-cart:has(span.active) .cart-icon {
		margin-left: 10px;
	}
	.header-cart span {
		position: static;
		transform: translateY(-50%);
		text-decoration: none;
	}
}

@media (max-width: 768px) {
	.cart-item {
		grid-template-columns: 1fr;
	}
	.news-list {
		grid-template-columns: 1fr;
	}
	.courses-cl.related.course-instructors-list .courses-cli:only-child {
		width: 100%;
	}
	.courses-cl.related.course-instructors-list.only .courses-cli:only-child {
		width: 100%;
	}
	.courses-cl.related.course-instructors-list,
	.courses-cl.related.course-instructors-list.only {
		grid-template-columns: 1fr;
	}
	.cart-item .cart-item-image img {
		height: 250px;
	}
	.modal .course-data .course-card {
		grid-template-columns: 1fr;
	}
	.modal .course-data .course-page-inner-wrapper {
		flex-direction: column-reverse;
	}
	.modal .modal-content {
		width: 90%;
	}
	.modal .course-page-inner-wrapper .course-image-wrap {
		width: 100%;
	}
	.modal .course-data .absolute-image {
		position: static;
	}
	.modal .course-image-wrap {
		padding-top: 0;
	}
}
