@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
	--company-primary-color: #f05a22; /* ef425a */
	--company-secondary-color: #303030; /* 35c5af */
	--company-body-font-family: 'Inter', sans-serif;
	--company-heading-font-family: 'Inter', sans-serif;
	--company-body-font-color: #474747;
	--company-heading-font-color: #222222;
	--company-body-font-weight: 400;
	--company-heading-font-weight: 500;
	--company-body-font-size: 16px;
	--company-body-line-height: 1.6;
}



/* Reset */
[data-animate] {
	opacity: 0;
	visibility: hidden;
}
[data-animate].animate__animated {
	visibility: visible;
	opacity: 1;
}


.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);
	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: 30px;
}
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: 20px;
	}
	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: #303030;
	color: #ffffff;
}
.footer-wrapper a {
	color: #ffffff;
}
.footer-wrapper h2,
.footer-wrapper h3,
.footer-wrapper h4,
.footer-wrapper h5 {
	color: #ffffff;
}
.logo-footer img {
	max-height: 50px;
}

.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);
	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: 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: 220px;
		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 - 120px); /* 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 #ddd;
		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: #f5f5f5;
	}


	/* ===== 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-slider {
		position: relative;
	}

	.hero-slide {
		height: calc(100vh - 74px); /* bkz header */
		height: calc(100dvh - 74px); /* Modern tarayıcılarda Dynamic Viewport Height */
		background-size: cover;
		background-position: center;
		position: relative;
	}

	.hero-overlay {
		position: absolute;
		inset: 0;
		/* background: rgba(0,0,0,.4); */
		display: flex;
		align-items: center;
	}
	.hero-light {
		background-color: rgba(255, 255, 255, 0.5);
	}
	.hero-dark {
		background-color: rgba(0, 0, 0, 0.5);
	}

	.hero-dark .btn {
		color: #ffffff;
	}

	.hero-overlay .container-xl {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 30px;
	}
	/* DEBUG */
	/* .hero-overlay .container-xl > div { border: solid 1px #ff00ff; } */

	.hero-content {
		max-width: 650px;
		opacity: 0;
		transform: translateY(40px);

		display: flex;
		flex-direction: column;
		gap: 30px;
	}
	.hero-image2 {
		opacity: 0;
		transform: translateY(-40px);
	}

	.hero-title {
		font-size: 2.5rem;
		font-weight: 700;
		margin: 0;
		padding: 0;
	}

	.hero-text {
		font-size: 1.1rem;
		margin: 0;
		padding: 10px 0 0 0;
	}

	.hero-title,
	.hero-text {
		color: var(--company-primary-color);
	}

	.hero-light .hero-title,
	.hero-light .hero-text {
		color: #222222;
	}

	.hero-dark .hero-title,
	.hero-dark .hero-text {
		color: #ffffff;
	}

	.hero-content.animate {
		animation: heroFadeUp .7s ease forwards;
	}
	.hero-image2.animate {
		animation: heroFadeDown .7s ease forwards;
	}

	@keyframes heroFadeUp {
		from {
			opacity: 0;
			transform: translateY(40px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	@keyframes heroFadeDown {
		from {
			opacity: 0;
			transform: translateY(-40px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.hero-slider .owl-nav {
		position: absolute;
		width: 100%;
		top: 50%;
		transform: translateY(-50%);
		z-index: 45;

		/* background-color: purple; height: 1px; */
	}

	.hero-slider .owl-nav .owl-prev,
	.hero-slider .owl-nav .owl-next {
		position: absolute;
		top: 0;
		transform: translateY(-50%);
		border: none;
		border-radius: 0px;
		cursor: pointer;
		opacity: 0.90;
	}

	.hero-slider .owl-nav .owl-prev {
		left: 15px;
	}
	.hero-slider .owl-nav .owl-next {
		right: 15px;
	}

	.hero-slider .owl-nav .owl-prev.disabled,
	.hero-slider .owl-nav .owl-next.disabled {
		cursor: default;
		opacity: 0.45;
	}

	.hero-slider .owl-dots {
		position: absolute;
		z-index: 45;
		width: 100%;
		bottom: 30px;
		text-align: center;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 6px;

		/* background-color: purple; */
	}

	.hero-slider .owl-dots .owl-dot {
		opacity: 0.5;
	}

	.hero-slider .owl-dots .owl-dot span {
		display: block;
		width: 16px;
		height: 16px;
		border-radius: 50%;
		border: solid 1px var(--company-primary-color);
		background-color: rgba(255, 255, 255, 0.5);
	}

	.hero-slider .owl-dots .owl-dot.active {
		opacity: 1.0;
	}

	.hero-slider .owl-nav span {
		width: 50px;
		height: 50px;
		line-height: 50px;
		border-radius: 50%;
		text-align: center;
		border: solid 1px var(--company-primary-color);
		background-color: #303030;
		color: #ffffff;
		opacity: 0.7;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.hero-slider .owl-nav span i {
		font-size: 30px;
		line-height: 30px;
	}
	.hero-slider .owl-nav .owl-prev:hover span,
	.hero-slider .owl-nav .owl-next:hover span {
		opacity: 1.0;
	}

	.hero-image2 img {
		max-height: 750px;
	}

	.hero-slider .hero-buttons {
		display: flex;
		flex-wrap: wrap;
		gap: 7px;
	}

	@media (max-width: 991.98px) {

		.hero-content {
			text-align: center;
		}

		.hero-overlay .container-xl {
			flex-direction: column-reverse;
		}

		.hero-image2 img {
			max-height: 450px;
		}

		.hero-title {
			font-size: 1.7rem;
		}

		.hero-text {
			font-size: 0.9rem;
		}

		.hero-slider .owl-nav {
			display: none;
		}

		.hero-slider .hero-buttons {
			display: none;
		}

	} /* 991.98px */

/* ==================== END HERO ==================== */



/* ==================== START ABOUT ==================== */

.about-wrapper {
	background-color: #ffffff;
}

.about-image-wrapper {
	position: relative;
	max-width: 570px;
}
.about-image-wrapper .about-year {
	display: inline-block;
	position: absolute;
	right: 20px;
	bottom: -20px;
	background-color: var(--company-primary-color);
	color: #ffffff;
	margin: 0px!important;
	padding: 10px 15px 20px 15px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	border-radius: 3px;

	/* Alt kenarı açılı yap */
	clip-path: polygon(
		0 0, /* sol üst */
		100% 0, /* sağ üst */
		100% 90%, /* sağ alt (yukarıda) */
		0 100% /* sol alt (aşağıda) */
	);

	text-align: left;
}

.about-year span {
	font-weight: 200;
}

@media (max-width: 768px) {

	.about-image-wrapper .about-year {
		font-size: 16px;
	}

} /* 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: #f7f7f7;
	}

	.infobox-icon span {
		font-size: 1.7rem;
	}

	.infobox-text strong,
	.infobox-text p {
		margin: 0;
		padding: 0;
		color: #333333;
	}

/* ==================== END INFOBOX ==================== */



/* ==================== START SHOWCASE ==================== */

	.showcase .item  {
		display: flex;
		flex-direction: column;
		/* flex-direction: row; */
		gap: 0px; /* 20px */
	}

	.showcase .item h3 {
		margin: 0;
		padding: 10px 0px;
		text-align: center;
		font-size: 1.2rem;
		color: #333333;
		/* border: dotted 1px red; */
		min-height: 75px;
	}

	.showcase .photobox::after {
		content: "";
		display: block;
		position: absolute;
		left: 25%;
		bottom: -1px;
		width: 50%;
		height: 1px;
		background-color: var(--company-primary-color);
	}

	.showcase.showcase .owl-nav {
		display: flex;
		justify-content: center;
		gap: 10px;
	}

	.owl-carousel.showcase .owl-nav button.owl-prev,
	.owl-carousel.showcase .owl-nav button.owl-next {
		display: block;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		border: solid 1px #dddddd;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 160%;
	}

/* ==================== END SHOWCASE ==================== */



/* ==================== START PORTFOLIO ==================== */

	.portfolio-tabs {
		display: flex;
		gap: 20px;
		justify-content: start;
		margin-bottom: 40px;
		flex-wrap: wrap;
	}

	.portfolio-tabs button {
		background: none;
		border: 0;
		font-weight: 500;
		padding: 10px 0;
		position: relative;
	}

	.portfolio-tabs button.active::after {
		content: "";
		position: absolute;
		bottom: -3px;
		left: 0;
		width: 100%;
		height: 1px;
		background: #333;
	}

	.portfolio-slider {
		display: none;
	}

	.portfolio-slider.active {
		display: block;
	}

	.portfolio-slider .owl-carousel .item img {
		width: 100%;
		object-fit: cover;
	}

/* ==================== 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.05);
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		gap: 20px;
		padding: 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: rgba(255, 255, 255, 0.05);
	}

	.contact-icon span {
		font-size: 1.7rem;
		color: var(--company-primary-color);
	}

	.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-primary-color);
	}
	.contact-item:hover span {
		color: #ffffff;
	}

/* ==================== END CONTACT ==================== */









/* ==================== START SHOP ==================== */

	.shop-gallery {
		display: flex;
		gap: 7px; /* Bosluk */
		max-width: 660px;
	}
	.shop-gallery img {
		width: 100%; /* bkz */
	}

	.shop-thumbnail {
		flex-shrink: 0; /* Küçülmesini engeller */
		width: 100px;
	}
	.shop-thumbnail li {
		max-width: 100px;
	}

	.shop-image {
		flex: 1; /* Kalan tüm alanı kaplar */
	}
	.shop-thumbnail ul {
		display: flex;
		flex-direction: column;
		gap: 7px; /* Bosluk */
	}
	.shop-thumbnail li {
		cursor: pointer;
	}
	.shop-thumbnail li.active {
		box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
	}

	/* PNG */
	.shop-png .shop-image,
	.shop-png .shop-thumbnail ul li {
		padding: 7px;
		border: solid 1px #eeeeee;
	}
	/* PNG end */

	/* VERTICAL */
	.shop-gallery.shop-vertical {
		flex-direction: column;
	}
	.shop-vertical .shop-thumbnail {
		width: 100%;
		flex-shrink: 1; /* Varsayılana ayarla */
	}
	.shop-vertical .shop-thumbnail ul {
		flex-direction: row;
	}
	/* VERTICAL end */


	.video-thumbnail {
		position: relative;
	}
	.video-thumbnail::after {
		content: "";
		display: block;
		position: absolute;
		width: 48px;
		height: 48px;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 77;
		background-image: url(../images/video-link.png);
		background-size: cover;
		pointer-events: none;
	}

	@media (max-width: 768px) {

		.shop-gallery {
			gap: 10px;
		}
		.shop-thumbnail {
			width: 60px;
		}
		.shop-thumbnail ul {
			gap: 10px;
		}

		/* PNG */
		.shop-png .shop-image,
		.shop-png .shop-thumbnail ul li {
			padding: 5px;
		}
		/* PNG end */

	} /* 768px */

/* ==================== END SHOP ==================== */









/* ==================== START PRODUCT ==================== */

.product-addon {
	padding-top: 40px;
}

.product-addon .title {
	display: inline-block;
	border-left: solid 1px #eeeeee;
	border-top: solid 1px #eeeeee;
	border-right: solid 1px #eeeeee;
	padding: 10px 20px;
	font-weight: bold;
}

.product-addon .content {
	display: block;
	border: solid 1px #eeeeee;
	border-top-width: 2px;
	padding: 30px 20px;

	min-height: 240px;
}

.product-addon ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.product-addon ul li {
	position: relative;
	padding-left: 30px; /* ikon için boşluk */
	padding-top: 5px;
	padding-bottom: 5px;
}

.product-addon ul li::before {
	content: "\ebd4";
	font-family: 'Yedeq';
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 18px;
	color: var(--company-primary-color);
}

.album a {
	display: block;
	position: relative;
	border: solid 1px #dddddd;
	padding: 7px;
}
.album a:after {
	content: "";
	display: block;
	position: absolute;
	right: 0px;
	top: -1px;
	width: 40%;
	height: 1px;
	background-color: var(--company-primary-color);
	z-index: 7;
}

/* ==================== END PRODUCT ==================== */















/* START DEBUG */

	.desk-brand a {
		display: inline-block;
		margin: 7px 0;
	}
	.desk-brand img {
		width: 100%;
		max-height: 60px;
	}

	header.scroll-down .desk-brand img {
		max-height: 40px;
	}



	.phone-brand a {
		display: inline-block;
	}
	.phone-brand img {
		width: 100%;
		max-height: 40px;
	}



	.top-bar {
		padding: 5px 0;
		border-bottom: solid 1px #eee;
		text-align: center;
	}

	header.scroll-down .top-bar {
		display: none;
	}

/* END DEBUG */























