* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html, body {
	height: 100%;
}
body {
	font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans";
	color: #0f1222;
	background: #ffffff;
}
a {
	text-decoration: none;
}
blockquote {
	border-left: 3px solid #A765FC;
	border-radius: 8px;
	padding: 5px 20px;
	margin: 20px 0;
	background-image: linear-gradient(to right, #9350FB, #A765FC97);
	font-style: italic;
	color: #fff;
	quotes: "“" "”";
}
blockquote p {
	margin: 0;
}
blockquote::before {
	content: "\efcd";
	font-family: 'IcoFont';
	line-height: 1em;
	text-align: center;
	width: 1em;
	font-weight: 900;
	font-size: 38px;
	margin-bottom: 5px;
	display: block;
	color: #fff;
}
.top-bar {
	position: relative;
	width: 100%;
	height: 7px;
	background: #9350FB;
}
.top-bar:after {
	content: '';
	position: absolute;
	top: 0;
	width: 50%;
	height: 0;
	right: 0;
	border-top: 7px solid #A765FC;
	border-left: 7px solid transparent;
}
.site-header {
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #A765FC;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.header-inner {
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #0f1222;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: .2px;
	white-space: nowrap;
}
.logo-mark {
	max-width: 200px;
	width: 100%;
	height: auto;
}
nav.primary-nav {
	position: relative;
}
.primary-nav .menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 28px;
}
.primary-nav .menu > li > a {
	text-decoration: none;
	color: #0f1222;
	font-weight: 500;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 0;
}
.primary-nav .menu > li > a:hover {
	color: #A765FC;
	text-decoration: underline;
}
.primary-nav .menu > li.menu-item-has-children {
	position: relative;
}
.primary-nav .menu > li.menu-item-has-children > a {
	position: relative;
	padding-right: 18px;
}
.primary-nav .menu > li.menu-item-has-children > a:after {
	content: "\ea67";
	font-family: "IcoFont";
	font-weight: 900;
	font-size: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: transform .25s ease;
}
.primary-nav .menu > li.menu-item-has-children:hover > a:after {
	content: "\ea6a";
}
.primary-nav .menu > li .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 220px;
	background: #fff;
	border: 1px solid #e7e9ee;
	border-radius: 12px;
	padding: 10px;
	box-shadow: 0 10px 30px rgba(15,18,34,.08);
	display: none;
	z-index: 20;
	list-style-type: none;
}
.primary-nav .menu > li .sub-menu li {
	border-bottom: 1px solid #f8ecff;
}
.primary-nav .menu > li .sub-menu li:last-child {
	border-bottom: none;
}
.primary-nav .menu > li .sub-menu a {
	display: block;
	padding: 10px 12px;
	color: #0f1222;
	text-decoration: none;
	font-size: 14px;
	white-space: nowrap;
}
.primary-nav .menu > li .sub-menu a:hover {
	background: #f7f7fb;
	color: #A765FC;
	text-decoration: underline;
}
.right {
	display: flex;
	align-items: center;
	gap: 20px;
}
.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 16px;
	background: #A765FC;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(167,101,252,.25);
	transition: transform .12s ease, box-shadow .12s ease;
	white-space: nowrap;
}
.cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(167,101,252,.28);
}
.cta:active {
	transform: translateY(0);
}
.cta.mobil {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    margin-top: 14px;
}
.burger {
	display: none;
	width: 40px;
	height: 35px;
	border-radius: 10px;
	border: 1px solid #A765FC;
	background: #fff;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.burger span {
	width: 18px;
	height: 2px;
	background: #A765FC;
	position: relative;
	display: block;
}
.burger span:before, .burger span:after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: #A765FC;
}
.burger span:before {
	top: -6px;
}
.burger span:after {
	top: 6px;
}
.nav-panel {
	display: none;
	position: relative;
	inset: 7px 0 auto 0;
	background: #fff;
	padding: 18px 20px 24px;
	border-top: 1px solid #A765FC;
	border-bottom: 3px solid #A765FC;
	border-radius: 0 0 10px 10px;
	z-index: 100;
}
.nav-panel.open {
	display: block;
}
.mobile-nav .menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 8px;
}
.mobile-nav .menu > li, .mobile-nav .menu > li .sub-menu li {
	border-bottom: 1px solid #f8ecff;
}
.mobile-nav .menu > li:last-child, .mobile-nav .menu > li .sub-menu li:last-child {
	border-bottom: none;
}
.mobile-nav .menu > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 10px;
	border-radius: 10px;
	text-decoration: none;
	color: #0f1222;
	font-weight: 600;
}
.mobile-nav .menu > li.menu-item-has-children > a {
	position: relative;
	padding-right: 22px;
}
.mobile-nav .menu > li.menu-item-has-children > a:after {
	content: "\ea67";
	font-family: "IcoFont";
	font-weight: 900;
	font-size: 14px;
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform .25s ease;
}
.mobile-nav .menu > li.menu-item-has-children.open > a:after {
	content: "\ea6a";
}
.mobile-nav .menu .sub-menu {
	display: none;
	list-style: none;
	margin: 6px 0 10px 0;
	padding-left: 10px;
	border-left: 3px solid #f0e8ff;
}
.mobile-nav .menu .sub-menu a {
	display: block;
	padding: 8px 10px;
	border-radius: 8px;
	text-decoration: none;
	color: #2b2e3a;
	font-size: 14px;
}
.mobile-nav .menu .sub-menu a:hover {
	background: #f7f7fb;
}
.hero {
	position: relative;
	width: 100%;
	min-height: clamp(560px, 80vh, 700px);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgb(248 236 255 / 70%) 0% 50%, transparent 50% 100%);
	pointer-events: none;
}
.hero-inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	max-width: 1400px;
	min-height: inherit;
	display: flex;
	align-items: center;
}
.hero-grid {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: center;
}
.hero-media {
	position: relative;
	overflow: hidden;
	padding-top: 50px;
}
.hero-media img {
	position: relative;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hero-content {
	padding: 0 100px 70px 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero-title {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
	color: #A765FC;
}
.hero-desc {
	font-size: 16px;
	color: #5b6170;
	margin-bottom: 18px;
	max-width: 56ch;
}
.hero .form-card {
	background: #ffffff;
	border: 5px solid #f8ecff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(15,18,34,.08);
	padding: 18px;
	position: relative;
	overflow: visible;
}
.hero .form-card::before, .hero .form-card::after {
	content: "❤";
	position: absolute;
	font-size: 60px;
	z-index: 0;
}
.hero .form-card::before {
	top: -35px;
	left: -35px;
	transform: rotate(-25deg);
	color: #A765FC;
}
.hero .form-card::after {
	bottom: -35px;
	right: -35px;
	transform: rotate(25deg);
	color: #b398dd;
}
.hero .field {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #A765FC;
	border-radius: 12px;
	height: 48px;
	margin: 15px 0;
	padding-left: 42px;
	background: #fff;
	z-index: 1;
}
.hero .field svg {
	position: absolute;
	left: 14px;
	width: 18px;
	height: 18px;
	color: #A765FC;
	opacity: 0.8;
}
.hero .field input {
	width: 100%;
	height: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 15px;
	color: #0f1222;
}
.hero .form-actions {
	display: block;
	width: 100%;
	z-index: 1;
}
.hero .btn-primary {
	height: 48px;
	border: 0;
	border-radius: 12px;
	display: block;
	width: 100%;
	padding: 0 16px;
	cursor: pointer;
	font-weight: 700;
	text-decoration: none;
}
.hero .btn-baglan {
    font-size: 17px;
	background: #A765FC;
	color: #fff;
	box-shadow: 0 8px 18px rgba(167,101,252,.25);
}
.hero .btn-baglan:hover {
	transform: translateY(-1px);
}
.hero .btn-link {
	display: block;
	width: 100%;
	height: 40px;
	padding: 8px 14px;
	border-radius: 10px;
	background: #f6f7fb;
	color: #111;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	border: 1px solid #e6e8ee;
	margin-top: 15px;
	text-align: center;
	cursor: pointer;
}
.hero .btn-link:hover {
	transform: translateY(-1px);
}
.hero .form-note {
	margin-top: 10px;
	font-size: 12px;
	color: #6b7280;
	text-align: center;
}
.hero .form-note i {
	color: #ffa700;
}
.section-features {
	background: #9350FB;
	color: #fff;
}
.section-features .features-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 90px 20px 0 20px;
}
.section-features .features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: stretch;
}
.features-list-container {
	padding-bottom: 90px;
}
.features-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.feature-item {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 14px;
	align-items: center;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 14px;
	padding: 14px;
}
.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.18);
	box-shadow: 0 6px 16px rgba(0,0,0,.12) inset;
}
.feature-icon i {
	font-size: 25px;
	color: #ffffff
}
h2.feature-title {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -.01em;
	margin-bottom: 14px;
	text-align: center;
}
.feature-title {
	font-size: 23px;
	font-weight: 800;
	letter-spacing: -.01em;
	margin-bottom: 4px;
}
.feature-desc {
	font-size: 14px;
	line-height: 1.55;
	color: #F5F2FF;
}
.features-media {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	min-height: 520px;
}
.features-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	/*object-fit: cover;*/
	object-position: center;
	display: block;
	opacity: 0.85;
}
.section-article {
	position: relative;
	color: #0f1222;
}
.section-article .article-inner {
	max-width: 1200px;
	margin: 50px auto 0 auto;
	padding: 50px 25px;
	text-align: center;
	background-size: contain;
	background-position: center;
	background-color: #a765fc0d;
	border-radius: 20px;
	border: 1px solid #a765fc;
}
.section-article .article-title {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #9350FB;
	margin: 0 0 12px 0;
	position: relative;
	padding-bottom: 10px;
}
.section-article .article-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%);
	width: 80px;
	height: 3px;
	background: #9350FB;
	border-radius: 3px;
}
.section-article .article-body {
	font-size: 15px;
	line-height: 1.8;
	color: #A765FC;
	width: 100%;
}
.section-article .article-body a {
	color: #9350FB;
	font-weight: 700;
	text-decoration: underline;
}
.section-article .article-body a:hover {
	text-decoration-thickness: 2px;
}
.section-downloads {
	background: #ffffff;
	color: #0f1222;
}
.section-downloads .downloads-inner {
	padding: 48px 20px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.section-downloads h2 {
	font-size: 28px;
	margin-bottom: 15px;
	color: #A765FC;
}
.section-downloads .section-desc {
	font-size: 15px;
	color: #5b6170;
	margin-bottom: 50px;
}
.downloads-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	align-items: stretch;
}
.download-card {
	position: relative;
	background: #A765FC;
	color: #fff;
	border-radius: 16px;
	padding: 28px 18px 20px 18px;
	border-bottom: 5px solid #9350FB;
	box-shadow: 0 10px 30px rgba(15,18,34,.08);
	overflow: visible;
}
.download-badge {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #A765FC;
	border: 3px solid #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 22px rgba(167,101,252,.35);
}
.download-badge img {
	width: 35px;
	height: 35px;
	object-fit: contain;
}
.download-title {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -.01em;
	margin: 6px 0 8px 0;
	position: relative;
	padding-bottom: 8px;
}
.download-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	width: 90px;
	height: 3px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 3px;
}
.download-desc {
	font-size: 14px;
	line-height: 1.55;
	color: #F5F2FF;
	margin: 12px 0 14px 0;
}
.download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 14px;
	border-radius: 12px;
	background: #F8ECFF;
	color: #A765FC;
	font-weight: 800;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.35);
	transition: transform .12s ease, box-shadow .12s ease;
	box-shadow: 0 6px 16px rgba(248,236,255,.35);
}
.download-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(248,236,255,.45);
}
.section-latest {
    position: relative;
	background: #f8ecff;
}
.section-latest .oval-top svg, .section-latest .oval-bottom svg {
    display: block;
    width: 100%;
    height: 100px;
}
.section-latest .latest-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.section-latest .latest-title {
	font-size: 28px;
	color: #9350FB;
	position: relative;
	padding-bottom: 10px;
}
.section-latest .title-underline {
	position: relative;
	height: 3px;
	background: #9350FB;
	width: 80px;
	border-radius: 3px;
	margin-bottom: 14px;
	left: 50%;
	transform: translate(-50%);
}
.section-latest .section-desc {
	font-size: 15px;
	color: #6b617a;
	margin-bottom: 25px;
}
.latest-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: auto auto;
	grid-template-areas: "big s1 s2" "big s3 s4";
	gap: 20px;
	align-items: stretch;
}
.post-card {
	position: relative;
	background: #fff;
	border: 2px solid transparent;
	border-radius: 50px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(15,18,34,.08);
	min-height: 220px;
}
.post-card a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
}
.post-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.post-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	padding: 12px 14px;
	color: #fff;
	opacity: 0.9;
}
.post-title {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -.01em;
}
.card-big {
	grid-area: big;
	min-height: 460px;
}
.card-s1 {
	grid-area: s1;
}
.card-s2 {
	grid-area: s2;
}
.card-s3 {
	grid-area: s3;
}
.card-s4 {
	grid-area: s4;
}
.c1 {
	border-color: #A765FC;
	border-radius: 50px;
}
.c1 .post-overlay {
	background: #A765FC;
	bottom: 60px;
}
.c2 {
	border-color: #fb5076;
	border-radius: 50px 10px 50px 10px;
}
.c2 .post-overlay {
	background: #fb5076;
}
.c3 {
	border-color: #FF7AC1;
	border-radius: 10px 50px 10px 50px;
}
.c3 .post-overlay {
	background: #FF7AC1;
}
.c4 {
	border-color: #ff9042;
	border-radius: 10px 50px 10px 50px;
}
.c4 .post-overlay {
	background: #ff9042;
}
.c5 {
	border-color: #FFC857;
	border-radius: 50px 10px 50px 10px;
}
.c5 .post-overlay {
	background: #FFC857;
}
.latest-footer {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}
.btn-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 12px;
	background: #A765FC;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(167,101,252,.25);
	transition: transform .12s ease, box-shadow .12s ease;
}
.btn-more:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(167,101,252,.35);
}
.section-dual {
	background: #fff;
}
.section-dual .dual-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.dual-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
}
.dual-text {
	color: #0f1222;
}
.dual-title {
	font-size: 28px;
	font-weight: 800;
	color: #9350FB;
	margin-bottom: 10px;
	position: relative;
	padding-bottom: 10px;
}
.dual-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background: #9350FB;
	border-radius: 3px;
}
.dual-desc {
	font-size: 15px;
	line-height: 1.7;
	color: #5b6170;
	margin-bottom: 18px;
}
.dual-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 18px;
	border-radius: 10px;
	background: #A765FC;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 16px rgba(167,101,252,.25);
	transition: transform .12s ease, box-shadow .12s ease;
}
.dual-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(167,101,252,.35);
}
.dual-img {
	width: 100%;
	border-radius: 16px;
	border: 5px solid #f8ecff;
	overflow: hidden;
}
.dual-img img {
	width: 100%;
	height: auto;
	display: block;
}
.dual-block.reverse {
	grid-template-columns: 1fr 1fr;
}
.dual-block.reverse .dual-img {
	order: 1;
	border: 5px dashed #f8ecff;
}
.dual-block.reverse .dual-text {
	order: 2;
}
.footer-bar {
	position: relative;
	width: 100%;
	height: 7px;
	background: #A765FC;
}
.footer-bar:after {
	content: '';
	position: absolute;
	top: 0;
	width: 50%;
	height: 0;
	right: 0;
	border-top: 7px solid #7223d7;
	border-left: 7px solid transparent;
}
.site-footer {
	background: #9350FB url('../images/footerbg.webp') center center no-repeat;
	background-size: cover;
	color: #ffffff;
}
.site-footer .footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.footer-top {
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 60px;
}
.footer-logo {
	max-width: 300px;
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(2px 4px 6px black);
}
.footer-middle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	padding-top: 20px;
}
.footer-middle.ortala {
	justify-content: center;
}
.footer-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
.footer-menu li {
	position: relative;
	border-right: 1px solid rgba(255,255,255,0.4);
}
.footer-menu li a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: .2px;
	padding: 0 10px;
}
.footer-menu li:last-child {
	border-right: none;
}
.footer-menu a:hover {
	text-decoration: underline;
}
.footer-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-socials a {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255,255,255,0.35);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.footer-socials a:hover {
	transform: translateY(-1px);
	background: rgba(255,255,255,0.08);
	box-shadow: 0 8px 18px rgba(0,0,0,.15);
}
.footer-socials i {
	color: #fff;
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border-top: 1px solid rgba(255,255,255,0.25);
	padding-top: 12px;
}
.footer-bottom.ortala {
	justify-content: center;
}
.footer-copy {
	font-size: 13px;
	opacity: .95;
}
.footer-logo-sm {
	height: 40px;
	width: 140px;
	display: block;
}
#breadcrumb {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 200px;
	background-image: url('../images/breadcrumb.webp');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}
#breadcrumb .breadcrumb-content {
	position: relative;
	padding: 20px;
}
#breadcrumb h1 {
	margin: 0 0 10px;
	font-size: 32px;
	color: #fff;
	font-weight: 700;
}
.breadcrumb-row {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}
.breadcrumb-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}
.breadcrumb-nav a, .breadcrumb-nav span {
	color: #f0f0f0;
	text-decoration: none;
}
.breadcrumb-nav i {
	margin: 0 8px;
	color: #f0f0f0;
}
.breadcrumb-nav a:hover {
	text-decoration: underline;
}
.sayfa404 {
	min-height: calc(100vh - 200px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	background-color: #fff;
	text-align: center;
}
.sayfa404-ic {
	max-width: 600px;
	width: 100%;
}
.hata-gorsel img {
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 50%;
}
.hata-baslik {
	font-size: 2.5rem;
	font-weight: bold;
	color: #A765FC;
	margin: 15px 0;
}
.hata-aciklama {
	color: #666;
	font-size: 1.15rem;
	line-height: 1.6;
	margin-bottom: 30px;
}
.hata-buton .btn-primary {
	display: inline-block;
	background-color: #A765FC;
	border: 3px solid #A765FC;
	color: #fff;
	padding: 12px 24px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 1.1rem;
	transition: background-color .3s, border-color .3s;
}
.hata-buton .btn-primary:hover {
	background-color: #9350FB;
	border: 3px solid #A765FC;
}
.single-page {
	background-color: #fff;
}
.single-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}
.single-left {
	width: 100%;
	height: 100%;
	max-width: 70%;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 4px 6px 13px #A765FC59;
}
.single-sidebar, .archive-sidebar {
	width: 100%;
	max-width: calc(30% - 30px);
	margin-left: 30px;
}
.sidebar-alan {
	width: 100%;
}
.single-hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	min-height: 100px;
	padding: 20px;
	color: #fff;
	border-radius: 8px 8px 0 0;
	background-image: linear-gradient(to bottom, #a765fc7a, #9350fb);
}
.single-hero.page {
	min-height: 50px;
	padding: 10px 20px;
}
.single-hero h1 {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
}
.single-hero .hero-cat {
	font-size: 13px;
	opacity: 0.9;
	margin-top: 4px;
	color: #fff;
}
.single-hero .hero-cat a {
	color: #fff;
	text-decoration: none;
}
.single-meta-box {
	background-color: #fff;
	padding: 15px 20px 0 20px;
}
.meta-top {
	display: flex;
	justify-content: space-between;
	gap: 25px;
	padding-bottom: 10px;
	font-size: 14px;
	color: #555;
	border-bottom: 1px solid #eaeaea;
}
.meta-top span i {
	color: #A765FC;
}
.meta-top span a {
	color: #555;
	text-decoration: none;
}
.meta-top span a:hover {
	color: #A765FC;
	text-decoration: underline;
}
.single-yazi {
	padding: 30px 20px;
	background-color: #fff;
	border-radius: 0 0 8px 8px;
}
.single-yazi img {
	max-width: 100%;
	height: auto;
}
.single-yazi a {
	color: #A765FC;
	text-decoration: none;
}
.single-yazi a:hover {
	color: #9350FB;
}
.single-yazi p {
	padding: 5px 0;
}
.single-yazi pre {
	white-space: normal;
}
.single-yazi ul, .single-yazi ol {
	margin: 0;
	padding: 5px 0 5px 40px;
}
.single-yazi .wp-caption {
	max-width: 100%;
}
.single-tags {
	margin: 0 20px;
	padding: 15px 0;
	background-color: #fff;
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
}
.single-tags .tag-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.single-tags .tag-list li {
	background-color: #9350FB;
	border-radius: 4px;
	padding: 4px 10px;
}
.single-tags .tag-list li a {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.single-tags .tag-list li:hover {
	background-color: #A765FC;
}
.single-tags .no-tags {
	font-size: 14px;
	color: #777;
	margin: 0;
}
.comments-area {
	margin: 40px 0;
	padding: 0 20px;
}
.comments-title {
	font-size: 24px;
	margin-bottom: 20px;
	color: #333;
	font-weight: 600;
}
.comment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.comment-item {
	margin-bottom: 20px;
}
.comment-body {
	background: #f9f9f9;
	padding: 15px;
	border-radius: 8px;
	position: relative;
}
.comment-body::before {
	content: "";
	position: absolute;
	top: 10px;
	left: -10px;
	border-width: 10px 10px 10px 0;
	border-style: solid;
	border-color: transparent #f9f9f9 transparent transparent;
}
.comment-avatar {
	border-radius: 50%;
	background-color: #fff;
	float: left;
	margin-right: 10px;
}
.comment-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.comment-author {
	display: flex;
	align-items: center;
}
.comment-author .fn {
	font-weight: 600;
	color: #A765FC;
}
.comment-author .fn a {
	font-weight: 600;
	color: #A765FC;
}
.comment-author .fn a:hover {
	color: #9350FB;
}
.comment-metadata time {
	color: #777;
	font-size: 14px;
}
.comment-content {
	clear: both;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}
.comment-content a {
	color: #A765FC;
	text-decoration: none;
}
.comment-content a:hover {
	color: #9350FB;
}
.comment-list .children {
	list-style: none;
	margin-left: 60px;
}
.comment-list .children .comment-body {
	background: #f9f9f9;
	padding: 15px;
	border-radius: 0 8px 8px 0;
	position: relative;
}
.comment-list .children .comment-body::before {
	content: "";
	position: absolute;
	top: 10px;
	left: -10px;
	border-width: 10px 10px 10px 0;
	border-style: solid;
	border-color: transparent #ddd transparent transparent;
}
.comment-list .children .comment-item {
	border-left: 3px solid #ddd;
}
.comment-reply {
	text-align: right;
}
.comment-reply .comment-reply-link {
	display: inline-block;
	margin-top: 10px;
	font-size: 14px;
	color: #A765FC;
	text-decoration: none;
	transition: color 0.3s;
}
.comment-reply .comment-reply-link:hover {
	color: #9350FB;
}
.comment-reply-title a, .comment-reply-title small {
	color: #A765FC;
	text-decoration: none;
}
.comment-reply-title a:hover, .comment-reply-title small:hover {
	color: #9350FB;
}
.comment-notes {
	font-size: 14px;
	color: #555;
	margin-top: 10px;
	padding: 10px!important;
	margin-bottom: 10px;
	background-image: linear-gradient(to right, #eaeaea, #fff);
}
.comment-form p {
	padding: 10px 0;
}
.comment-form-author, .comment-form-email {
	float: left;
	width: 48%;
	box-sizing: border-box;
}
.comment-form-email {
	margin-left: 4%!important;
	margin-bottom: 10px;
}
.comment-form-comment, .comment-submit {
	clear: both;
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.comment-form-author input, .comment-form-email input, .comment-form-comment textarea {
	font-family: 'Merriweather', serif;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	color: #333;
	transition: border-color 0.3s;
}
.comment-form-author input:focus, .comment-form-email input:focus, .comment-form-comment textarea:focus {
	border-color: #A765FC;
	outline: none;
}
.comment-form-author label, .comment-form-email label, .comment-form-comment label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: #444;
}
.comment-form .required {
	color: #A765FC;
}
.comment-submit {
	background-color: #9350FB;
	color: #fff;
	margin: 0 0 -20px 0;
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	cursor: pointer;
	transition: background-color 0.3s;
}
.comment-submit:hover {
	background-color: #A765FC;
}
.comment-form-url, .comment-form-cookies-consent, .logged-in-as {
	display: none;
}
.infobox {
	background-color: #ffffff;
	border-radius: 10px;
	border: 1px solid #A765FC;
	padding: 0;
	margin-bottom: 30px;
	box-shadow: 4px 6px 13px #A765FC59;
	transition: all 0.3s ease;
}
.infobox-header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding: 10px 20px 5px 20px;
	color: #fff;
	background-color: #A765FC;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.infobox-header h4 {
	font-size: 18px;
	color: #fff;
	margin: 0;
	padding-left: 5px;
}
.infobox-body {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding: 10px 20px;
}
.infobox ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.infobox ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	padding: 10px 12px;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-weight: 500;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.infobox ul li:nth-child(odd) a {
	background-color: #ffffff;
}
.infobox ul li:nth-child(even) a {
	background-color: #f9f9f9;
}
.infobox ul li a:hover {
	background-color: #f1f1f1;
	color: #A765FC;
}
.infobox ul li a i {
	font-size: 14px;
	color: #A765FC;
	margin-right: 5px;
}
.sidebartag {
	background-color: #ffffff;
	border-radius: 10px;
	border: 1px solid #A765FC;
	padding: 0;
	margin-bottom: 30px;
	box-shadow: 4px 6px 13px #A765FC59;
	transition: all 0.3s ease;
}
.sidebartag-header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding: 10px 20px 5px 20px;
	color: #fff;
	background-color: #A765FC;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.sidebartag-header h4 {
	font-size: 18px;
	color: #fff;
	margin: 0;
	padding-left: 5px;
}
.sidebartag-body {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding: 10px 20px;
}
.sidebartag .tag-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.sidebartag .tag-list li {
	background-color: #9350FB;
	border-radius: 4px;
	padding: 4px 10px;
}
.sidebartag .tag-list li a {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.sidebartag .tag-list li:hover {
	background-color: #A765FC;
}
.infobox-search .infobox-body {
	padding: 15px 20px 20px 20px;
	justify-content: flex-start;
}
.infobox .search-form {
	display: flex;
	width: 100%;
}
.search-field-wrap {
	flex: 1;
}
.search-field {
	width: 100%;
	border-radius: 8px 0 0 8px;
	border: 1px solid #ddd;
	padding: 8px 10px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-field:focus {
	border-color: #A765FC;
	box-shadow: 0 0 0 2px #A765FC33;
}
.search-submit {
	border: none;
	border-radius: 0 8px 8px 0;
	background-color: #A765FC;
	color: #fff;
	padding: 0 14px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background-color 0.2s ease, transform 0.12s ease, box-shadow 0.12s ease;
	box-shadow: 0 6px 12px rgba(167,101,252,.35);
}
.search-submit i {
	font-size: 14px;
}
.search-submit:hover {
	background-color: #9350FB;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(147,80,251,.4);
}
.archive-page {
	padding: 40px 20px;
	background-color: #fff;
}
.archive-wrapper {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}
.archive-list {
	width: 100%;
	max-width: 70%;
}
.archive-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}
.archive-item {
	position: relative;
	border-radius: 14px;
	overflow: visible;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: transparent;
}
.archive-item a {
	display: block;
	text-decoration: none;
	color: inherit;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.archive-item:hover {
	transform: translateY(-5px);
}
.archive-thumb {
	background: #f8ecff;
	box-shadow: 4px 6px 13px #A765FC59;
	border-radius: 14px;
	border: 1px solid #ddd;
	overflow: hidden;
}
.archive-thumb img {
	display: block;
	width: 100%;
	height: 250px;
	object-fit: cover;
}
.archive-overlay {
	position: relative;
	max-width: calc(100% - 70px);
	margin: -40px auto 0 auto;
	background-color: #ffffff;
	border-radius: 12px;
	padding: 14px 16px 12px 16px;
	box-shadow: 4px 6px 13px #A765FC59;
}
.archive-meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 6px;
}
.archive-cat {
	max-width: 50%;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	align-items: center;
	font-size: 13px;
	font-weight: 700;
	color: #A765FC;
}
.archive-cat a {
	color: #A765FC;
	text-decoration: none;
	white-space: normal;
}
.archive-cat a:hover {
	text-decoration: underline;
}
.archive-title {
	display: block;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 700;
	color: #111827;
}
.archive-item:hover .archive-title {
	color: #9350FB;
}
.archive-date {
	max-width: 50%;
	font-size: 13px;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 3px;
}
.archive-date i {
	color: #A765FC;
}
.pagination {
	display: block;
	width: 100%;
	margin: 60px 0 25px 0;
	text-align: center;
}
.pagination .page-numbers {
	display: inline-block;
	margin: 0 2px;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #333;
	text-decoration: none;
}
.pagination .page-numbers:hover {
	border: 1px solid #9350FB;
	color: #9350FB;
}
.pagination .current {
	background-color: #9350FB;
	color: #fff;
	border-color: #9350FB;
}
.pagination .page-numbers.current {
	color: #fff;
}
.no-posts {
	font-size: 16px;
	color: #777;
}
.archive-sidebar {
	width: 30%;
	padding-left: 20px;
}
.search-info {
	font-size: 17px;
	padding: 10px 0 20px 0;
	color: #333;
}
.search-info strong {
	color: #A765FC;
}
.yukaricik {
	background-color: #7223d7;
	border: 3px solid #ddd;
	border-radius: 50%;
	bottom: 30px;
	color: #fff;
	cursor: pointer;
	display: none;
	font-size: 20px;
	width: 50px;
	height: 55px;
	line-height: 50px;
	position: fixed;
	right: 30px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 0.5;
	z-index: 337;
}
.yukaricik:hover {
	background-color: #A765FC;
	opacity: 1;
}
@media (hover:hover) {
	.primary-nav .menu > li.menu-item-has-children:hover > .sub-menu {
		display: block;
	}
}
@media screen and (orientation: portrait) and (min-width: 992px) and (max-width: 1200px) {
	.breadcrumb-row {
		padding: 0 20px;
	}
}
@media screen and (orientation: portrait) and (max-width: 991px) {
	.right {
		gap: 12px;
	}
	.primary-nav {
		display: none;
	}
	.cta {
		display: none;
	}
	.burger {
		display: inline-flex;
	}
	.breadcrumb-row {
		flex-direction: column;
		justify-content: center;
	}
	#breadcrumb .breadcrumb-content {
		text-align: center;
	}
	.breadcrumb-nav {
		justify-content: center;
	}
	/*
	.features-media img {
		object-fit: contain;
	}
	*/
	.single-left, .archive-list {
		max-width: 60%;
	}
	.single-sidebar, .archive-sidebar {
		max-width: calc(40% - 20px);
        width: calc(40% - 20px);
		margin-left: 20px;
		margin-top: 0;
	}
	.comment-meta {
		flex-wrap: wrap;
	}
	.archive-grid {
		grid-template-columns: 1fr;
	}
	.archive-overlay {
		margin-top: -40px;
	}
}
@media screen and (orientation: portrait) and (max-width: 768px) {
	.logo-mark {
		max-width: 200px;
	}
	.hero {
		min-height: unset;
		background-position: inherit;
	}
	.hero::before {
		background: #f8ecffb3;
	}
	.hero-inner {
		padding: 25px 35px;
		text-align: center;
	}
	.hero-grid {
		display: flex;
		flex-direction: column-reverse;
		flex-wrap: wrap;
		gap: 20px;
	}
	.hero-media {
		padding-top: 0;
	}
	.hero-media img {
		max-width: 200px;
		background-color: #bfb4d1;
		border-radius: 50%;
	}
	.hero-content {
		order: -1;
		padding: 0;
	}
	.hero-title {
		font-size: 25px;
	}
	.section-features .features-inner {
		padding: 50px 20px 0 20px;
	}
	.features-list-container {
		padding-bottom: 5px;
	}
	.section-features .features-grid {
		grid-template-columns: 1fr;
	}
	.features-media {
		min-height: 360px;
	}
	.section-article {
		padding: 0 20px;
	}
	.section-downloads {
		padding: 0 20px;
	}
	.section-article .article-title {
		font-size: 26px;
	}
	.section-article .article-body {
		font-size: 14.5px;
	}
	.downloads-grid {
		grid-template-columns: 1fr;
	}
	.section-latest .oval-top svg, .section-latest .oval-bottom svg {
		height: 50px;
	}
	.latest-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-template-areas: "big" "s1" "s2" "s3" "s4";
	}
	.card-big {
		min-height: 220px;
	}
	.c1, .c2, .c3, .c4, .c5 {
		border-radius: 30px;
	}
	.c1 .post-overlay {
		bottom: 30px;
	}
	.dual-block, .dual-block.reverse {
		grid-template-columns: 1fr;
	}
	.dual-block.reverse .dual-img, .dual-block.reverse .dual-text {
		order: unset;
	}
	.section-dual .dual-inner {
		gap: 40px;
	}
	.footer-middle {
		justify-content: center;
		gap: 14px;
	}
	.footer-menu {
		justify-content: center;
	}
	.footer-socials {
		align-self: flex-end;
	}
	.archive-page {
		padding: 40px 20px;
	}
	.archive-wrapper {
		flex-direction: column;
	}
	.archive-list, .archive-sidebar {
		max-width: 100%;
		width: 100%;
	}
	.archive-sidebar {
		padding-left: 0;
		margin-top: 30px;
	}
	.sayfa404 {
		min-height: 60vh;
		padding: 40px 20px;
	}
	.hata-baslik {
		font-size: 1.8rem;
	}
	.hata-gorsel img {
		max-width: 250px;
	}
	.breadcrumb-row {
		flex-wrap: wrap;
		justify-content: center;
	}
	#breadcrumb .breadcrumb-content {
		text-align: center;
	}
	.breadcrumb-nav {
		justify-content: center;
	}
	.single-left, .archive-list {
		max-width: 100%!important;
	}
	.single-sidebar, .archive-sidebar {
		max-width: 100%!important;
		width: 100%!important;
		margin: 30px 0 0 0!important;
	}
	.meta-top {
		flex-wrap: wrap;
		justify-content: space-around;
		gap: 10px;
	}
	.comment-meta {
		flex-wrap: wrap;
	}
}
@media screen and (orientation: landscape) and (max-height: 500px) {
	.logo-mark {
		max-width: 200px;
	}
	.hero {
		min-height: unset;
		background-position: inherit;
	}
	.hero::before {
		background: #f8ecffb3;
	}
	.hero-inner {
		padding: 25px 35px;
		text-align: center;
	}
	.hero-grid {
		display: flex;
		flex-direction: column-reverse;
		flex-wrap: wrap;
		gap: 20px;
	}
	.hero-media {
		padding-top: 0;
	}
	.hero-media img {
		max-width: 200px;
		background-color: #bfb4d1;
		border-radius: 50%;
	}
	.hero-content {
		order: -1;
		padding: 0;
	}
	.hero-title {
		font-size: 25px;
	}
	.section-features .features-inner {
		padding: 50px 20px 0 20px;
	}
	.features-list-container {
		padding-bottom: 5px;
	}
	.section-features .features-grid {
		grid-template-columns: 1fr;
	}
	.features-media {
		min-height: 360px;
	}
	.section-article {
		padding: 0 20px;
	}
	.section-downloads {
		padding: 0 20px;
	}
	.section-article .article-title {
		font-size: 26px;
	}
	.section-article .article-body {
		font-size: 14.5px;
	}
	.section-latest .oval-top svg, .section-latest .oval-bottom svg {
		height: 50px;
	}
	.card-big {
		min-height: 220px;
	}
	.c1, .c2, .c3, .c4, .c5 {
		border-radius: 30px;
	}
	.c1 .post-overlay {
		bottom: 30px;
	}
	.dual-block.reverse .dual-img, .dual-block.reverse .dual-text {
		order: unset;
	}
	.section-dual .dual-inner {
		gap: 20px;
	}
	.dual-title {
        font-size: 20px;
    }
	.footer-middle {
		gap: 14px;
	}
	.footer-menu {
		justify-content: center;
	}
	.footer-socials {
		align-self: flex-end;
	}
	.archive-page {
		padding: 40px 20px;
	}
	.sayfa404 {
		min-height: 60vh;
		padding: 40px 20px;
	}
	.hata-baslik {
		font-size: 1.8rem;
	}
	.hata-gorsel img {
		max-width: 250px;
	}
	.breadcrumb-row {
		flex-wrap: wrap;
		justify-content: center;
	}
	#breadcrumb .breadcrumb-content {
		text-align: center;
	}
	.breadcrumb-nav {
		justify-content: center;
	}
	.meta-top {
		flex-wrap: wrap;
		justify-content: space-around;
		gap: 10px;
	}
	.comment-meta {
		flex-wrap: wrap;
	}
}
@media screen and (orientation: portrait) and (max-width: 560px) {
	.footer-socials {
		align-self: center;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 10px;
	}
}
