@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	/* Kraliyet Moru #7851a9 koyu #604087 */
	--company-primary-color: #7851a9;
	--company-primary-dark: #604087;
	--company-secondary-color: #F5A623;
	--company-body-font-family: "Montserrat", sans-serif;
	--company-heading-font-family: "Montserrat", serif;
	--company-body-font-color: #474747;
	--company-heading-font-color: #19223a;
	--company-body-font-weight: 400;
	--company-heading-font-weight: 500;
	--company-body-font-size: 16px;
	--company-body-line-height: 1.6;
	--company-bg-light: #f9f8fb;
	--company-text-dark: #2b2533;
}

/* Reset */
[data-animate] {
	opacity: 0;
	visibility: hidden;
}
[data-animate].animate__animated {
	visibility: visible;
	opacity: 1;
}

/*
.form-control:focus {
	color: var(--bs-body-color);
	background-color: var(--bs-body-bg);
	border-color: rgb(240 90 34 / 17%);
	outline: 0;
	box-shadow: 0 0 0 .25rem rgb(240 90 34 / 17%)
}
*/

.fancybox-button--thumbs,
.fancybox-button--share {
	display: none !important;
}


html {
	touch-action: manipulation; /* Çift tıklama zoom'u engeller, kaydırma/pinch zoom çalışır */
}

body {
	overflow-x: hidden;
	font-family: var(--company-body-font-family);
	color: var(--company-body-font-color);
	color: var(--company-text-dark);
	font-weight: var(--company-body-font-weight);
	font-size: var(--company-body-font-size);
	line-height: var(--company-body-line-height);
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--company-heading-font-family);
	color: var(--company-heading-font-color);
	font-weight: var(--company-heading-font-weight);
	line-height: 1.2;
	font-style: normal;
	margin-top: 0px;
	margin-bottom: .7rem;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}
h1 {
	font-size: 36px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 20px;
}
h6 {
	font-size: 16px;
}

img {
	max-width: 100%;
}

a,
button {
	text-decoration: none;
	color: #333333;
}
a:hover {
	text-decoration: none;
	color: var(--company-primary-color);
}

.py-padd {
	padding-top: 70px;
	padding-bottom: 70px;
}
.pt-padd {
	padding-top: 70px;
}
.pb-padd {
	padding-bottom: 70px;
}

.btn-company-primary,
.btn-company-secondary {
	border-radius: 0px;
	padding: 9px 24px;
}
.btn-company-primary {
	background-color: var(--company-primary-color);
	color: #ffffff;
}
.btn-company-secondary {
	border-width: 2px;
	border-color: var(--company-secondary-color);
	color: #222222;
}
.btn-company-primary:hover,
.btn-company-secondary:hover {
	background-color: var(--company-secondary-color);
	color: #ffffff;
}

.btn-company-light {
	border-radius: 0px;
	padding: 9px 24px;
	background-color: transparent;
	border-color: var(--company-primary-color);
	color: #222222;
}
.btn-company-light:hover {
	background-color: var(--company-secondary-color);
	color: #ffffff;
}

@media (max-width: 768px) { /* md */

	h1 {
		font-size: 30px;
	}
	h2 {
		font-size: 30px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 24px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 16px;
	}

} /* 768px */

/* Reset end */


















/* FAQ */
.accor-item {
	border-top: 1px solid #eaeaea;
	overflow: hidden;
}
.accor-item:first-child {
	border-top: none;
}
.accor-header {
	padding: 20px 0px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	color: #222222;
	font-weight: 500;
	font-size: 110%;
	user-select: none;
}
.accor-header::after {
	content: '\ea57';
	display: inline-block;
	font: normal normal normal 22px / 1 Yedeq;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transition: transform 0.3s;
}
.accor-item.active .accor-header::after {
	transform: rotate(180deg);
}
.accor-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}
.accor-body {
	padding: 20px 0px;
	color: #777777;
}

.faq-wrapper {
	position: relative;
}
.faq-background {
	position: absolute;
	width: calc(50% - 40px);
	height: 100%;
	left: 0;
	top: 0;
	background-color: #444444;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.faq-parallax {
	background-attachment: fixed;
}
.faq-content {
	padding: 30px 0px;
}

@media (max-width: 768px) { /* md */

	.faq-wrapper {
		display: flex;
		flex-direction: column-reverse;
	}

	.faq-background {
		position: relative;
		width: 100%;
		height: 270px;
		left: auto;
		top: auto;
		background-color: #444444;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.faq-content {
		padding: 0px 0px 15px 0px;
	}

} /* 768px */

/* FAQ end */














/* Video */
.video-wrapper {
	background-color: #444444;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.video-parallax {
	background-attachment: fixed;
}
.video-wrapper .video-content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50vh;
}

.video {
	position: relative;
	text-align: center;
	display: inline-block;
	z-index: 4;
}
.video a {
	position: relative;
	background: var(--company-primary-color);
	font-size: 20px;
	z-index: 1;
	color: #ffffff;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video a i {
	font-size: 170%;
}
.video-pulse::after,
.video-pulse::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border: 1px solid var(--company-primary-color);
	left: 0;
	top: 0;
	border-radius: 50%;
	animation-duration: 2.5s;
	animation-timing-function: linear;
	animation-name: video-animation;
	animation-iteration-count: infinite;
}
.video-pulse::before {
	animation-delay: 1s;
}

@keyframes video-animation {
	0% {
		opacity: 0.5;
		transform: scale(1);
	}
	50% {
		opacity: 0.2;
		transform: scale(1.5);
	}
	100% {
		opacity: 0;
		transform: scale(2);
	}	
}

@media (max-width: 768px) { /* md */

	.fancybox-slide--iframe .fancybox-content {
		width: 100%;
		height: 70%;
		max-width: calc(100% - 30px);
	}

} /* 768px */

/* Video end */

















/* Footer */
.footer-wrapper {
	padding-top: 50px;
	background-color: var(--company-primary-dark);
	color: #ffffff;

	background-repeat: no-repeat;
	background-position: right bottom;
}
.footer-wrapper a {
	color: #ffffff;
}
.footer-wrapper h2,
.footer-wrapper h3,
.footer-wrapper h4,
.footer-wrapper h5 {
	color: #ffffff;
}
.logo-footer img {
	max-height: 125px;
}

.social-links {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5em;
}
.social-links a {
	display: block;
	width: 40px;
	height: 40px;
	/* background-color: var(--company-primary-color); */
	border: solid 1px #ffffff;
	font-size: 120%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 500ms;
	border-radius: 50%;
}
.social-links a:hover {
	background-color: var(--company-secondary-color);
	border-color: transparent;
}

.footer-menu li {
	padding: 0.25rem 0;
}
.footer-menu a {
	display: flex;
	align-items: center;
	gap: 0.5em;
}

.footer-contact li {
	padding: 0.25rem 0;
}
.footer-contact a {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.footer-contact a i {
	padding: 10px 0;
	margin-right: 10px;
	width: 40px;
	height: 40px;
	text-align: center;
	background-color: var(--company-primary-color);
	border-radius: 50%;
	transition: 500ms;
}
.footer-contact a:hover i {
	background-color: var(--company-secondary-color);
}

.copy-wrapper {
	padding: 20px 0;
	/* border-top: solid 1px rgba(255, 255, 255, 0.05); */
	background-color: rgba(255, 255, 255, 0.05);
	font-size: 85%;
}



.map-wrapper {
	background-color: #eeeeee;
	height: 50vh;
}
.map-wrapper iframe {
	height: 100% !important;
	width: 100% !important;
}

/* Footer end */




















/* ==================== START PHOTOBOX ==================== */

.photobox {
  --photobox-padd: 4px;

  position: relative;
  padding: var(--photobox-padd);
  box-sizing: border-box;
  border: 1px solid #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}
.photobox.photobox-thumb70 {
  --photobox-padd: 1px;

  width: 70px;
  padding: var(--photobox-padd);
}
.photobox-1by1 {
  aspect-ratio: 1 / 1;
}
.photobox-4by3 {
  aspect-ratio: 4 / 3;
}
.photobox img {
  max-width: calc(100% - var(--photobox-padd) * 2);
  max-height: calc(100% - var(--photobox-padd) * 2);
  object-fit: contain;
}

/* ==================== END PHOTOBOX ==================== */

/* ==================== START PRELOADER ==================== */

	.preloader {
		--preloader-size: 90px;
		--preloader-stroke-width: 4px;
		--preloader-bg-color: #ffffff;
		--preloader-progress-color: var(--company-secondary-color);
		--preloader-progress-bg: #eeeeee;

		position: fixed;
		top: 0; left: 0;
		width: 100%; height: 100%;
		background-color: var(--preloader-bg-color);
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 9999;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.preloader .spinner {
		width: var(--preloader-size);
		height: var(--preloader-size);
		border: var(--preloader-stroke-width) solid var(--preloader-progress-bg);
		border-top: var(--preloader-stroke-width) solid var(--preloader-progress-color);
		border-radius: 50%;
		animation: spinner_anm 1s linear infinite;
	}

	@keyframes spinner_anm {
		0%	 { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
	}

	.preloader.hidden {
		opacity: 0;
		visibility: hidden;
	}

/* ==================== END PRELOADER ==================== */

/* ==================== START SCROLLER ==================== */

	.scroller {
		--scroller-size: 50px;
		--scroller-stroke-width: 4px;
		--scroller-bg-color: transparent; /* rgba(255, 255, 255, 0.4) */
		--scroller-progress-color: var(--company-secondary-color);
		--scroller-progress-bg: #eeeeee;

		position: fixed;
		bottom: 25px;
		right: 25px;
		width: var(--scroller-size);
		height: var(--scroller-size);
		border: none;
		cursor: pointer;
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.3s ease, transform 0.3s ease;
		z-index: 1000;
		padding: 0px;
	}

	.scroller.visible {
		opacity: 1;
		transform: translateY(0);
	}

	.scroller svg {
		display: block;
		width: 100%;
		height: 100%;
		transform: rotate(0deg);
		transition: transform 0.2s ease;
	}

	.scroller .bg-circle {
		fill: var(--scroller-bg-color);
		stroke: var(--scroller-progress-bg);
		stroke-width: var(--scroller-stroke-width);
	}

	.scroller .progress-circle {
		fill: none;
		stroke: var(--scroller-progress-color);
		stroke-width: var(--scroller-stroke-width);
		stroke-linecap: square;
		stroke-dasharray: 283;
		stroke-dashoffset: 283;
		transform: rotate(-90deg);
		transform-origin: 50% 50%;
	}

	.scroller .up-icon {
		color: var(--scroller-progress-color);
	}

	.scroller:active {
		transform: scale(0.95) translateY(0);
	}

/* ==================== END SCROLLER ==================== */

/* ==================== START HEADER ==================== */

	.desk-wrapper a,
	.phone-wrapper a {
		text-decoration: none;
		color: #333;
	}

	/* ===== DESK ===== */

	header {
		z-index: 977;
		position: relative;
	}

	header.above-all {
		position: absolute;
		width: 100%;
		left: 0;
		top: 0;
	}

	header.scroll-down {
		position: fixed;
		width: 100%;
		left: 0;
		top: 0;

		-webkit-animation: 400ms ease-in-out 0s normal none 1 running fadeInDown;
		animation: 400ms ease-in-out 0s normal none 1 running fadeInDown;

		-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
		box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);

		background-color: #fff;
	}

	.desk-wrapper {
		height: 100%;

		display: grid;
		grid-template-columns: auto 1fr auto; /* bkz auto 1fr */
		align-items: center;
	}

	.desk-menu {
		height: 100%;
	}

	.desk-menu > ul,
	.desk-menu > ul > li {
		height: 100%;
	}

	.desk-menu > ul {
		display: flex;
		justify-content: center; /* bkz end */
		gap: 36px;

		list-style: none;
		margin: 0;
		padding: 0;
	}

	.desk-menu > ul > li {
		position: relative;
		/* cursor: pointer; */

		display: flex;
		align-items: center;
	}

	.desk-menu li.has-boxmenu {
		position: static;
	}

	.desk-menu .submenu,
	.desk-menu .boxmenu {
		position: absolute;
		top: 100%;

		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);

		transition: 400ms ease;
	}

	.desk-menu > ul > li:hover > .submenu,
	.desk-menu > ul > li:hover > .boxmenu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.desk-menu .submenu {
		min-width: 250px;
		left: 0;
	}

	.desk-menu .boxmenu {
		width: calc(100% - 20px); /* bkz desk-wrapper(position) */
		left: 10px;
	}

	.desk-menu .submenu,
	.desk-menu .boxmenu {
		overflow-x: hidden;
		overflow-y: auto;
		max-height: calc(100vh - 130px); /* bkz header(MAX) */
	}

	/* ===== PHONE ===== */

	.menu-off {
		display: none;

		background-color: transparent;
		width: 40px;
		height: 40px;
		border: solid 1px #ddd;
		margin: 0;
		padding: 0;
		font-size: 150%;
		color: #666;
	}

	.phone-wrapper .offcanvas-header button {
		background-color: transparent;
		width: 40px;
		height: 40px;
		border: solid 1px #ddd;
		margin: 0;
		padding: 0;
		font-size: 150%;
		color: #666;
	}

	.phone-wrapper {
		border: none !important;
	}

	.phone-wrapper .offcanvas-header {
		justify-content: space-between;
	}

	.phone-menu .submenu,
	.phone-menu .boxmenu {
		display: none;
	}

	.phone-menu li.open > .submenu,
	.phone-menu li.open > .boxmenu {
		display: block;
	}

	/* ===== RESPONSIVE ===== */

	@media (max-width: 1199.98px) {

		.desk-wrapper {
			grid-template-columns: 1fr auto;
		}

		.desk-menu {
			display: none;
		}

		.extra-wrapper {
			display: none;
		}

		.menu-off {
			display: inline-block;
		}

	} /* End LG */

	@media (max-width: 1399.98px) {

	} /* End XL */


	/* ===== DESK THEME ===== */

	.desk-menu .submenu,
	.desk-menu .boxmenu {
		background: #fff;
		border: 1px solid var(--company-secondary-color);
		padding: 12px 0;
	}

	.desk-menu ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.boxmenu strong h2 {
		font-weight: bold;
		font-size: 14px !important;
		color: #333;
		margin: 0;
		padding: 0;
	}

	.desk-menu .boxmenu strong {
		display: block;
		margin: 0 12px;
		padding: 12px 0;
		/* border-bottom: solid 1px #f5f5f5; */
	}

	.desk-menu .boxmenu img {
		display: block;
		width: 100%;
		margin-top: 10px;
	}

	.desk-menu .submenu a,
	.desk-menu .boxmenu ul li a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 8px 12px;
	}
	.desk-menu .boxmenu ul li a {
		padding: 4px 12px;
	}

	.desk-menu .submenu a:hover,
	.desk-menu .boxmenu ul li a:hover {
		background-color: var(--company-secondary-color);
		color: #ffffff;
	}


	/* ===== CUSTOM SCROLL ===== */

	.desk-menu .submenu::-webkit-scrollbar {
		width: 5px;
	}
	.desk-menu .submenu::-webkit-scrollbar-track {
		background: #f1f1f1; 
	}
	.desk-menu .submenu::-webkit-scrollbar-thumb {
		background: #888; 
	}
	.desk-menu .submenu::-webkit-scrollbar-thumb:hover {
		background: #555; 
	}

	.desk-menu .boxmenu::-webkit-scrollbar {
		width: 5px;
	}
	.desk-menu .boxmenu::-webkit-scrollbar-track {
		background: #f1f1f1; 
	}
	.desk-menu .boxmenu::-webkit-scrollbar-thumb {
		background: #888; 
	}
	.desk-menu .boxmenu::-webkit-scrollbar-thumb:hover {
		background: #555; 
	}

	/* ===== PHONE THEME ===== */

	.phone-menu ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.phone-menu > ul > li {
		border-top: 1px solid #eee;
	}

	.phone-menu > ul {
		border-bottom: 1px solid #eee;
	}

	.phone-menu li > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 12px 12px;
	}

	.phone-menu .submenu a:hover,
	.phone-menu .boxmenu a:hover {
		background-color: #f5f5f5;
	}

	.phone-menu .boxmenu strong {
		display: block;
		margin: 0 12px;
		padding: 24px 0 12px 0;
		/* border-bottom: solid 1px #f5f5f5; */
	}

	.phone-menu .boxmenu img {
		display: block;
		width: 100%;
		margin-top: 10px;
	}

	.phone-menu .submenu,
	.phone-menu .boxmenu {
		padding: 0 0 0 24px;
		margin-bottom: 24px;
	}


	/* thumb-menu */
	.thumb-menu {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
	}
	.thumb-menu div {
		width: 100%;
	}
	.thumb-menu div:nth-child(1) {
		width: 40px;
		height: 30px;
		border: solid 1px #dddddd;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 1px;
	}

	.thumb-menu img {
		max-width: 100%;
		max-height: 100%;
		object-fit: cover;
	}

/* ==================== END HEADER ==================== */

/* ==================== START HERO ==================== */

.hero-item {
	position: relative;
	display: flex;
	align-items: center;
}

.hero-image {
	width: 75%; /* bkz 75% */
	margin-left: auto;

	position: relative;
}

.hero-image svg {
	position: absolute;
	left: -1px;
	top: -1px;
	height: calc(100% + 2px);
	color: #ffffff;

	display: none;
}

.show-mask .hero-image svg {
	display: block;
}

.hero-image img {
	width: 100%;
	display: block;
}

.hero-content {
	position: absolute;
	left: 0;
	width: calc(25% + 75px); /* bkz 75% + 75px */
	top: 50%;
	transform: translateY(-50%);
	padding: 40px;
	background-color: #ffffff; /* opsiyonel */
	box-sizing: border-box;
	text-align: right;
}

.hero-content h2,
.hero-content p {
	color: #333333;
}

.hero-content h2 {
	font-size: 3rem;
}
.hero-content p {
	font-size: 1.5rem;
}


@media (max-width: 768px) {
	.hero-item {
		flex-direction: column;
	}

	.hero-image,
	.hero-content {
		position: relative;
		width: 100%;
		transform: none;
		top: auto;
	}

	.hero-content {
		padding: 30px 15px 0px 15px;
		text-align: center;
	}

	.hero-content h2 {
		font-size: 2.5rem;
	}
	.hero-content p {
		font-size: 1.25rem;
	}

} /* 768px end */

/* ==================== END HERO ==================== */

/* ==================== START ABOUT ==================== */

@media (max-width: 768px) {


} /* 768px */

/* ==================== END ABOUT ==================== */

/* ==================== START INFOBOX ==================== */

	.infobox-item {
		border: solid 1px #f2f2f2;
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		gap: 20px;
		padding: 40px 7px;
		height: 100%;
		min-height: 100px;
	}

	.infobox-icon > div {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50px;
		height: 50px;
		background-color: #ffffff;
	}

	.infobox-icon span {
		font-size: 1.7rem;
	}

	.infobox-text {
		/* background-color: yellow; */
		max-width: 320px;
	}

	.infobox-text strong,
	.infobox-text p {
		margin: 0;
		padding: 0;
		color: #333333;
	}

/* ==================== END INFOBOX ==================== */

/* ==================== START PORTFOLIO ==================== */

/* Service */
.service-wrapper {
	background-color: #ffffff;
}
.service-content {
	padding-top: 15px;
}
.service-content h3 {
	margin-bottom: 5px;
}

.service-wrapper.service-dark {
	background-color: #383838;
	color: #ffffff;
}
.service-wrapper.service-dark h2,
.service-wrapper.service-dark h3 {
	color: #ffffff;
}

.service-wrapper .btn-service-nav {
	border: solid 1px #666666;
	border-radius: 0px;
	color: #666666;
	width: 45px;
	height: 45px;

	display: flex;
	justify-content: center;
	align-items: center;
}
.service-wrapper .btn-service-nav:hover {
	border-color: var(--company-primary-color);
	color: var(--company-primary-color);
}
.service-wrapper .btn-service-nav i {
	font-size: 150%;
}

.service-carousel .service-image {
	position: relative;
}
.service-carousel .service-icon {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 70px;
	height: 70px;
	background-color: var(--company-secondary-color);
	padding: 10px;
}
.service-carousel .service-icon img {
	filter: brightness(0) invert(1);
}

.service-item:hover .service-icon {
	transform-origin: right top;
	transition: 300ms;
}

.service-item:hover .service-icon {
	transform: translateX(15px);
}

/* Service end */

/* Portfolio */

.sticky-wrapper {
	position: relative;
}
.sticky-content {
	position: sticky;
	top: 100px; /* bkz header-fixed */
}

.portfolio-wrapper {
	background-color: #ffffff;
}
.portfolio-content {
	position: relative;
	padding-top: 15px;
}
.portfolio-content h3 {
	margin-bottom: 5px;
}

.portfolio-content a {
	position: absolute;
	right: 0px;
	top: 0px;
	border-radius: 0px;
	background-color: #eeeeee;
}

.portfolio-wrapper.portfolio-dark {
	background-color: #383838;
	color: #ffffff;
}
.portfolio-wrapper.portfolio-dark h2,
.portfolio-wrapper.portfolio-dark h3 {
	color: #ffffff;
}

/* Portfolio end */

/* 3D Image - genel kullanıma uygun */

.image-3d {
	position: relative;
	perspective: 800px; /* Daha dramatik */
	display: block;
}

.image-3d img {
	width: 100%;
	display: block;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(.19,1,.22,1), box-shadow 0.8s cubic-bezier(.19,1,.22,1);
	will-change: transform;
}

/* Işık efekti */
.image-3d::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient( 120deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0) 60%);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

/* Hover */
.image-3d:hover img {
	transform: scale(1.12) rotateX(10deg) rotateY(-12deg) translateZ(30px);
}

.image-3d:hover::after {
	opacity: 1;
}

/* 3D Image end */

/* ==================== END PORTFOLIO ==================== */

/* ==================== START boxes-model1 ==================== */

	.boxes-model1 {
		display: grid;
		grid-template-columns: repeat(2, 1fr) 2fr 1fr;
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 20px;
		grid-row-gap: 20px;
		height: 580px;
	}

	.boxes-model1 .item:nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
	.boxes-model1 .item:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
	.boxes-model1 .item:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
	.boxes-model1 .item:nth-child(4) { grid-area: 1 / 3 / 3 / 4; }
	.boxes-model1 .item:nth-child(5) { grid-area: 1 / 4 / 2 / 5; }
	.boxes-model1 .item:nth-child(6) { grid-area: 2 / 4 / 3 / 5; }

	.boxes-model1 .item {
		overflow: hidden;
		position: relative;
	}

	.boxes-model1 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		display: block;
	}

	.boxes-model1 span {
		position: absolute;
		left: 10px;
		right: 10px;
		bottom: 10px;
		background-color: rgb(255, 255, 255, 0.4);
		border: solid 1px transparent;
		text-align: center;
		padding: 10px 5px;
	}
	.boxes-model1 h4 {
		padding: 0;
		margin: 0;
		font-size: 1rem;
		color: #333333;
	}

	@media (max-width: 992px) {

		.boxes-model1 {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			grid-template-rows: auto;
			grid-column-gap: 10px;
			grid-row-gap: 10px;
			height: auto;
		}

		.boxes-model1 .item:nth-child(1) { grid-area: 1 / 1 / 2 / 3; height: 25vh }
		.boxes-model1 .item:nth-child(2) { grid-area: 2 / 1 / 3 / 2; height: 30vh }
		.boxes-model1 .item:nth-child(3) { grid-area: 2 / 2 / 3 / 3; height: 30vh }
		.boxes-model1 .item:nth-child(4) { grid-area: 3 / 1 / 4 / 3; height: 50vh }
		.boxes-model1 .item:nth-child(5) { grid-area: 4 / 1 / 5 / 2; height: 30vh }
		.boxes-model1 .item:nth-child(6) { grid-area: 4 / 2 / 5 / 3; height: 30vh }

		.boxes-model1 span {
			padding: 5px 5px;
		}

		.boxes-model1 h4 {
			font-size: 0.9rem;
		}

	} /* 992px end */

/* ==================== END boxes-model1 ==================== */

/* ==================== START boxes-model2 ==================== */

	.boxes-model2 {
		display: grid;
		grid-template-columns: 2fr 3fr 1fr;
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 20px;
		grid-row-gap: 20px;
		height: 580px;

		/* background-color: green; */
		padding-top: 20px;
		padding-right: 20px;
	}

	.boxes-model2 .item:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
	.boxes-model2 .item:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
	.boxes-model2 .item:nth-child(3) { grid-area: 1 / 2 / 3 / 3; }
	.boxes-model2 .item:nth-child(4) { grid-area: 1 / 3 / 2 / 4; }
	.boxes-model2 .item:nth-child(5) { grid-area: 2 / 3 / 3 / 4; }

	.boxes-model2 .item {
		overflow: hidden;
		position: relative;
	}

	.boxes-model2 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		display: block;
	}

	.boxes-model2 div.item {
		border: solid 1px #dddddd;
	}

	.boxes-model2 div {
		position: absolute;
		left: 0px;
		right: 0px;
		bottom: 0px;
		background-color: rgb(255, 255, 255, 1.0);
		border: solid 1px transparent;
		text-align: center;
		padding: 7px;
	}
	.boxes-model2 h3 {
		padding: 0;
		margin: 0;
		font-size: 1rem;
		color: #333333;
	}

	@media (max-width: 992px) {

		.boxes-model2 {
			grid-template-columns: repeat(2, 1fr);
			grid-template-rows: auto;
			grid-column-gap: 10px;
			grid-row-gap: 10px;
			height: auto;
		}

		.boxes-model2 .item:nth-child(1) { grid-area: 1 / 1 / 2 / 2; height: 30vh }
		.boxes-model2 .item:nth-child(2) { grid-area: 1 / 2 / 2 / 3; height: 30vh }
		.boxes-model2 .item:nth-child(3) { grid-area: 2 / 1 / 3 / 3; height: 50vh }
		.boxes-model2 .item:nth-child(4) { grid-area: 3 / 1 / 4 / 2; height: 30vh }
		.boxes-model2 .item:nth-child(5) { grid-area: 3 / 2 / 4 / 3; height: 30vh }

			.boxes-model2 div {
				padding: 5px 5px;
			}

			.boxes-model2 h3 {
				font-size: 0.9rem;
			}

	} /* 992px end */

/* ==================== END boxes-model2 ==================== */

/* ==================== START CONTACT ==================== */

	.contact-item {
		background-color: rgba(0, 0, 0, 0.07);
		border: solid 3px transparent;

		border-radius: 16px;

		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 15px;

		padding: 14px 7px;
		height: 100%;
		min-height: 100px;
		transition: 400ms;
	}

	.contact-icon > div {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50px;
		height: 50px;
		background-color: var(--company-secondary-color);

		border-radius: 50%;
	}

	.contact-icon span {
		font-size: 1.7rem;
		color: #222222;
	}

	.contact-text {
		text-align: center;
	}
	.contact-text strong,
	.contact-text p {
		margin: 0;
		padding: 0;
		color: #ffffff;
	}
	.contact-text small {
		font-size: 70%;
	}

	.contact-item:hover {
		/* background-color: var(--company-secondary-color); */
		border-color: var(--company-secondary-color);
	}

	.contact-item:hover .contact-text strong,
	.contact-item:hover .contact-text p {
		/* color: #222222; */
	}

/* ==================== END CONTACT ==================== */

/* ==================== START CUSTOM ==================== */

	.whyus-list {
	  list-style: none;
	  padding-left: 0;
	}

	.whyus-list li {
	  position: relative;
	  padding-left: 1.75em;
	  margin-bottom: 0.75em;
	}

	.whyus-list li::before {
	  font-family: "Yedeq";
	  content: "\ea45";
	  position: absolute;
	  left: 0;
	  color: var(--company-secondary-color);
	}

	table.anahtar-deger tbody th {
		width:35%!important;
	}

	.phone-url {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 7px;

		color: #333333;
	}

	.phone-url i {
		font-size: 120%;

		display: flex;
		width: 40px;
		height: 40px;
		align-items: center;
		justify-content: center;
		border-radius: 50%;

		background-color: var(--company-primary-color);
		color: #ffffff;
		transition: 300ms;
	}

	.phone-url:hover i {
		background-color: var(--company-secondary-color);
	}

/* ==================== END CUSTOM ==================== */









/* ==================== START HOME ==================== */

	/* Genel Bölüm Ayarları */
	section {
		padding: 80px 0;
	}
	.bg-light-custom {
		background-color: var(--company-bg-light);
	}
	.section-title {
		color: var(--company-primary-dark);
		font-weight: 700;
		position: relative;
		padding-bottom: 15px;
		margin-bottom: 40px;
	}
	.section-title::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 60px;
		height: 3px;
		background-color: var(--company-secondary-color);
		border-radius: 2px;
	}

	/* Butonlar */
	.btn-custom-primary {
		background-color: var(--company-primary-color);
		color: #fff;
		border: none;
		padding: 10px 25px;
		border-radius: 5px;
		transition: all 0.3s ease;
	}
	.btn-custom-primary:hover {
		background-color: var(--company-primary-dark);
		color: #fff;
	}
	.btn-custom-secondary {
		background-color: var(--company-secondary-color);
		color: #fff;
		border: none;
		padding: 10px 25px;
		border-radius: 5px;
		transition: all 0.3s ease;
	}
	.btn-custom-secondary:hover {
		background-color: #e09216;
		color: #fff;
	}

	/* kartlar (Paketler, Yayınlar, Blog) */
	.custom-card {
		border: none;
		border-radius: 12px;
		box-shadow: 0 5px 20px rgba(120, 81, 169, 0.05);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		background: #fff;
		overflow: hidden;
	}
	.custom-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 30px rgba(120, 81, 169, 0.12);
	}

	/* NEDEN BİZ */
	.why-us-icon {
		width: 50px;
		height: 50px;
		background-color: rgba(120, 81, 169, 0.1);
		color: var(--company-primary-color);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 24px;
		font-weight: bold;
		flex-shrink: 0;
	}

	/* İLERİ ODAK TABS */
	.nav-tabs-custom .nav-link {
		color: var(--company-text-dark);
		border: none;
		border-bottom: 3px solid transparent;
		font-weight: 600;
		padding: 12px 25px;
	}
	.nav-tabs-custom .nav-link.active {
		color: var(--company-primary-color);
		background: transparent;
		border-bottom-color: var(--company-primary-color);
	}
	.nav-tabs-custom .nav-item {
		margin-bottom: -1px;
	}

/* ==================== END HOME ==================== */

















/* START DEBUG */

	.desk-brand a {
		display: inline-block;
		margin: 7px 0;
	}
	.desk-brand img {
		width: 100%;
		max-height: 100px;
	}

	header.scroll-down .desk-brand img {
		max-height: 50px;
	}

	.phone-brand a {
		display: inline-block;
	}
	.phone-brand img {
		width: 100%;
		max-height: 50px;
	}

	.top-bar {
		padding: 5px 0;
		border-bottom: solid 1px #eee;
		text-align: center;
	}

	header.scroll-down .top-bar {
		display: none;
	}

/* END DEBUG */
