/*!
Theme Name: Fabay
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fabay
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Fabay is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
- Normalize
- Box sizing
# Base
- Typography
- Elements
- Links
- Forms
## Layouts
# Components
- Navigation
- Posts and pages
- Comments
- Widgets
- Media
- Captions
- Galleries
# plugins
- Jetpack infinite scroll
# Utilities
- Accessibility
- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/* Base Styles */
body {
	font-variant-ligatures: none;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	margin: 0;
	width: 100%;
	background-color: #ffffff;
	line-height: normal;
	position: relative;
	font-weight: 300;
	font-size: 16px;
	font-family: 'Franie', sans-serif;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0 0 15px;
}

.uppercase {
	text-transform: uppercase;
}

.flex {
	display: flex;
}

.align-center {
	align-items: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.wrap {
	flex-wrap: wrap;
}

.column {
	flex-direction: column;
}

.text-center {
	text-align: center;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.none{
	display: none;
}

.sandiego {
	font-family: 'San Diego', sans-serif;
}

.franie {
	font-family: 'Franie', sans-serif;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	margin: 0;
	padding: 0;
}

.btn{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #CC043E;
	border-radius: 20px;
	width: fit-content;
	background-color: #CC043E;
}

.btn span{
	font-size: 12px;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.2px;
	font-family: 'Franie', sans-serif;
	color: #CC043E;
	margin-bottom: 0;
	padding: 13px 32px;
	background-color: #EFEFEF;
	border-radius: 20px;
}

.btn .icon{
	padding: 12px;
	background-color: transparent;
}

.btn .icon img{
	width: 12px;
	height:12px;
}

.container{
	max-width: 1804px;
	margin: 0 auto;
	padding: 0 50px;
}

/* Header */
.main_header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

.main_header .second-logo{
	display:none;
}

.main_header.second-header {
	position: relative;
	border-bottom: 12px solid #EBEBEB;
	margin-bottom:20px;
}

.main_header.second-header .header_box_field{
	padding-top:54px;
	padding-bottom:38px;
}

.main_header.second-header .main-logo{
	display:none;
}

.main_header.second-header .second-logo{
	display:block;
}

.main_header.second-header ul.header_menu li a{
	color:#000000;
}

.header_box_field {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 54px 0;
}

/* 404 Page
------------------------------------------------------------------ */
.error-404 {
	padding: 120px 0 80px;
}

.error-404 .container {
	max-width: 1200px;
}

.error-hero {
	text-align: center;
	margin-bottom: 60px;
}

.error-title {
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 16px;
}

.error-text {
	font-size: 16px;
	max-width: 520px;
	margin: 0 auto 32px;
	color: #666666;
}

.error-home-btn {
	margin: 0 auto;
}

.error-suggested {
	margin-top: 20px;
}

.error-suggested-title {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 30px;
	text-align: left;
}

.error-links-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.error-link-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 74px;
	border-radius: 16px;
	border: 1px solid #EBEBEB;
	background-color: #FAFAFA;
	padding: 16px 18px;
	text-align: center;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.error-link-title {
	font-size: 14px;
	font-weight: 500;
	color: #000000;
}

.error-link-card:hover {
	background-color: #FFFFFF;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}

.header_box {
	display: flex;
	align-items: center;
	gap: 40px;
}

ul.header_menu {
	display: flex;
	align-items: center;
	gap: 50px;
}

ul.header_menu li a{
	font-size: 16px;
	letter-spacing: 0.5px;
	font-weight: 300;
	line-height: 1.2;
	color: #ffffff;
}

.header_box_buttons {
	display: flex;
	align-items: center;
	gap: 50px;
}

.hamburger-btn {
	display: none;
}

/* Masaüstü (992px üstü): mobil menü overlay ve panel hiç görünmesin */
.mobile-menu-overlay,
.mobile-menu-panel {
	display: none;
}

.main_header.second-header .header_box_buttons{
	filter:invert(1);
}

.search-btn img,
.tel-btn img {
	width: 16px;
	height: 16px;
	display: block;
}

.tel-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 14px;
}

/* WPML language switcher (menü içindeki varsayılan öğeyi gizle) */
.header_menu .menu-item-language,
.header_menu .wpml-ls-menu-item {
	display: none;
}

.lang-switcher {
	display: flex;
	align-items: center;
	position: relative;
}

.lang-switcher__button {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 12px;
	color: #ffffff;
	font-size: 12px;
	text-decoration: none;
	cursor: pointer;
}

.lang-switcher__icon {
	width: 10px;
	height: 10px;
}

.lang-switcher__menu {
	position: absolute;
	right: 0;
	top: 100%;
	margin-top: 4px;
	list-style: none;
	background: #ffffff;
	color: #000000;
	border-radius: 8px;
	padding: 4px 0;
	min-width: 80px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
	z-index: 50;
	display: none;
}

.lang-switcher.is-open .lang-switcher__menu {
	display: block;
}

.lang-switcher__item {
	margin: 0;
}

.lang-switcher__link {
	display: block;
	padding: 6px 12px;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
}

.lang-switcher__link:hover {
	background: #f1f1f1;
}

/* Site içi arama popup *//* Site içi arama popup */
.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 11000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.search-modal {
	position: relative;
	width: 100%;
	max-width: 640px;
	background: #ffffff;
	border-radius: 14px;
	padding: 22px 22px 26px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.search-modal-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: #000000;
	margin: 0 0 14px;
	text-align: left;
}

.search-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f3f3f3;
	color: #333333;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.search-modal-close:hover {
	background: #e5e5e5;
	transform: scale(1.03);
}

/* Proje detay popup (Devamını Oku) */
.project-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 11500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.project-modal {
	position: relative;
	width: 100%;
	max-width: 900px;
	background: #ffffff;
	border-radius: 16px;
	padding: 30px 24px 28px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
	max-height: 90vh;
	overflow-y: auto;
}

.project-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333333;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.project-modal-close:hover {
	transform: scale(1.03);
}

.project-modal-inner {
	width: 100%;
}

.project-modal-image {
	margin-bottom: 16px;
	border-radius: 14px;
	overflow: hidden;
}

.project-modal-image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.project-modal-title {
	font-size: 21px;
	font-weight: 400;
	line-height: 1.3;
	color: #000000;
	margin: 0 0 12px;
}

.project-modal-body {
	font-size: 15px;
	line-height: 1.7;
	color: #333333;
}

.project-modal-body > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.project-modal {
		max-width: 100%;
		padding: 40px 20px 15px;
	}

	.project-modal-title {
		font-size: 16px;
		font-weight:400;
	}

	.project-modal-body {
		font-size:13px;
		font-weight:300;
	}
}

body.project-modal-open {
	overflow: hidden;
}

/* Tekil URL: sadece kutu/popup ile kullanılan projeler (project_box_only) — indekslenebilir düzen */
.single-project-box-only {
	padding: 40px 0 64px;
}

.single-project-box-only .container {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}

.single-project-featured {
	max-width: 640px;
	width: 100%;
	margin: 0 auto 36px;
	border-radius: 14px;
	overflow: hidden;
	line-height: 0;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
	height: min(30vh, 300px);
	min-height: 200px;
	max-height: 300px;
}

.single-project-featured__img,
.single-project-featured img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.single-project-box-only .project-modal-body {
	font-size: 16px;
	line-height: 1.75;
	color: #333333;
	padding-top: 4px;
}

.single-project-box-only .project-modal-body > *:first-child {
	margin-top: 0;
}

.single-project-box-only .single-project-back {
	margin: 36px 0 0;
	padding-top: 8px;
	font-size: 15px;
	border-top: 1px solid #ebebeb;
}

.single-project-box-only .single-project-back a {
	color: #333333;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.single-project-box-only .single-project-back a:hover {
	color: #000000;
}

.single-project-box-only .title-section .container {
	padding: 0;
}

@media (max-width: 767px) {
	.single-project-box-only {
		padding: 28px 0 48px;
	}

	.single-project-box-only .container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.single-project-featured {
		margin-bottom: 28px;
		border-radius: 12px;
		max-width: 100%;
		height: min(28vh, 220px);
		min-height: 160px;
		max-height: 220px;
	}

	.single-project-box-only .project-modal-body {
		font-size: 15px;
		line-height: 1.7;
	}
}

.project-excerpt--collapsible {
	max-height: 96px;
	overflow: hidden;
}

.search-modal-form {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.search-modal-input {
	flex: 1;
	border-radius: 10px;
	border: 1px solid #dedede;
	padding: 12px 14px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4;
	font-family: 'Franie', sans-serif;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-modal-input:focus {
	border-color: #CC043E;
	box-shadow: 0 0 0 1px rgba(204, 4, 62, 0.15);
}

.search-modal-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	border-radius: 10px;
	border: 1px solid #CC043E;
	background-color: #CC043E;
	color: #ffffff;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.2px;
	font-family: 'Franie', sans-serif;
	padding: 11px 16px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
	white-space: nowrap;
}

.search-modal-submit .icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-modal-submit .icon img {
	width: 13px;
	height: 13px;
}

.search-modal-submit:hover {
	opacity:0.7;
	transform: translateY(-1px);
}

.search-modal-suggestions {
	margin-top: 8px;
	border-radius: 10px;
	border: 1px solid #dedede;
	background-color: #ffffff;
	max-height: 260px;
	overflow-y: auto;
	padding: 6px 0;
	display: none;
}

.search-modal-suggestions.is-visible {
	display: block;
}

.search-modal-suggestions.is-visible:hover{
	background-color: #f5f5f5;
}

.search-modal-suggestions-empty {
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 300;
	color: #777777;
}

.search-modal-suggestions-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.search-modal-suggestion-item {
	padding: 8px 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.search-modal-suggestion-item:hover {
	background-color: #f5f5f5;
}

.search-modal-suggestion-item a {
	text-decoration: none;
	color: inherit;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.search-modal-suggestion-title {
	font-size: 14px;
	font-weight: 400;
	color: #000000;
	line-height: 1.3;
}

.search-modal-suggestion-meta {
	font-size: 11px;
	font-weight: 300;
	color: #8a8a8a;
	line-height: 1.3;
}

.search-modal-suggestion-thumb {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	border-radius: 6px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.search-modal-suggestion-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.search-modal-suggestions-loading {
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 300;
	color: #777777;
}

body.search-overlay-open {
	overflow: hidden;
}

/* Hero */
.hero {
	position: relative;
	width: 100%;
}

.hero_box {
	width: 100%;
	height: 100%;
	position: relative;
}

.swiper_hero{
	width: 100%;
	height: 100%;
}

.hero .hero_box .hero_item--desktop img, .hero .hero_box .hero_item--desktop video{
	aspect-ratio:1920/757;
	width:100%;
	height:auto;
	object-fit:cover;
}

/* Hero (manset & second-manset) video/görsel karartma - overlay */
.hero .hero_box .hero_item{
	position: relative;
	overflow: hidden;
}

.hero .hero_box .hero_item::before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 100%);
	pointer-events: none;
	z-index: 1;
}

.hero .hero_box .hero_item .hero_media{
	position: relative;
	z-index: 0;
	display: block;
}

.swiper_hero .swiper-slide{
	position: relative;
}

.hero_item--mobile{
	display:none;
}

.swiper_hero .swiper-slide .content{
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, 50%);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #ffffff;
	z-index:1;
}

.swiper_hero .swiper-slide .content > span{
	font-size: 32px;
	letter-spacing: 1.5px;
	font-weight: 300;
	line-height: 1.2;
	font-family: 'Elgraine', sans-serif;
	font-style:italic;
}

.swiper_hero .swiper-slide .content .hero-eyebrow{
	margin-bottom:10px;
}

/* Hero eyebrow (DAHA FAZLA + dönen kelimeler) */
.hero-eyebrow{
	display:inline-flex;
	align-items:center;
	gap:8px;
}

.hero-eyebrow-static{
	display:inline-block;
	font-family: 'Elgraine', sans-serif;
	font-style:italic;
}

.hero-eyebrow-dynamic{
	display:inline-block;
	overflow:hidden;
	font-family: 'Elgraine', sans-serif;
	font-style:italic;
}

.hero-eyebrow-track{
	display:flex;
	flex-direction:column;
	transform:translateY(0);
	text-align:start;
	line-height: 1;
	transition: transform 1s ease;
}

.hero-eyebrow-word{
	display:block;
	padding:15px 0;
}

.swiper_hero .swiper-slide .content p{
	font-family: 'Elgraine', sans-serif;
	font-style: italic;
	font-size: 16px;
	letter-spacing: 0.5px;
	line-height: 1.3;
	margin-bottom: 15px;
}

.mini-icon {
	display: flex;
	align-items: center;
	padding: 10px;
}

.swiper_hero .swiper-slide .content a{
	display: flex;
	align-items: center;
	border: 1.5px solid #ffffff;
	border-radius:20px;
	width: fit-content;
	background-color: #ffffff;
}

.swiper_hero .swiper-slide .content a span{
	color: #ffffff;
	background-color: #9F1A41;
	padding: 13px 32px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.2px;
	font-family: 'Franie', sans-serif;
}

.swiper_hero .swiper-slide .content a img{
	width: 12px;
	height:12px;
}

.hero_box .hero_item{
	height: 100%;
	width: 100%;
}

.hero_box .hero_item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero_pagination {
	position: absolute;
	bottom: 8%;
	left: 10%;
	display: flex;
	align-items: center;
	gap: 15px;
	color: #fff;
	z-index: 2;
}

.hero_pagination_bars {
	display: flex;
	align-items: center;
	gap: 15px;
	max-width: 60vw;
}

.hero_pagination_bar {
	width: 95px;
	height: 3px;
	background: #AAA6A6;
	overflow: hidden;
	cursor: pointer;
	border: none;
	padding: 0;
	display: block;
}

.hero_pagination_bar_inner {
	width: 0;
	height: 100%;
	background: #ffffff;
}

.hero_pagination_counter {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #fff;
}

@keyframes heroPaginationFill {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

.hero_content-section{
	position: relative;
	z-index: 1;
}

.hero_content-section .container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 50px;
}

.hero_content-section_box{
	background: #ffffff;
	text-align: center;
	padding: 25px 30px;
	margin-top: -30px;
	border-radius: 10px;
	position: relative;
}

.hero_content-section_box p{
	font-size: 16px;
	font-weight: 200;
	line-height: 1.7;
	margin-bottom: 20px;
}

.hero_content-box-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.hero_content-box-item .item{
	width: calc(33.333% - 20px);
	background-color: #FDF4F7;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px;
	text-align: center;
}

.hero_content-section_box span{
	font-size: 22px;
	color: #CC043E;
	font-weight: 300;
	line-height: 1.3;
	margin-bottom: 20px;
	font-family: 'San Diego', sans-serif;
	display:block;
}

.absolute_image {
	position: absolute;
	top: -50px;
	right: -50px;
	cursor: pointer;
}

.absolute_image img {
	transition: transform 0.3s ease;
	max-width:110px;
}

.absolute_image.is-scaled img {
	transform: scale(1.1);
}

.project_list-section{
	margin:40px 0;
}

.project_list-section .title-field{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 23px;
	padding: 0 20px;
}

.project_list-section .title-field h2{
	font-size: 21px;
	font-weight: 500;
	line-height: 1.5;
	font-family: 'San Diego', sans-serif;
	color: #000000;
	margin-bottom: 0;
}

.project_list-section .title-field .tab_title-box{
	display: flex;
	align-items: center;
	gap:35px;
}

.project_list-section .title-field .tab_title-box span{
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	font-family: 'San Diego', sans-serif;
	color: #989898;
	cursor: pointer;
}

.project_list-section .title-field .tab_title-box span.active{
	color: #CC043E;
}

.swiper-project .slide-project {
	width: 31%;
}

.wrapper-project {
	padding-bottom: 53px;
}

.project-item{
	background-color: #EFEFEF;
	border-radius: 12px;
	padding: 25px 15px;
}

.project-item .thumbnail{
	margin-bottom: 24px;
	display:block;
}

.project-item .thumbnail img{
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 490 / 324;
}

.project-item .project-top{
	display: flex;
	align-items: start;
	justify-content: space-between;
	margin-bottom: 15px;
	min-height: 44px;
}

.project-item .project-top .ticket{
	align-items: center;
	gap: 3.5px;
}

.project-item .project-top .ticket img{
	width:10px;
	height:10px;
}

.project-item .project-top .ticket span{
	font-size: 10px;
	font-weight: 200;
}

.project-item .project-name{
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.2px;
	line-height: 1.3;
	font-family: 'Franie', sans-serif;
	color: #000000;
	margin-bottom: 0;
}

.project-item .text, .project-item .text p{
	font-size: 12px;
	font-weight: 200;
	letter-spacing: 0.2px;
	line-height: 1.7;
	margin-bottom: 0;
	min-height: 62px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical; 
	overflow: hidden;
}

.project-item a.btn, .project-read-more{
	margin-top: 36px;
}

.project_list-box{
	position: relative;
}

.project-navigation{
	position: absolute;
	right: 50px;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 11px;
	z-index: 2;
}

.project-nav{
	width: 33px;
	height: 33px;
	padding: 0;
	background: transparent;
}

.project-nav img{
	display: block;
	width: 100%;
	height: 100%;
}

.blog_section{
	margin-top:40px;
	margin-bottom: 95px;
}

.blog_section .blog_list-box{
	position: relative;
}

.blog_section .title-field {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.blog_section .title-field h2{
	font-size: 21px;
	font-weight: 500;
	line-height: 1.5;
	font-family: 'San Diego', sans-serif;
	color: #000000;
	margin-bottom: 0;
	text-transform: uppercase;
}

.wrapper-blog{
	padding-bottom: 60px;
}

.blog-navigation{
	position: absolute;
	right: 50px;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 11px;
	z-index: 2;

}

.blog-nav{
	width: 33px;
	height: 33px;
	padding: 0;
	background: transparent;
}

.blog-nav img{
	display: block;
	width: 100%;
	height: 100%;
}

.project_banner-section {
	margin:40px 0;
}

.project_banner-box{
	position: relative;
}

.project_banner-box .content{
	bottom: 100px;
	left: 0;
	z-index: 9;
	color: #ffffff;
	width: 100%;
	padding: 0 50px;
}

.project_banner-box .project_banner-top-content{
	padding-bottom: 26px;
	border-bottom: 1px solid #ffffff;
	margin-bottom: 20px;
}

.project_banner-box .down-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.project_banner-box .down-content .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #FFFFFF;
	border-radius: 20px;
	width: fit-content;
	overflow: hidden;
	background:transparent;
}

.project_banner-box .down-content .btn span{
	font-size: 12px;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.2px;
	font-family: 'Franie', sans-serif;
	color: #FFFFFF;
	margin-bottom: 0;
	padding: 13px 32px;
	border-radius: 20px;
	box-shadow: 0 0 0 33px #FFFFFF;
	background:transparent;
}

.project_banner-box .down-content .btn .icon{
	padding: 12px;
	background-color: #FFFFFF;
}

.project_banner-box .down-content .btn .icon img{
	filter:invert(1);
}

.project_banner-box .down-content .list-items .item{
	display: flex;
	align-items: center;
	gap:6px;
}

.project_banner-box .content .project-logo{
	margin-bottom: 25.5px;
}

.project_banner-box .content .list-items{
	display: flex;
	flex-direction: column;
	gap: 12.5px;
}

.information_section{
	margin:40px 0;
}

.information_section .container{
	max-width: 1340px;
}

.information_section .title-field{
	align-items: start;
	justify-content: space-between;
	margin-bottom: 28px;
	padding: 0 20px;
	gap: 20px;
}

.information_section .title-field h2{
	font-size: 21px;
	font-weight: 500;
	line-height: 1.5;
	font-family: 'San Diego', sans-serif;
	color: #000000;
	margin-bottom: 0;
	max-width: 270px;
	text-transform: uppercase;
}

.information_section .title-field p{
	font-size: 16px;
	font-family: 'Franie', sans-serif;
	font-weight: 200;
	line-height: 1.8;
	letter-spacing: 0.2px;
	color: #000000;
	margin-bottom: 0;
	max-width: 700px;
}

.information-list-box{
	display: flex;
	flex-direction: column;
	gap: 17px;
}

.information-item{
	background-color: #EFEFEF;
	border-radius: 20px;
	padding: 35px 130px;
	cursor: pointer;
}

.information-item h3{
	color: #000000;
	font-family: 'San Diego', sans-serif;
	font-size: 21px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 0;
	text-transform: uppercase;
	margin-bottom: 0;
}

.information-item p{
	color: #818181;
	font-family: 'Franie', sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: 0.2px;
	margin-bottom: 0;
	position: relative;
	max-width: 740px;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	/* Daha sade ve yavaş açılıp kapanma */
	transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
	padding-left: 10px;
	margin-left: -10px;
}

.information-item p:before{
	content: '';
	width: 2px;
	height: 35px;
	background-color: #CC043E;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.information-item .information-icon{
	background-color: #CBCBCB;
	border-radius: 50%;
	width: 66px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 35px;
	top: 50%;
	transform: translateY(-50%) rotate(66deg);
	transition: all 0.3s ease;
}

.information-item .information-icon img{
	width:30px;
	height:30px;
}

.information-item.active{
	background-color: #FCF4F7;
}

.information-item.active .information-icon{
	background-color: #CC043E;
	transform: translateY(-50%) rotate(0deg);
}

.information-item.active h3{
	color: #CC043E;
}

.information-item.active p{
	opacity: 1;
	max-height: 400px; /* İçerik yüksekliğine yetecek kadar bir değer */
	margin-top: 20px;
}

.swiper-blog .slide-blog{
	width: 31%;
}

.blog-item{
	background-color: #EFEFEF;
	border-radius: 12px;
	padding: 24.5px 15px 40px 15px;
}

.blog-item .thumbnail{
	margin-bottom: 25px;
	width: 100%;
}

.blog-item .thumbnail img{
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 474/325;
}

.blog-item .content h3{
	font-size: 16px;
	font-family: 'Franie', sans-serif;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: 0.2px;
	margin-bottom: 0;
	color: #000000;
	margin-bottom: 36px;
	min-height: 55px;
}

.blog-item .content a{
	display: flex;
	align-items: center;
	gap: 7px;
}

.blog-item .content a img{
	width:10px;
	height:10px;
}

.blog-item .content .title a{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-item .content a span{
	color: #D94659;
	text-decoration: underline;
	font-size: 12px;
	font-family: 'Franie', sans-serif;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.2px;
	margin-bottom: 0;
}

.instagram_section{
	margin:40px 0;
}

.instagram_section .container{
	max-width: 1500px;
}

.instagram_section .instagram_box{
	position: relative;
	max-width: 100%;
}

.instagram_section .instagram_box .title-field{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.instagram_section .instagram_box .title-field h2{
	font-size: 21px;
	font-weight: 500;
	line-height: 1.5;
	font-family: 'San Diego', sans-serif;
	color: #000000;
	margin-bottom: 0;
	text-transform: uppercase;
}

.instagram_section .instagram_box .instagram_list-box{
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
}

.instagram-item {
	width: calc(17% - 14px);
}

.footer_content{
	background-color: #CC043E;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 22px;
	padding-bottom: 36px;
}

.footer_content .social_content{
	display: flex;
	align-items: center;
	gap: 9px;
}

.footer_logo{
	margin-bottom: 15px;
}

.social_content{
	margin-bottom: 24px;
}

.footer_menu_list{
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 50px;
	position: relative;
	z-index:9;
}

.footer_menu_list li a{
	font-size: 16px;
	font-family: 'San Diego', sans-serif;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}

.social_item{
	width: 52px;
	height: 52px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social_item img{
	max-width: 25px;
	object-fit: cover;
}

.footer_tel{
	border: 1px solid #ffffff;
	padding: 7px 9px;
	border-radius: 5px;
	font-family: 'San Diego', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin-bottom: 26px;
}

.options_mail{
	display: flex;
	align-items: center;
	gap: 45px;
}

.mail_item span{
	font-size: 16px;
	font-family: 'San Diego', sans-serif;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}

.footer_bottom .container{
	max-width: 1560px;
}

.footer_bottom-list{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 21px;
	padding-bottom: 55px;
	flex-wrap:wrap;
}

.footer_bottom-list li{
	width:33.33%;
	text-align:center;
}

.footer_bottom-list li a{
	font-size: 14px;
	font-weight: 300;
	font-family: 'San Diego', sans-serif;
	color: #6C6C6C;
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}

.breadcrump_section{
	margin-top:-40px;
	position:relative;
	z-index:2;
}

.breadcrump_section .container{
	max-width:960px;
}

.breadcrump_section .breadcrump_box{
	background:#ffffff;
	border-radius:10px;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:25px;
}

.breadcrump_box a, .breadcrump_box span{
	font-size:13px;
	font-weight:200;
	line-height:1.7;
	color:#747474;
	letter-spacing:0.2px;
}

.breadcrump_section .fabay-breadcrumb{
	display:flex;
	align-items:center;
	gap:14px;
}

.second_hero_content-section {
	margin-bottom: 47px;
}

.second_hero_content-box{
	max-width:1050px;
	margin:0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align:center;
}

.second_hero_content-box .title-field{
	margin-bottom:20px;
}

.second_hero_content-box .title-field{
	padding:0 50px;
}

.second_hero_content-box .title-field p{
	font-size:16px;
	font-weight:200;
	color:#000000;
	letter-spacing:0.2px;
	margin-bottom:0;
	line-height:1.7;
}

.second_hero_content-box h3{
	font-size:22px;
	font-weight:300;
	line-height:1.3;
	color:#CC043E;
	margin-bottom:20.5px;
	font-family: 'San Diego', sans-serif;
}

.second_hero_content-box .before_after-box{
	display:flex;
	align-items:center;
	gap:44px;
	margin-bottom:20px;
}

.before_after-box .before_after-item{
	background:#FDF4F7;
	border-radius:10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding:40px 22px;
	min-width:274px;
}

.second_hero_content-box .before_after-box .before_after-item .image_box{
	display:flex;
	align-items:center;
	gap:25px;
	margin-bottom:15px;
}

.before_after-box .before_after-item .item_text{
	font-size:14px;
	font-weight:200;
	line-height:1.5;
	letter-spacing:0.2px;
	color:#000000;
}

.second_hero_content-box .bottom-text{
	font-size:15px;
	font-weight:200;
	line-height:1.5;
	letter-spacing:0.2px;
	margin-bottom:0;
}

.second_hero_content-box .bottom-text strong{
	color:#CC043E;
}

.about_banner-section{
	margin-bottom:40px;
}

.about_banner-section .container{
	max-width:1500px;
}

.about_banner-wrapper {
	display: flex;
	gap: 25px;
	justify-content: space-between;
}

.about_banner-left {
	width: 45%;
}

.about_banner-text p{
	font-size:14px;
	font-weight:200;
	line-height:1.3;
	letter-spacing:0.2px;
}

.about_banner-text p strong{
	font-size:15px;
	font-weight:300;
}

.about_banner-card{
	background:#EFEFEF;
	border-radius:12px;
	width:100%;
	padding:28.5px 40px;
	margin-bottom:23px;
}

ul.about_banner-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.about_banner-card ul li{
	font-size:17px;
	line-height:1.5;
	letter-spacing:0.2px;
	font-weight:300;
	position:relative;
	padding-left:10px;
}

.about_banner-card ul li:before{
	content:"";
	position:absolute;
	width:8px;
	height:8px;
	border-radius:50%;
	background:#555555;
	left:-10px;
	top:8px; 
}

.about_banner-left-image img, .about_banner-image img{
	width:100%;
	height:auto;
	object-fit:cover;
	border-radius:10px;
}

.about_banner-left-image img{
	aspect-ratio: 598 / 239;
}

.about_banner-right-image img{
	aspect-ratio: 719 / 409;
}

.about_banner-right{
	width:50%;
}

.about_banner-image{
	margin-bottom:22px;
}

.about_banner-stats{
	display:flex;
	align-items:center;
	gap:12px;
}

.about_banner-stats .about_banner-stat{
	background:#EFEFEF;
	border-radius:15px;
	width: 25%;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:14px;
	padding:22px;
	text-align:center;
}

.about_banner-stats .about_banner-stat .icon img{
	max-width:75px;
	max-height:75px;
}

.about_banner-stats .about_banner-stat span{
	max-width:120px;
}

.history_section{
	margin-bottom:40px;
}

.history_section .container{
	padding-right: 0;
	max-width: 1780px;
	margin-right: 0;
}

.history_section .title-field{
	margin-bottom:30px;
}

.history_section .title-field h2{
	font-size:21px;
	font-weight:500;
	line-height:1.3;
	margin-bottom:0;
}

.swiper-history{
	position:relative;
	border-bottom:0.3px solid #181D1B;
}

.wrapper-history {
	padding-bottom: 20px;
}

.history-navigation {
	position: absolute;
	right: 40px;
	bottom: 0;
	z-index:9;
	display:flex;
	gap:11px;
	align-items:center;
}

.swiper-history .slide-history {
	width: 300px;
	padding:0 10px;
	border-right:1px solid #707070;
}

.wrapper-history .swiper-slide-active .history_item{
	background:#CC0441;
}

.wrapper-history .swiper-slide-active .years{
	color:#ffffff;
}

.wrapper-history .swiper-slide-active p{
	color:#ffffff;
}

.wrapper-history .swiper-slide-active .years_range{
	opacity:0;
	height:15px;
	margin-bottom:0;
}

.slide-history:first-child {
	padding-left:0;
}

.slide-history:last-child {
	padding-right:0;
	border-right:none;
}

.history_list-box{
	position:relative;
	padding-bottom:50px;

}

.history_list-box .content_field {
	padding-top: 40px;
}

.history_list-box .history_item{
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	gap:10px;
	min-height:410px;
}

.history_list-box .content_field .years{
	font-size:28px;
	font-weight:600;
	line-height:1.3;
	letter-spacing:0.4px;
	margin-left:15px;
	margin-bottom:10px;
	font-family: 'sandiego', sans-serif;
}

.years_range {
	position: relative;
	padding-left: 40px;
	margin-bottom:15px;
}

.years_range:before {
	content: "";
	width: 100%;
	position: absolute;
	height: 0.3px;
	background: #181D1B;
	left: 0;
	z-index: -9;
	top: 10px;
}

.years_range img{
	position: relative;
	background: #ffffff;
	padding: 0 5px;
}

.history_list-box .content_field p{
	font-size:14px;
	font-weight:300;
	line-height:1.3;
	letter-spacing:0.3px;
	margin-bottom:0;
	font-family: 'sandiego', sans-serif;
	padding:0 10px;
}

.history_thumbnail img{
	aspect-ratio:16/9;
	object-fit:cover;
}

.live_more-section{
	position:relative;
	margin-bottom:40px;
}

.live_more-section:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 239px;
	background: #CC043E;
	bottom: 0;
	z-index: -1;
}

.live_more-wrapper {
	display: flex;
	align-items:end;
	max-width: 1480px;
	margin: 0 auto;
	gap:50px;
}

.live_more-wrapper .content{
	display:flex;
	flex-direction:column;
	margin:35px 0;
}

.live_more-wrapper .content h2{
	font-size:19px;
	font-weight:300;
	font-family: 'San Diego', sans-serif;
	color:#ffffff;
	margin-bottom:13px;
	letter-spacing:0.2px;
	display:flex;
	gap:12px;
	align-items:center;
}

.live_more-wrapper .content .icon{
	display:flex;
	align-items:center;
	justify-content:center;
}

.live_more-wrapper .content h2 strong{
	font-size:42px;
	font-weight:bold;
	font-family: 'Snell Roundhand';
}

.live_more-wrapper .content .live_material-box{
	display:flex;
	align-items:center;
	gap:35px;
	color:#ffffff;
}

.live_more-wrapper .content .live_material-box .materiel_item{
	display:flex;
	flex-direction:column;
	gap:7px;
}

.live_more-wrapper .content .live_material-box .materiel_item span{
	font-size:12px;
	letter-spacing:0.5px;
	line-height:1.7;
	font-weight:300;
}

.opacity-icon{
	position:absolute;
	right:0;
	bottom:0;
}

.projects_content-box{
	text-align:center;
	margin-bottom:40px;
}

.projects-breadcrumb {
	margin-bottom: 25px;
}

.projects-breadcrumb a, .projects-breadcrumb span{
	font-size:13px;
	font-weight:200;
	line-height:1.3;
	letter-spacing:0.2px;
	color:#747474;
}

.projects-archive-header h1{
	font-size:17px;
	font-weight:600;
	color:#000000;
	letter-spacing:0.2px;
	line-height:1.7;
	margin-bottom:20px;
}

.projects-archive-description{
	color:#000000;
	font-weight:200;
	line-height:1.7;
	letter-spacing:0.2px;
	max-width:1010px;
	margin:0 auto;
	margin-bottom:15px;
}

.projects-archive-highlight{
	font-size:17px;
	letter-spacing:0.2px;
	line-height:1.7;
	margin-bottom:0;
}

.projects-archive-highlight strong{
	font-weight:300;
}

.projects-archive-filters {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom:25px;
	padding:0 15px;
}

.projects-list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 24px;
	row-gap:24px;
}

.projects-archive .project-item{
	width: calc(50% - 25px);
	background:#EFEFEF;
	border-radius:12px;
	padding:33px;
}

.projects-archive .project-thumb{
	margin-bottom:30px;
	display:block;
}

.projects-archive .project-thumb img{
	width:100%;
	aspect-ratio: 717 / 404;
}

.projects-archive .project-header{
	margin-bottom:20px;
}

.projects-archive .project-location{
	font-size:12px;
	font-weight:200;
	line-height:1.7;
	letter-spacing:0.2px;
	display:flex;
	align-items:center;
	gap:6px;
}

.projects-archive .project-header h2{
	font-size:22px;
	font-weight:300;
	letter-spacing:0.2px;
	margin:0;
	color:#000000;
	line-height:1.3;
}

.projects-archive .project-excerpt{
	font-size:14px;
	font-weight:200;
	letter-spacing:0.2px;
	line-height:1.7;
	margin-bottom:40px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical; 
	overflow: hidden;
	min-height:72px;
}

.projects-archive .projects-list{
	margin-bottom:74px;
}

.blog-archive {
	margin-top: 40px;
}

.search-archive {
	margin-top: 40px;
}

.blog-archive-content-box {
	text-align: center;
	margin-bottom: 40px;
}

.search-archive-content-box {
	text-align: center;
	margin-bottom: 40px;
}

.blog-archive-breadcrumb {
	margin-bottom: 25px;
}

.search-archive-breadcrumb {
	margin-bottom: 25px;
}

.blog-archive-breadcrumb a,
.blog-archive-breadcrumb span {
	font-size: 13px;
	font-weight: 200;
	line-height: 1.3;
	letter-spacing: 0.2px;
	color: #747474;
}

.search-archive-breadcrumb a,
.search-archive-breadcrumb span {
	font-size: 13px;
	font-weight: 200;
	line-height: 1.3;
	letter-spacing: 0.2px;
	color: #747474;
}

.blog-archive-header h1,
.blog-archive-title {
	font-size: 17px;
	font-weight: 600;
	color: #000000;
	letter-spacing: 0.2px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.search-archive-header h1,
.search-archive-title {
	font-size: 17px;
	font-weight: 600;
	color: #000000;
	letter-spacing: 0.2px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.blog-archive-description {
	color: #000000;
	font-weight: 200;
	line-height: 1.7;
	letter-spacing: 0.2px;
	max-width: 1010px;
	margin: 0 auto;
	margin-bottom: 15px;
}

.search-archive-description {
	color: #000000;
	font-weight: 200;
	line-height: 1.7;
	letter-spacing: 0.2px;
	max-width: 1010px;
	margin: 0 auto;
	margin-bottom: 15px;
}

.blog-archive-list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 24px;
}

.search-results-grid {
	display: flex;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 24px;
	margin-bottom:20px;
}

.search-no-results-message{
	text-align:center;
	font-family: 'San Diego', sans-serif;
	margin-bottom:40px;
}

.blog-archive-item {
	width: calc(33% - 10px);
	background: #EFEFEF;
	border-radius: 12px;
	padding: 25px 15px;
}

.search-result-card {
	width: calc(33% - 10px);
	background: #EFEFEF;
	border-radius: 12px;
	padding: 25px 15px;
}

.blog-archive-thumb {
	margin-bottom: 25px;
}

.search-result-thumb {
	margin-bottom: 25px;
}

.blog-archive-thumb img {
	width: 100%;
	aspect-ratio: 489 / 325;
	object-fit: cover;
}

.search-result-thumb img {
	width: 100%;
	aspect-ratio: 489 / 325;
	object-fit: cover;
}

.blog-archive-header-inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}

.search-result-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}

.blog-archive-item-title {
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.2px;
	margin-bottom: 20px;
	color: #000000;
	line-height: 1.3;
	min-height:40px;
}

.search-result-title {
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.2px;
	margin-bottom: 20px;
	color: #000000;
	line-height: 1.3;
	min-height:40px;
}

.blog-archive-item-title a {
	text-decoration: none;
	color: inherit;
}

.search-result-title a {
	text-decoration: none;
	color: inherit;
}

.search-result-excerpt {
	font-size: 14px;
	font-weight: 200;
	letter-spacing: 0.2px;
	line-height: 1.7;
	margin-bottom: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 72px;
}

.search-result-actions .btn {
	margin-top: 0;
}

.search-pagination {
	display: flex;
	justify-content: center;
	margin: 40px 0 80px;
}

/* Search results: extra pages section */
.search-archive .search-extra-section {
	margin: 40px 0;
}

.search-extra-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.2px;
	color: #000000;
	margin-bottom: 20px;
	text-align: left;
}

.search-extra-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.search-extra-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	border-radius: 10px;
	background-color: #EFEFEF;
	color: #000000;
	min-width: 220px;
	flex: 0 1 calc(33.33% - 10px);
	text-decoration: none;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0.2px;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

.search-extra-card:hover {
	background-color: #e1e1e1;
	transform: translateY(-1px);
}

.search-extra-arrow {
	font-size: 16px;
	color: #CC043E;
	margin-left: 8px;
}

.blog-archive-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12px;
	font-weight: 200;
	line-height: 1.7;
	letter-spacing: 0.2px;
	color: #818181;
}

.blog-archive-excerpt {
	font-size: 14px;
	font-weight: 200;
	letter-spacing: 0.2px;
	line-height: 1.7;
	margin-bottom: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 72px;
}

.blog-archive-actions .btn {
	margin-top: 0;
}

/* Blog liste sayfası pagination */
.blog-pagination {
	display: flex;
	justify-content: center;
	margin: 40px 0 80px;
}

.blog-pagination .navigation.pagination {
	display: inline-block;
}

.blog-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 6px;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 300;
	font-family: 'Franie', sans-serif;
	color: #6C6C6C;
	border: 1px solid transparent;
	background-color: transparent;
}

.blog-pagination .page-numbers:hover {
	border-color: #CC043E;
	color: #CC043E;
}

.blog-pagination .page-numbers.current {
	background-color: #CC043E;
	color: #ffffff;
	border-color: #CC043E;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
	padding: 0;
	min-width: 32px;
}

.blog-pagination .pagination-arrow-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid #CC043E;
	background-color: #ffffff;
}

.blog-pagination .pagination-arrow-icon img {
	width: 14px;
	height: 14px;
	display: block;
}

.projects-filter-status {
	display: flex;
	align-items: center;
	gap: 25px;
}

.projects-filter-status button{
	padding:7px 18px;
	color:#989898;
	border:1px solid #989898;
	border-radius:12px;
	font-size:16px;
	font-weight:300;
	line-height:1.5;
	font-family: 'San Diego', sans-serif;
}

.projects-filter-status button.is-active{
	color:#CC043E;
	border-color:#CC043E;
}

.projects-filter-select {
	padding: 7px 44px 7px 20px;
	border:1px solid #989898;
	font-family: 'San Diego', sans-serif;
	border-radius:12px;
	color:#989898;
	cursor:pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url('assets/img/select-arrow.svg');
	background-repeat: no-repeat;
	background-position: right 20px center; /* oku sağdan 20px içeri alır */
	background-size: 10px auto;
}

.project_detail-hero{
	position:relative;
}

.project_detail-hero .image-box img{
	object-fit:cover;
	aspect-ratio:1920/757;
}

.project_detail-hero .project_hero-media--desktop video{
	object-fit:cover;
	aspect-ratio:1920/757;
	width:100%;
}

.project_detail-hero .project_hero-media--mobile{
	display:none;
}

.project_detail-hero .content_field{
	position:absolute;
	bottom:10%;
	width:100%;
	z-index:9;
}

.project_detail-hero .content_field .logo{
	margin-bottom:25px;
}

.project_detail-hero .content_field .logo img{
	max-width:150px;
}

.project_detail-hero .content_field-hero{
	padding-bottom:26px;
	border-bottom:1px solid #ffffff;
	margin-bottom:20px;
}

.project_detail-hero .content_field span{
	font-size:16px;
	color:#ffffff;
	font-weight:300;
	line-height:1.3;
	letter-spacing:0.2px;
}

.project_detail-hero .add_materiel-box{
	color:#ffffff;
	display:flex;
	flex-direction:column;
	gap:10px;
}

.project_detail-hero .add_materiel-box .mateiel-item{
	display:flex;
	align-items:center;
	gap:7px;
}

.project_detail-hero .materiel_text{
	font-size:14px;
	font-weight:200;
	letter-spacing:0.4px;
	line-height:1.7;
}

.project_info-box {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.project_info-box .head_content{
	margin-bottom:22px;
}

.project_info-box .head_content span{
	font-size:22px;
	color:#CC043E;
	font-family: 'San Diego', sans-serif;
	line-height:1.3;
	font-weight:300;
	margin-bottom:20px;
	display:inline-block;
}

.project_info-box .head_content .desc p{
	font-size:16px;
	font-weight:200;
	color:#000000;
	margin:0;
	max-width:830px;
	margin:0 auto;
}

.project_info-box .bottom_content {
	display: flex;
	align-items: center;
	gap: 30px;
}

.project_info-box .bottom_content .info_materiel-box{
	display:flex;
	align-items:center;
	gap:15px;
	flex-wrap:wrap;
	width:50%;
}

.project_info-box .bottom_content .info_materiel-item{
	background:#FDF4F7;
	border-radius:10px;
	padding:22px 17px;
	display:flex;
	flex-direction:column;
	gap:6px;
	align-items:center;
	width:calc(33% - 10px);
}

.project_info-box .bottom_content .info_materiel-item img{
	max-width:40px;
}

.project_info-box .text_box {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.project_info-box .text_box .info{
	color:#CC043E;
	font-size:18px;
	font-weight:200;
	letter-spacing:0.2px;
}

.project_info-box .text_box .info_name{
	font-size:12px;
	letter-spacing:0.2px;
}

.project_info-box .bottom_text{
	width:50%;
}

.project_info-box .bottom_text p{
	margin:0;
	font-weight:200;
	font-size:16px;
	line-height:1.7;
	letter-spacing:0.2px;
	text-align:start;
}

.project_detail_tabs-section{
	margin:40px 0;
}

.project_detail_tabs-title{
	font-size:17px;
	font-weight:600;
	line-height:1.3;
	letter-spacing:0.2px;
	margin-bottom:20px;
	text-align:center;
}

.project_detail_tabs-section .tab-menu-box {
	display: flex;
	align-items: center;
	gap: 17px;
	justify-content: center;
	margin-bottom:35px;
}

.project_detail_tabs-section .inner-tab-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom:30px;
}

.project_detail_tabs-section .tab-menu-box .tab-menu-item{
	background:#6E6E6E;
	border-color:#6E6E6E;
}

.project_detail_tabs-section .tab-menu-box .tab-menu-item span{
	color:#6E6E6E;
}

.project_detail_tabs-section .tab-menu-box .tab-menu-item.is-active{
	background:#CC043E;
	border-color:#CC043E;
}

.project_detail_tabs-section .tab-menu-box .tab-menu-item.is-active span{
	color:CC043E;
}

.project_detail_tabs-section .tab-menu-box .tab-menu-item .icon{
	opacity:0;
}

.tab-layout-main-image-with-thumbs, .project_detail_tabs-box .inner-tab-panels, .inner-tab-panel .inner-tab-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	max-width: 1460px;
	margin: 0 auto;
}

.tab-layout-top, .inner-tab-panel .inner-tab-item .inner-tab-top {
	display: flex;
	flex-direction: column;
	gap: 25px;
	width:45%;
}

.tab-layout-top .main-image, .inner-tab-panel .inner-tab-item .inner-tab-top .main-image {
	padding: 22px 24px;
	background: #EFEFEF;
	border-radius:12px;
}

.tab-layout-top .main-image img, .inner-tab-panel .inner-tab-item .inner-tab-top .main-image img{
	width:100%;
	height:auto;
	object-fit:cover;
	aspect-ratio: 606 / 418;
	transition:all 0.3s ease-in;
}

.tab-layout-top .thumb-row, .inner-tab-panel .inner-tab-item .inner-tab-top .thumb-row{
	display:flex;
	align-items:center;
	gap:35px;
	justify-content:space-between;
	padding:0 10px;
}

.tab-layout-top .thumb-row img, .inner-tab-panel .inner-tab-item .inner-tab-top .thumb-row img{
	width:100%;
	height:auto;
	object-fit:cover;
	aspect-ratio:99/50;
	transition:all 0.3s ease-in;
}

.tab-layout-main-image-with-thumbs .text-side, .inner-tab-panel .inner-tab-item .text-side{
	width:50%;
}

.tab-layout-main-image-with-thumbs .text-side .layout-title , .inner-tab-panel .inner-tab-item .text-side .layout-title{
	font-size:26px;
	color:#969696;
	font-weight:500;
	line-height:1.3;
	letter-spacing:0.2px;
	font-family: 'San Diego', sans-serif;
	margin-bottom:22px;
}

.tab-layout-main-image-with-thumbs .text-side .layout-desc, .inner-tab-panel .inner-tab-item .text-side .layout-desc{
	font-size:16px;
	font-weight:200;
	color:#000000;
	letter-spacing:0.2px;
	line-height:1.7;
	margin-bottom:25px;
}

.tab-layout-main-image-with-thumbs .text-side .layout-note{
	font-size:14px;
	font-style:italic;
	color:#959595;
	letter-spacing:0.2px;
	line-height:1.7;
	margin:0;
}

.project_detail_tabs-section .inner-tab-menu-item{
	padding: 7px 30px;
	border: 1px solid #989898;
	color: #989898;
	border-radius: 5px;
}

.project_detail_tabs-section .inner-tab-menu-item.is-active{
	border-color:#CC043E;
	color:#CC043E;
}

.project_detail_tabs-section .gallery-grid{
	display: flex;
	flex-wrap: wrap;
	column-gap: 6.5px;
	row-gap: 9px;
}

.project_detail_tabs-section .gallery-grid .gallery-item{
	padding: 16px 18px;
	background: #EFEFEF;
	border-radius: 12px;
	width:calc(33.33% - 5px);
}

.project_detail_tabs-section .gallery-grid .gallery-item a{
	display: block;
	text-decoration: none;
	color: inherit;
	outline: none;
}

.project_detail_tabs-section .gallery-grid .gallery-item a:focus-visible{
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.project_detail_tabs-section .gallery-grid .gallery-item img{
	width:100%;
	height:auto;
	object-fit:cover;
	aspect-ratio: 466 / 321;
	transition:all 0.3s ease-in;
}

.project_detail_tabs-section .gallery-grid .gallery-item img:hover{
	scale:1.1;
	border-radius:12px;
}

.tab-layout-location-info-map{
	max-width: 1270px;
	margin: 0 auto;
}

.project_detail_tabs-section .location-top{
	display:flex;
	align-items:center;
	gap:30px;
	justify-content:space-between;
	margin-bottom:40px;
	padding:0 30px;
}

.project_detail_tabs-section .location-top .project-title{
	color:#000000;
	font-size:18px;
	font-weight:300;
	line-height:1.3;
	letter-spacing:0.2px;
	margin-bottom:25px;
}

.project_detail_tabs-section .location-top .location-phone{
	display:flex;
	align-items:center;
	gap:12px;
	padding-bottom:25px;
	border-bottom:0.5px solid #707070;
	margin-bottom:25px;
}

.project_detail_tabs-section .location-top .location-phone img{
	width:21px;
	height:21px;
}

.project_detail_tabs-section .location-top .location-phone .phone-link{
	font-weight:200;
	line-height:1.3;
	font-size:16px;
	letter-spacing:0.2px;
}

.project_detail_tabs-section .location-top .location-name{
	font-size:18px;
	font-weight:300;
	letter-spacing:0.2px;
	line-height:1.3;
	margin-bottom:22px;
}

.project_detail_tabs-section .location-top .location-address{
	display:flex;
	align-items:start;
	gap:12px;
	margin-bottom:25px;
}

.project_detail_tabs-section .location-top .location-address img{
	width:20px;
	height:25px;
}

.project_detail_tabs-section .location-top .location-address .location-desc{
	font-size:16px;
	font-weight:200;
	line-height:1.3;
	letter-spacing:0.2px;
}

.project_detail_tabs-section .location-top .location-image {
	width: 45%;
}

.project_detail_tabs-section .location-top .location-image img{
	border-radius:13px;
	aspect-ratio:567/378;
	object-fit:cover;
	width:100%;
}

.project_detail_tabs-section .location-top .location-action-link span{
	background:#ffffff;
}

.tab-layout-two-images {
	display: flex;
	align-items: center;
	gap: 22.5px;
	width: 100%;
}

.tab-layout-two-images > div{
	width:50%;
}

.tab-layout-two-images > div img{
	width:100%;
	height:auto;
	object-fit:cover;
	aspect-ratio: 3 / 2;
	transition:all 0.3s ease-in;
}

.tab-layout-two-images > div img:hover{
	scale:1.05;
}

.project_detail-location{
	margin-bottom:58px;
}

.project_detail-location .project_location-box{
	display:flex;
	align-items:end;
	position:relative;
	color:#ffffff;
	gap:30px;
}

.project_detail-location .project_location-box:before{
	content:"";
	background:#CC043E;
	width:100%;
	height:75%;
	left:0;
	bottom:0;
	position:absolute;
	z-index:-1;
}

.project_detail-location .content{
	max-width:640px;
	padding:30px 20px;
}

.project_detail-location .content h3{
	font-size:17px;
	font-weight:600;
	line-height:1.3;
	letter-spacing:0.2px;
	margin-bottom:21px;
}

.project_detail-location .content p{
	margin-bottom:0;
	font-size:18px;
	font-family: 'San Diego', sans-serif;
	font-weight:200;
	line-height:1.3;
	letter-spacing:0.2px;
}

.contact_hero-box {
	position: relative;
}

.contact_hero-box .image_box img{
	aspect-ratio:1920/757;
	width:100%;
	height:auto;
	object-fit:cover;
}

/* Contact hero: desktop/mobil media ve overlay */
.contact_hero-box .contact_hero-media{
	position: relative;
	overflow: hidden;
}

.contact_hero-box .contact_hero-media::before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.20) 100%);
	pointer-events: none;
	z-index: 1;
}

.contact_hero-box .contact_hero-video,
.contact_hero-box .contact_hero-image{
	position: relative;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact_hero-box .contact_hero-media--desktop{
	display: block;
}

.contact_hero-box .contact_hero-media--mobile{
	display: none;
}

.contact_hero-box .content{
	position:absolute;
	right:10%;
	bottom:10%;
	color:#ffffff;
	z-index:1;
}

.contact_hero-box .content h3{
	font-size:33px;
	font-weight:200;
	line-height:1.3;
	letter-spacing:0.2px;
	margin:0;
	display:flex;
	align-items:center;
	gap:10px;
	font-family: 'Elgraine', sans-serif;
}

.contact_hero-box .content h3 strong{
	font-weight:300;
	font-size:80px;
	line-height:1.2;
	letter-spacing:0.2px;
	font-family: 'Snell Roundhand';
}

.contact_form-section{
	margin:40px 0;
}

.contact_form-section .container, .contact_page_location-section .container{
	max-width:1696px;
}

.contact_form-section .title-field{
	margin-bottom:20px;
}

.contact_form-section .title-field h1{
	font-size:17px;
	font-weight:600;
	line-height:1.3;
	letter-spacing:0.2px;
	margin:0;
}

.contact_form-box{
	background:#EFEFEF;
	border-radius:10px;
	padding:50px;
}

.form_text-field{
	display:flex;
	flex-direction:column;
	gap:22px;
	margin-bottom:22px;
}

.form_text-field h3{
	margin:0;
	color:#CC043E;
	font-size:22px;
	font-weight:300;
	line-height:1.3;
	font-family: 'San Diego', sans-serif;
}

.form_text-field p{
	margin:0;
	font-size:16px;
	font-weight:200;
	line-height:1.3;
	letter-spacing:0.2px;
	color:#000000;
}

.contact_form-box form .form-row-two-columns{
	display:flex;
	align-items:center;
	gap:30px;
	margin-bottom:7px;
}

.form-group.form-group-half{
	width:50%;
}

.contact_form-box form .form-row p{
	margin:0;
}

.contact_form-box form input:not([type="checkbox"]),
.contact_form-box form textarea{
	background:#FFFFFF;
	border-radius:5px;
	padding:19px 40px;
	border:none;
	width:100%;
	font-family: 'Franie', sans-serif;
}

.contact_form-box form textarea{
	margin-bottom:12.5px;
}

.form-kvkk{
	margin-bottom:12.5px;
}

.form-kvkk a{
	color:#0E73A8;
	text-decoration:underline;
}

.form-kvkk p, .form-checkbox-wrapper p{
	font-size:13px;
	font-weight:200;
	line-height:1.3;
	letter-spacing:0.2px;
	margin:0;
}

.form-checkbox-wrapper span{
	margin:0;
}

.form-checkbox-wrapper label{
	display:flex;
	align-items:center;
	gap:9px;
}

.form-btn{
	margin-top:40px;
}

.form-btn p{
	margin:0;
	display:flex;
	justify-content:center;
}

.contact_form-box form input[type="submit"] {
	background-color: #CC043E;
	color: #fff;
	cursor: pointer;
	border-radius:12px;
	max-width:250px;
	transition:all 0.3s ease-in;
}

.contact_form-box form input[type="submit"]:hover {
	background-color: #ffffff;
	color: #CC043E;
}

.contact_page_location-section{
	margin:40px 0;
}

.contact_page_location-section .title-field{
	margin-bottom:35px;
}

.contact_page_location-section .title-field h3{
	margin:0;
	font-size:17px;
	font-weight:600;
	line-height:1.3;
	letter-spacing:0.2px;
}

.contact_page_location-box .inner-tab-menu .inner-tab-menu-item{
	background:#6E6E6E;
	border-color:#6E6E6E;
}

.contact_page_location-box .inner-tab-menu .inner-tab-menu-item .icon{
	opacity:0;
}

.contact_page_location-box .inner-tab-menu .inner-tab-menu-item span{
	color:#6E6E6E;
}

.contact_page_location-box .inner-tab-menu .inner-tab-menu-item.is-active{
	background:#CC043E;
	border-color:#CC043E;
}

.contact_page_location-box .inner-tab-menu .inner-tab-menu-item.is-active span{
	color:#CC043E;
}

.contact_page_location-box .inner-tab-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom:35px;
}

.contact_page_location-box .iframe-field {
	margin-top: 50px;
}

.contact_page_location-box .tab-panel-inner .top_box{
	display:flex;
}

.contact_page_location-box .tab-panel-inner .top_box > div{
	width:50%;
}

.contact_page_location-box .tab-panel-inner .top_box .left_box{
	width:45%;
}

.contact_page_location-box .tab-panel-inner .top_box .right_box{
	width:55%;
}

.contact_page_location-box .tab-panel-inner .right_box-bottom{
	display:flex;
	align-items:center;
	gap:40px;
}

.contact_page_location-box .tel-number, .contact_page_location-box .adress_item{
	display:flex;
	align-items:center;
	gap:14px;
}

/* Sticky side buttons (Sizi Arayalım + Bilgi Formu) */
.sticky-side-buttons {
	position: fixed;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	pointer-events: none;
}
.sticky-side-buttons .sticky-btn {
	pointer-events: auto;
}
.sticky-btn {
	display: flex;
	flex-direction:column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 20px 8px;
	border: none;
	border-radius:5px;
	cursor: pointer;
	font-family: 'San Diego', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	transition: transform 0.2s ease;
}
.sticky-btn:hover {
	transform: translateX(-4px);
}

.sticky-btn-call {
	background-color: #e26372;
}
.sticky-btn-form {
	background-color: #c6354f;
}
.sticky-btn-text {
	writing-mode: vertical-lr;
	text-orientation: mixed;
	letter-spacing: 0.5px;
	white-space: nowrap;
}
.sticky-btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.sticky-btn-icon img{
	width: 12px;
	height: 12px;
	display: block;
}
/* Sizi Arayalım: sağdan sürüklenen form kutusu (butonların üstünde) */
.sticky-call-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}
.sticky-call-overlay.is-open {
	opacity: 1;
	visibility: visible;
}
/* Form kutusu: butonlarla aynı 24px kanalda, sağdan sürüklenir */
.sticky-call-form-box {
	position: fixed;
	top: 50%;
	right: 0;
	width: 100%;
	max-width: 350px;
	height: auto;
	z-index: 10001;
	background: #fff;
	border-radius:10px;
	transform: translateX(100%) translateY(-50%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.sticky-call-form-box.is-open {
	transform: translateX(-15px) translateY(-50%);
}
.sticky-call-form-header {
	background: #CC043E;
	color: #fff;
	height:33px;
	position: relative;
}
.sticky-call-form-title {
	margin: 0;
	font-size: 17px;
	font-weight: 500;
	color:#CC043E;
	line-height:1.4;
	text-transform: uppercase;
	margin-bottom:9px;
}
.sticky-call-form-close {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 12.5px;
	height: 12.5px;
	padding: 0;
	border: none;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sticky-call-form-body {
	overflow-y: auto;
	padding: 20px;
}
.sticky-call-form .form-group {
	margin: 0 0 18px;
}
.sticky-call-form .form-group label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
.sticky-call-form input[type="text"],
.sticky-call-form input[type="email"],
.sticky-call-form input[type="tel"],
.sticky-call-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #e8d9d0;
	border-radius: 10px;
	background: #f8f0eb;
	font-family: inherit;
	font-size: 15px;
	color: #333;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.sticky-call-form input::placeholder,
.sticky-call-form textarea::placeholder {
	color: #999;
}
.sticky-call-form input:focus,
.sticky-call-form textarea:focus {
	outline: none;
	border-color: #c6354f;
	background: #fff;
}
.sticky-call-phone-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}
.sticky-call-phone-flag {
	font-size: 20px;
	line-height: 1;
}
.sticky-call-phone-wrap input {
	flex: 1;
}
.sticky-call-form .form-group-checkbox {
	margin-bottom: 24px;
}
.sticky-call-form .form-group-checkbox .checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 400;
	color: #555;
	line-height: 1.45;
}
.sticky-call-form .form-group-checkbox input[type="checkbox"] {
	width: auto;
	margin-top: 3px;
	flex-shrink: 0;
}
.sticky-call-form-submit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0;
	border: none;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	background: transparent;
	font-family: inherit;
	text-align: left;
}
.sticky-call-submit-text {
	background: #f8f0eb;
	color: #333;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 600;
}
.sticky-call-submit-arrow {
	background: #c6354f;
	color: #fff;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}
.sticky-call-form-submit:hover .sticky-call-submit-arrow {
	background: #a02b42;
}
.sticky-call-form-submit:focus {
	outline: 2px solid #c6354f;
	outline-offset: 2px;
}
body.sticky-call-form-open {
	overflow: hidden;
}

.sticky-call-cf7-wrapper .sticky-call-cf7-row input, .sticky-call-cf7-wrapper .sticky-call-cf7-row textarea{
	width:100%;
}

.sticky-call-cf7-wrapper p{
	margin-bottom:5px;
}
.sticky-call-cf7-wrapper p input:not([type="checkbox"]), .sticky-call-cf7-wrapper p textarea{
	font-family: 'Franie', sans-serif;
	font-size:12px;
	line-height:1.3;
	letter-spacing:0.2px;
	padding:11px 15px;
	background:#F0D6DD;
	border-radius:5px;
	border:none;
}
.sticky-call-cf7-wrapper p textarea{
	height:37px;
}
.sticky-call-cf7-wrapper p input:not([type="checkbox"])::placeholder, .sticky-call-cf7-wrapper p textarea::placeholder{
	font-weight:300;
	color:#000000;
}
/* Sadece sticky form içindeki CF7 checkbox */
.sticky-call-form-body .sticky-call-cf7-wrapper .wpcf7-list-item {
	margin: 0;
}
.sticky-call-form-body .sticky-call-cf7-wrapper .wpcf7-list-item-label {
	font-size: 7px;
	font-weight: 300;
	letter-spacing: 0.3px;
	line-height: 1.4;
	color: #555;
	display: block;
	margin-left: 0;
	padding-left: 0;
}
.sticky-call-form-body .sticky-call-cf7-wrapper .wpcf7-list-item.first {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.sticky-call-form-body .sticky-call-cf7-wrapper .wpcf7-list-item.first label {
	display: block;
	cursor: pointer;
}
.sticky-call-form-body .sticky-call-cf7-wrapper .wpcf7-list-item.first input {
	margin: 0;
	float: none;
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	min-width: 10px;
	min-height: 10px;
	border: 0.5px solid #CC043E;
	border-radius: 1px;
	appearance: none;
	-webkit-appearance: none;
	background: #fff;
	cursor: pointer;
	vertical-align: top;
	transition: background 0.2s ease, border-color 0.2s ease;
	float:left;
	margin-right:6px;
}
.sticky-call-form-body .sticky-call-cf7-wrapper .wpcf7-list-item.first input:checked {
	background: #c6354f;
	border-color: #c6354f;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 6px 6px;
	background-position: center;
	background-repeat: no-repeat;
}
.sticky-call-form-body .sticky-call-cf7-wrapper .wpcf7-list-item.first input:focus {
	outline: 2px solid #c6354f;
	outline-offset: 2px;
}

.wpcf7-not-valid-tip{
	font-size:10px;
	font-weight:200;
	margin:5px 0
}

/* Gönder butonu – archive-project .btn flex ile aynı görünüm (sol: metin, sağ: kırmızı + ok) */
.sticky-call-form-body .btn.sticky-call-cf7-btn {
	display: flex;
	align-items: stretch;
	border: 1px solid #CC043E;
	border-radius: 20px;
	background-color: #CC043E;
	overflow: hidden;
	margin-top: 20px;
	position:relative;
}
.sticky-call-form-body .btn.sticky-call-cf7-btn p {
	margin: 0;
	display: flex;
	min-width: 0;
}
.sticky-call-form-body .btn.sticky-call-cf7-btn input[type="submit"] {
	width: 100%;
	padding: 10px 20px;
	margin: 0;
	border: none;
	border-radius:20px;
	background-color: #EFEFEF;
	color: #CC043E;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.2px;
	font-family: 'Franie', sans-serif;
	text-align: center;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.sticky-call-form-body .btn.sticky-call-cf7-btn input[type="submit"]:hover {
	background-color: #e5e5e5;
}
.sticky-call-form-body .btn.sticky-call-cf7-btn input[type="submit"]:focus {
	outline: 2px solid #CC043E;
	outline-offset: 2px;
}
.sticky-call-form-body .btn.sticky-call-cf7-btn::after {
	content: "";
	flex-shrink: 0;
	width: 30px;
	background: #CC043E url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") no-repeat center;
	background-size: 12px;
}

.sticky-call-form-body .wpcf7-spinner{
	display:none;
}

.tab-menu-select-wrapper{
	display:none;
}

.blog-detail-section .container{
	max-width:1514px;
}

.blog-single .breadcrump_section, .policy-page .breadcrump_section{
	margin:0;
}
.blog-single .breadcrump_section .breadcrump_box, .policy-page .breadcrump_section .breadcrump_box{
	padding:0;
	margin-bottom:45px;
}

.blog-detail-title{
	font-size:19px;
	font-weight:600;
	line-height:1.3;
	letter-spacing:0.2px;
	margin-bottom:25px;
	text-align:center;
}

.blog_detail_head-field{
	display:flex;
	align-items:center;
	gap:30px;
	float:left;
	width:50%;
}

.blog-detail-thumb{
	width:100%;
	margin-bottom:50px;
	margin-right:50px;
}

.blog-detail-thumb img{
	width: 100%;
	object-fit: cover;
	height: auto;
	aspect-ratio: 474 / 325;
}

.blog-detail-short-description{
	width:45%;
	display:none;
}

.blog-detail-short-description p{
	font-size:16px;
	font-weight:200;
	line-height:1.3;
	letter-spacing:0.2px;
	margin-bottom:0;
}

.blog-detail-content h2{
	font-size:19px;
	font-weight:600;
	letter-spacing:0.2px;
	line-height:1.3;
	margin-bottom:32px;
}

.blog-detail-content h3{
	font-size:17px;
	font-weight:600;
	letter-spacing:0.2px;
	line-height:1.3;
	margin-bottom:30px;
}

.blog-detail-content h3 strong, .blog-detail-content h2 strong{
	font-weight:500;
}

.blog-detail-content h3 , .blog-detail-content h2{
	text-transform:capitalize;
	font-weight:500;
}

.blog-detail-content p{
	font-size:16px;
	font-weight:200;
	line-height:1.3;
	letter-spacing:0.2px;
	margin-bottom:50px;
}

.blog-detail-content .wp-block-list{
	margin-bottom:20px;
}

.blog_section--single-other .blog_box .title-field{
	justify-content:start;
	align-items:center;
}

.policy_tabs-section .title-field {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom:40px;
	gap:20px;
	flex-direction:column-reverse;
	align-items:start;
}

nav.policy_tabs-navbar{
	margin:0 auto;
}

.policy_tabs-navbar .policy_menu{
	display:flex;
	align-items:center;
	gap:15px;
}

.policy_tabs-navbar .policy_menu li a{
	font-size:14px;
	color:#989898;
	font-weight:300;
	line-height:1.2;
	padding:6px 10px;
	border-radius:5px;
	border:1px solid #989898;
	display:block;
}

.policy_tabs-navbar .policy_menu li.current-menu-item a{
	border-color:#CC043E;
	color:#CC043E;
}

.policy_detail_tabs-title{
	font-size:19px;
	font-weight:600;
	letter-spacing:0.2px;
	line-height:1.3;
	margin:0;
}

.policy-content{
	font-size:15px;
	font-weight:200;
	line-height:1.4;
	letter-spacing:0.2px;
}

.policy-content p a{
	color:#CC043E;
}

.policy-content h2{
	font-size:17px;
	font-weight:600;
	margin:30px 0;
	font-family: 'San Diego', sans-serif;
}

.policy-content ol{
	padding:0;
}

.policy-tabs-section {
	margin-bottom: 60px;
}

/* Project detail hero video karartma - overlay ile */
.project_detail-hero .project_hero-media{
	position: relative;
	overflow: hidden;
}

.project_detail-hero .project_hero-media::before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.20) 100%);
	pointer-events: none;
	z-index: 1;
}

.project_detail-hero .project_hero-video,
.project_detail-hero .project_hero-image{
	position: relative;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.default-page-section{
	margin:40px 0;
}

.default-page-section h1{
	font-size:21px;
	font-family: 'San Diego', sans-serif;
	font-weight:600;
	line-height:1.3;
	margin-bottom:20px;
	letter-spacing:0.2px;
}

.default-page-section .entry-content{
	margin-bottom:20px;
}

.default-page-section .entry-content p{
	font-weight:200;
	line-height:1.3;
	letter-spacing:0.2px;
	font-size:16px;
}

.search-pagination .nav-links{
	display:flex;
	align-items:center;
	gap:10px;
}

.footer_absolute-field {
	position: absolute;
	right: 0;
	bottom: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer_absolute-field img{
	max-height:350px;
}

.footer_absolute-field .text{
	display:flex;
	align-items:center;
	gap:7px;
	font-size:19px;
	font-family: 'San Diego', sans-serif;
	line-height:1.3;
	letter-spacing:0.2px;
	font-weight:300;
	margin-top:-100px;
}

.footer_absolute-field .text strong{
	font-family: 'Snell Roundhand';
	font-weight:600;
	font-size:22px;
}

.contact_page_location-box .tab-panel-inner .right_box-bottom .adress_item{
	max-width:400px;
}

@media (min-width: 992px){
	.tab-layout-top .thumb-row img:hover, .inner-tab-panel .inner-tab-item .inner-tab-top .thumb-row img:hover,
	.tab-layout-top .main-image img:hover, .inner-tab-panel .inner-tab-item .inner-tab-top .main-image img:hover{
		scale:1.1;
		border-radius:12px;
	}
	.contact_page_location-box .tab-panel-inner .right_box-bottom .btn{
		min-width:175px;
	}
}

@media (max-width: 1400px){
	.footer_absolute-field .text{
		display:none;
	}
	.footer_absolute-field{
		bottom:-25px;
	}
}

@media (max-width: 1540px){
	.policy_tabs-section .title-field{
		flex-direction:column-reverse;
		align-items:start;
		margin-bottom:20px;
	}
	.policy_tabs-section .policy_tabs-navbar{
		margin:0 auto;
	}
}

@media (max-width: 1300px) and (min-width: 992px){
	.policy-tabs-section .container{
		padding:0 20px;
	}
	.policy_tabs-navbar .policy_menu{
		gap:5px;
	}
	.policy_tabs-navbar .policy_menu li a{
		font-size:12px;
		padding:5px;
	}
}

@media (max-width: 1200px) and (min-width: 992px){
	.sticky-side-buttons{
		right:12px;
	}
	.sticky-call-form-box.is-open {
		transform: translateX(-12px) translateY(-50%);
	}
	.sticky-call-cf7-wrapper .sticky-call-cf7-row textarea{
		overflow:hidden;
	}
	.project-item .text, .project-item .text p{
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical; 
		overflow: hidden;
	}
	.project_banner-box .content{
		padding:0 20px;
	}
	.project_banner-box .content .project-logo{
		margin-bottom:20px;
	}
	.project_banner-box .content .project-logo img{
		max-width:120px;
	}
	.project_banner-top-content .desc{
		font-size:14px;
	}
	.project_banner-box .content .list-items{
		gap:9px;
	}
	.project_banner-box .down-content .list-items .item img{
		width:20px;
	}
	.project_banner-box .content{
		bottom: 70px;
	}
	.project_banner-box .down-content .list-items .item span{
		font-size:14px;
	}
	.information_section .title-field{
		margin-bottom: 15px;
		padding: 0 10px;
		gap: 10px;
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	.information_section .title-field h2{
		font-size:17px;
	}
	.information_section .title-field p{
		font-size:14px;
		line-height:1.5;
		max-width:720px;
	}
	.information-item {
		padding: 20px 80px;
	}
	.information-item .information-icon{
		width:44px;
		height:44px;
	}
	.information-item .information-icon img {
		width: 20px;
	}
	.information-item h3{
		font-size:18px;
		line-height:1.3;
	}
	.information-item.active p{
		margin-top:10px;
		font-size:14px;
		line-height: 1.6;
		max-width: 820px;
	}
	.information_section{
		margin-bottom:60px;
	}
	.blog-item .content h3 a{
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical; 
		overflow: hidden;
	}
	.footer_bottom-list{
		padding-top: 15px;
		padding-bottom: 30px;
	}
	.footer_bottom-list li a{
		font-size:12px;
	}
	.header_box_field{
		padding:32px 0;
	}
	.swiper_hero .swiper-slide .content > span{
		font-size:24px;
		flex-direction:column;
	}
	.swiper_hero .swiper-slide .content p{
		font-size:14px;
	}
	.swiper_hero .swiper-slide .content a span{
		padding: 10px 24px;
	}
	.mini-icon{
		padding:8px;
	}
	.hero_content-section_box{
		margin: -30px auto 0;
		max-width: 700px;
	}
	.hero_content-section_box span{
		font-size:19px;
	}
	.hero_content-section_box p{
		font-size:15px;
	}
	.hero_content-box-item .item{
		padding:15px;
		width: calc(33.333% - 5px);
	}
	.hero_content-box-item .item .icon img{
		width:50px;
		height:50px;
	}
	.hero_content-box-item .item .text{
		font-size:14px;
	}
	.project_list-section .title-field .tab_title-box{
		gap:25px;
	}
	.hero_pagination{
		left:5%;
		bottom:12%;
	}
}

.project-banner-img.mobile-img{
	display:none;
}

.project-banner-img.desktop-img{
	display:block;
	width:100%;
}

@media (max-width: 992px){
	.container, .hero_content-section .container{
		padding:0 20px;
	}
	.hero_item--desktop{
		display:none;
	}
	.hero_item--mobile{
		display:block;
	}
	/* Navbar menü gizle, hamburger + search göster */
	.main_header .navbar {
		display: none;
	}
	.main_header .header_box {
		gap: 16px;
	}
	.main_header .header_box_buttons {
		gap: 16px;
	}
	/* Mobilde sadece arama ve hamburger; telefon ve dil seçeneği gizli */
	.main_header .header_box_buttons .tel-btn,
	.main_header .header_box_buttons > .lang-switcher {
		display: none !important;
	}
	.hamburger-btn {
		display: flex;
		padding: 0;
		border: none;
		background: transparent;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.hamburger-btn img {
		width: 24px;
		height: 24px;
		display: block;
	}
	.main_header.second-header .hamburger-btn img {
		filter: invert(1);
	}
	/* Mobil menü overlay + panel (sağdan sola sürüklenir) - sadece 992px altında kullanılır */
	.mobile-menu-overlay,
	.mobile-menu-panel {
		display: block;
	}
	.mobile-menu-overlay {
		position: fixed;
		inset: 0;
		z-index: 1000;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	.mobile-menu-overlay.is-open {
		opacity: 1;
		visibility: visible;
	}
	.mobile-menu-panel {
		position: fixed;
		top: 0;
		right: 0;
		width: 75%;
		max-width: 520px;
		height: 100%;
		z-index: 99999;
		background: #fff;
		transform: translateX(100%);
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		overflow-y: auto;
		padding: 24px;
	}
	.mobile-menu-panel.is-open {
		transform: translateX(0);
	}
	.mobile-menu-close {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
		padding: 0;
		border: none;
		background: #f0f0f0;
		color: #333;
		border-radius: 8px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background 0.2s ease;
	}
	.mobile-menu-close:hover {
		background: #e0e0e0;
	}
	.mobile-menu-nav-wrap {
		margin-top: 48px;
		padding-bottom:40px;
		border-bottom:1px solid #eee;
	}
	.mobile-menu-panel .navbar {
		display: block;
	}
	.mobile-menu-panel .header_menu {
		list-style: none;
		padding: 0;
		margin: 0;
		flex-direction:column;
		align-items:start;
		gap:20px;
	}
	.mobile-menu-panel .header_menu li {
		margin: 0;
	}
	.mobile-menu-panel .header_menu li a {
		display: block;
		padding: 12px 14px;
		font-size: 16px;
		font-weight: 400;
		color: #333;
		text-decoration: none;
		transition: background 0.2s ease, color 0.2s ease;
	}
	.mobile-menu-panel .header_menu li a:hover {
		background: #f5f5f5;
		color: #CC043E;
	}
	.mobile-menu-panel .header_menu .sub-menu {
		list-style: none;
		padding: 0;
		margin: 0;
		padding-left: 16px;
	}
	/* Mobil menü: telefon + dil (sadece panel içinde) */
	.mobile-menu-extra {
		margin-top: 24px;
		padding:12px 14px;
		display: flex;
		gap: 20px;
		flex-direction:column;
		align-items:start;
	}
	.mobile-menu-tel {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 16px;
		font-weight: 400;
		color: #333;
		text-decoration: none;
		transition: color 0.2s ease;
	}
	.mobile-menu-tel:hover {
		color: #CC043E;
	}
	.mobile-menu-tel img {
		width: 20px;
		height: 20px;
		display: block;
		filter: brightness(0);
	}
	.mobile-menu-panel .mobile-menu-lang-wrap {
		position: relative;
	}

	.mobile-menu-panel .lang-switcher--mobile .lang-switcher__button {
		border: 1px solid #ddd;
		color: #333;
		padding: 8px 12px;
	}

	.mobile-menu-panel .lang-switcher--mobile .lang-switcher__icon {
		filter: brightness(0);
	}

	.mobile-menu-panel .lang-switcher--mobile .lang-switcher__menu {
		left: 0;
		right: auto;
	}

	body.mobile-menu-open {
		overflow: hidden;
	}
	.header_box_field{
		padding:15px 0;
	}
	.header_box_field .main-logo img{
		width:65px;
	}
	.swiper_hero .swiper-slide .content > span {
		font-size: 16px;
		letter-spacing: 1.3px;
	}
	.swiper_hero .swiper-slide .content p{
		font-size:13px;
		margin-bottom:10px;
	}
	.swiper_hero .swiper-slide .content a{
		border:1px solid #ffffff;
	}
	.swiper_hero .swiper-slide .content a span{
		padding:9px 18px;
	}
	.mini-icon{
		padding:6px;
	}
	.hero_pagination {
		bottom: 12%;
		left: 6%;
		gap: 5px;
	}
	.hero_pagination_bars{
		gap:5px;
	}
	.hero_pagination_bar{
		width:30px;
	}
	.hero_pagination_counter{
		font-size:12px;
	}
	.hero_item--mobile img{
		aspect-ratio: 3/4;
	}
	.hero_content-section_box span{
		font-size:14px;
		margin-bottom:12px;
		padding:0 30px;
	}
	.hero_content-section_box p{
		font-size:12px;
		line-height: 1.4;
		margin-bottom: 10px;
	}
	.hero_content-box-item{
		gap:5px;
		justify-content:center;
	}
	.hero_content-box-item .item{
		padding: 10px;
		width: calc(50% - 5px);
		gap: 6px;
	}
	.hero_content-box-item .item .icon img{
		width:50px;
		height:50px;
	}
	.hero_content-box-item .item .text{
		font-size:12px;
	}
	.sticky-side-buttons{
		right:0;
		/* Mobilde ortalanmak yerine aşağı sabitle, kesilmesin */
		top:auto;
		bottom:80px;
		transform:none;
	}
	.sticky-btn{
		padding:15px 6px;
		border-radius: 5px 0px 0px 5px;
		min-height:145px;
	}
	.sticky-call-form-box.is-open {
		transform: translateX(0px) translateY(-50%);
	}
	.sticky-call-cf7-wrapper p textarea{
		overflow:hidden;
	}
	.absolute_image {
		top: -35px;
		right: inherit;
		left:50%;
		transform:translatex(-50%);
	}
	.absolute_image img{
		width:55px;
	}
	.project_list-section .title-field {
		margin-bottom: 15px;
		padding: 0;
		align-items:start;
		flex-direction:column;
		gap:10px;
	}
	.project_list-section .title-field h2 {
		font-size: 18px;
		line-height: 1.3;
	}
	.project_list-section .title-field .tab_title-box{
		gap:10px;
		flex-direction:row;
		align-items:start;
	}
	.project_list-section .title-field .tab_title-box span{
		font-size:12px;
		line-height:1.3;
	}
	.project-item{
		padding:15px 10px;
	}
	.project-item .thumbnail {
		margin-bottom: 12px;
	}
	.project-item .project-top {
		margin-bottom: 10px;
		min-height: auto;
		gap:10px;
	}
	.project-item .project-name{
		font-size:15px;
		min-height:39px;
	}
	.project-item .project-top .ticket span {
		font-size: 9px;
	}
	.project-item .text, .project-item .text p{
		font-size:11px;
	}
	.project-item a.btn, .project-read-more{
		margin-top:10px;
	}
	.btn{
		border: 1px solid #CC043E;
	}
	.project_banner-box .down-content .btn{

	}
	.btn span{
		padding:7px 15px;
	}
	.btn .icon{
		padding:5px;
	}
	.wrapper-project {
		padding-bottom: 40px;
	}
	.project-nav{
		width:25px;
		height:25px;
	}
	.project_banner-box .content {
		bottom: 15%;
		padding: 0 10px;
		display:flex;
		align-items: end;
		padding: 0 10px;
		justify-content: space-between;
	}
	.project_banner-box .project_banner-top-content {
		padding-bottom:0;
		margin-bottom:0;
		border-bottom:none;
	}
	.project_banner-box .content .project-logo {
		margin-bottom: 10px;
	}
	.project_banner-box .content .project-logo img{
		width:80px;
	}
	.project_banner-box .project_banner-top-content .desc{
		font-size:8px;
	}
	.project_banner-box .down-content .btn span{
		padding: 8px 12px;
		font-size:10px;
		box-shadow: 0 0 0 10px #FFFFFF;
	}
	.project_banner-box .down-content .btn .icon{
		padding:8px;
	}
	.project_banner-box .content .list-items{
		gap:5px;
		display:none;
	}
	.project_banner-box .down-content{
		flex-direction:column;
		align-items:start;
		gap:10px;
	}
	.project_banner-box .down-content .list-items .item span{
		font-size: 12px;
	}
	.information_section .title-field {
		margin-bottom: 15px;
		padding: 0 10px;
		gap: 15px;
		flex-direction:column;
		align-items:center;
		text-align:center;
	}
	.information_section .title-field h2 {
		font-size: 14px;
		line-height: 1.3;
	}
	.information_section .title-field p {
		font-size: 12px;
		line-height: 1.4;
		max-width: 610px;
	}
	.information-list-box{
		gap:10px;
	}
	.information-item {
		padding: 15px 35px 15px 15px;
	}
	.information-item h3{
		font-size:14px;
	}
	.information-item p {
		font-size: 12px;
		padding:0;
		margin:0;
	}
	.information-item.active p{
		margin-top:10px;
	}
	.information-item .information-icon {
		width: 28px;
		height: 28px;
		right: 5px;
	}
	.information-item .information-icon img{
		width:16px;
	}
	.information-item p:before{
		display:none;
	}
	.information_section {
		margin-bottom: 50px;
	}
	.blog_section .title-field{
		margin-bottom:20px;
	}
	.blog_section .title-field h2{
		font-size:18px;
	}
	.wrapper-blog {
		padding-bottom: 40px;
	}
	.blog-item {
		padding: 20px 10px 20px 10px;
	}
	.blog-item .thumbnail {
		margin-bottom: 15px;
	}
	.blog-item .content h3 {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 20px;
		min-height: 45px;
	}
	.blog-nav{
		width:25px;
		height:25px;
	}
	.blog_section {
		margin-bottom: 40px;
	}
	.footer_content .social_content{
		gap:6px;
		position:relative;
		z-index:2;
	}
	.social_content{
		margin-bottom:15px;
		position:relative;
		z-index:2;
	}
	.social_item{
		width:40px;
		height:40px;
	}
	.social_item img {
		max-width: 18px;
	}
	.hero_content-section_box{
		padding:20px;
	}
	.project-item .text, .project-item .text p{
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical; 
		overflow: hidden;
		min-height:40px;
	}
	.project_banner-box > img{
		aspect-ratio:3/3;
	}
	.footer_menu_list{
		gap:20px;
		position:relative;
		z-index:2;
	}
	.footer_tel {
		padding: 6px 6px;
		font-size: 14px;
		margin-bottom: 15px;
		position:relative;
		z-index:2;
	}
	.options_mail {
		gap: 15px;
		flex-direction: column;
		position:relative;
		z-index:2;
	}
	.footer_bottom-list {
		padding-top: 15px;
		padding-bottom: 25px;
		flex-direction: column;
		gap: 5px;
	}
	.breadcrump_section {
		margin-top: -20px;
	}
	.breadcrump_section .breadcrump_box{
		padding:15px;
	}
	.second_hero_content-box .title-field{
		padding:0 20px;
	}
	.second_hero_content-box h3 {
		font-size: 14px;
		margin-bottom: 15px;
	}
	.second_hero_content-box .title-field p {
		font-size: 12px;
		line-height: 1.6;
	}
	.before_after-box .before_after-item{
		padding: 20px 15px;
		min-width:auto;
	}
	.second_hero_content-box .before_after-box{
		flex-wrap:wrap;
		gap: 15px;
		margin-bottom: 15px;
		padding:0 15px;
	}
	.before_after-box .before_after-item{
		width:calc(50% - 8px);
	}
	.second_hero_content-box .before_after-box .before_after-item .image_box{
		gap:10px;
	}
	.second_hero_content-box .bottom-text, .before_after-box .before_after-item .item_text{
		font-size:12px;
	}
	.about_banner-wrapper{
		flex-direction:column;
		gap:15px;
	}
	.about_banner-right, .about_banner-left{
		width:100%;
	}
	.about_banner-card {
		padding: 20px 20px;
		margin-bottom: 15px;
	}
	.about_banner-card ul li {
		font-size: 12px;
		line-height: 1.4;
		padding-left: 5px;
	}
	.about_banner-card ul li:before {
		width: 6px;
		height: 6px;
		left: -6px;
		top: 6px;
	}
	.about_banner-right {
		flex-direction: column-reverse;
		display: flex;
	}
	.about_banner-image {
		margin-bottom: 0;
	}
	.about_banner-stats {
		gap: 10px;
		flex-wrap: wrap;
		margin-bottom:15px;
	}
	.about_banner-stats .about_banner-stat {
		width: calc(50% - 5px);
		gap: 10px;
		padding: 15px;
	}
	.live_more-section{
		background:#CC043E;
		margin-bottom:40px;
	}
	.live_more-section:before{
		display:none;
	}
	.live_more-wrapper{
		padding: 0 20px;
		justify-content: center;
	}
	.live_more-wrapper .thumbnail{
		display:none;
	}
	.live_more-wrapper .content {
		margin: 20px 0;
	}
	.live_more-wrapper .content .live_material-box {
		gap: 15px;
	}
	.live_more-wrapper .content .live_material-box .materiel_item {
		gap: 5px;
	}
	.history_section .title-field {
		margin-bottom: 20px;
	}
	.history_section .title-field h3{
		font-size:18px;
	}
	.wrapper-history {
		padding-bottom: 0;
		border:none;
	}
	.history_list-box .content_field {
		padding-top: 20px;
	}
	.history_list-box .content_field .years{
		font-size:24px;
	}
	.history_thumbnail img{
		width:100%;
	}
	.history-navigation{
		right:10px;
	}
	.second_hero_content-section {
		margin-bottom: 30px;
	}
	.about_banner-text p{
		font-size:12px;
	}
	.about_banner-text p strong{
		font-size:12px;
	}
	.about_banner-stats .about_banner-stat .icon img {
		max-width: 55px;
		max-height: 55px;
	}
	.about_banner-stats .about_banner-stat span {
		font-size: 12px;
	}
	.live_more-wrapper .content h2{
		font-size:14px;
	}
	.live_more-wrapper .content h2 strong{
		font-size:28px;
	}
	.history_section {
		margin-bottom: 40px;
	}
	.history_list-box .content_field p{
		font-size:12px;
	}
	.second-header .hamburger-btn{
		filter:invert(1);
	}
	.main_header.second-header .header_box_field {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.projects-archive-description {
		font-size: 14px;
		line-height: 1.5;
	}
	.projects-archive-highlight {
		font-size: 14px;
		line-height: 1.5;
	}
	.projects-archive-filters {
		margin-bottom: 15px;
		padding: 0;
		flex-direction: column;
		align-items: start;
		gap:10px;
	}
	.projects-filter-select {
		padding: 5px 30px 5px 15px;
		background-position: right 10px center;
		font-size:10px;
		background-color:#CC043E;
		border:1px solid #ffffff;
		color:#ffffff;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	}
	.projects-filter-status{
		gap:7px;
	}
	.projects-filter-status button{
		padding:5px 10px;
		font-size:10px;
		line-height:1.3;
	}
	.projects-list{
		column-gap: 0;
		row-gap: 15px;
	}
	.projects-archive .projects-list{
		margin-bottom:40px;
	}
	.projects-archive .project-item{
		width:100%;
		padding:15px;
	}
	.projects-archive .project-thumb {
		margin-bottom: 15px;
	}
	.projects-archive .project-header {
		margin-bottom: 15px;
	}
	.projects-archive .project-header h2{
		font-size:18px;
	}
	.projects-archive .project-location{
		font-size:11px;
	}
	.projects-archive .project-excerpt{
		margin-bottom:15px;
	}
	.project_detail-hero .image-box img {
		aspect-ratio: 4 / 6;
	}
	.project_detail-hero .content_field-hero {
		padding-bottom: 0;
		margin-bottom: 0;
		border:none;
	}
	.project_detail-hero .content_field .logo {
		margin-bottom: 0;
	}
	.project_detail-hero .content_field .logo img{
		width:100px;
	}
	.project_detail-hero .content_field span{
		font-size:14px;
		display:none;
	}
	.project_detail-hero .add_materiel-box{
		gap:5px;
		display:none;
	}
	.project_detail-hero .materiel_text {
		font-size: 12px;
		line-height: 1.5;
	}
	.project_info-box .head_content {
		margin-bottom: 15px;
	}
	.project_info-box .head_content span{
		font-size:14px;
		margin-bottom:15px;
	}
	.project_info-box .head_content .desc p{
		font-size:12px;
	}
	.project_info-box .bottom_content{
		gap:15px;
		flex-direction:column;
	}
	.project_info-box .bottom_text {
		width: 80%;
	}
	.project_info-box .bottom_text p{
		text-align:center;
	}
	.project_info-box .bottom_content .info_materiel-box{
		flex-direction: row;
		gap: 5px;
		width: 100%;
		justify-content: center;
	}
	.project_info-box .bottom_content .info_materiel-item {
		padding: 10px;
		gap: 5px;
		width: calc(33% - 3px);
	}
	.project_info-box .text_box .info_name{
		font-size:10px;
	}
	.project_info-box .bottom_content .info_materiel-item img {
		max-height: 35px;
		max-width:100%;
	}
	.project_info-box .text_box .info{
		font-size:12px;
	}
	.project_detail_tabs-section .tab-menu-box {
		display:none;
	}
	.tab-menu-select-wrapper{
		display:block;
		margin-bottom:20px;
	}
	.project_detail_tabs-section .tab-menu-select-wrapper{
		display:flex;
		justify-content:end;
	}
	.project_info-box .bottom_text p {
		font-size: 12px;
		line-height: 1.5;
	}
	.tab-layout-main-image-with-thumbs, .project_detail_tabs-box .inner-tab-panels, .inner-tab-panel .inner-tab-item{
		flex-direction: column;
		gap:20px;
	}
	.tab-layout-top, .inner-tab-panel .inner-tab-item .inner-tab-top{
		gap:15px;
	}
	.tab-layout-top .main-image, .inner-tab-panel .inner-tab-item .inner-tab-top .main-image{
		padding: 12px 14px;
	}
	.tab-layout-top .thumb-row, .inner-tab-panel .inner-tab-item .inner-tab-top .thumb-row{
		gap:15px;
		padding:0 5px;
	}
	.tab-layout-main-image-with-thumbs .text-side, .inner-tab-panel .inner-tab-item .text-side {
		width: 100%;
	}
	.tab-layout-main-image-with-thumbs .text-side .layout-title, .inner-tab-panel .inner-tab-item .text-side .layout-title{
		font-size:21px;
		margin-bottom:15px;
	}
	.tab-layout-main-image-with-thumbs .text-side .layout-desc, .inner-tab-panel .inner-tab-item .text-side .layout-desc {
		font-size: 12px;
		line-height: 1.6;
		margin-bottom: 15px;
	}
	.tab-layout-main-image-with-thumbs .text-side .layout-note{
		font-size:12px;
	}
	.project_detail_tabs-title {
		font-size: 16px;
		margin-bottom: 15px;
	}
	.tab-layout-top, .inner-tab-panel .inner-tab-item .inner-tab-top{
		width:100%;
	}
	.project_detail_tabs-section .inner-tab-menu{
		gap:8px;
		margin-bottom:15px;
		justify-content:start;
		overflow:auto;
		padding-bottom:10px;
	}
	.project-skills .inner-tab-menu{
		margin-top:-43px;
		width:70%;
	}
	.project_detail_tabs-section .inner-tab-menu-item{
		font-size:10px;
		padding: 5px 10px;
		white-space:nowrap;
	}
	.project_detail_tabs-section .gallery-grid .gallery-item {
		padding: 12px 10px;
		width: 100%;
	}
	.project_detail_tabs-section .location-top {
		gap: 15px;
		margin-bottom: 20px;
		padding: 0;
		flex-direction: column;
	}
	.project_detail_tabs-section .location-top .project-title,
	.project_detail_tabs-section .location-top .location-name{
		font-size:16px;
		margin-bottom:15px;
	}
	.project_detail_tabs-section .location-top .location-phone {
		gap: 10px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.project_detail_tabs-section .location-top .location-address{
		gap: 10px;
		margin-bottom: 15px;
	}
	.project_detail_tabs-section .location-top .location-image {
		width: 100%;
	}
	.tab-layout-two-images {
		gap: 15px;
		flex-direction: column;
	}
	.tab-layout-two-images > div {
		width: 100%;
	}
	.project_detail-location {
		margin-bottom: 30px;
	}
	.project_detail-location .project_location-box{
		flex-direction:column;
		gap:0;
	}
	.project_detail-location .project_location-box:before{
		display:none;
	}
	.project_detail-location .project_location-box > div {
		width: 100%;
	}
	.project_detail-location .project_location-box .content{
		background:#CC043E;
		padding: 20px 10px;
	}
	.project_detail-location .content h3{
		margin-bottom:10px;
		font-size:14px;
	}
	.contact_hero-box .image_box img,
	.contact_hero-box .image_box video{
		aspect-ratio:10/9;
	}
	.contact_hero-box .content h3{
		font-size:21px;
	}
	.contact_hero-box .content h3 strong{
		font-size:42px;
	}
	.project_detail-location .content p{
		font-size:14px;
		font-weight:300;
	}
	.contact_hero-box .contact_hero-media--desktop{
		display:none;
	}
	.contact_hero-box .contact_hero-media--mobile{
		display:block;
	}
	.contact_form-box{
		padding:18px;
	}
	.form_text-field {
		gap: 15px;
		margin-bottom: 15px;
	}
	.form_text-field h3{
		font-size:21px;
	}
	.form_text-field p{
		font-size:14px;
	}
	.contact_form-box form .form-row-two-columns{
		flex-direction:column;
		gap:7px;
	}
	.form-group.form-group-half {
		width: 100%;
	}
	.contact_form-box form input:not([type="checkbox"]), .contact_form-box form textarea{
		padding:15px 18px;
	}
	.contact_form-box form textarea {
		margin-bottom: 10px;
		height: 100px;
		overflow:auto;
	}
	.form-kvkk p, .form-checkbox-wrapper p{
		font-size:11px;
	}
	.form-checkbox-wrapper label {
		align-items: start;
		gap: 4px;
	}
	.form-btn {
		margin-top: 20px;
	}
	.contact_page_location-section .title-field {
		margin-bottom: 15px;
	}
	.contact_page_location-box .inner-tab-menu{
		flex-direction:column;
		align-items:start;
		gap:10px;
		margin-bottom:30px;
	}
	.contact_page_location-box .tab-panel-inner .top_box{
		flex-direction:column;
		gap:20px;
	}
	.contact_page_location-box .tab-panel-inner .right_box-bottom{
		flex-direction:column;
		align-items:start;
		gap:20px;
	}
	.contact_page_location-box .tab-panel-inner .top_box > div{
		width:100%;
	}
	.contact_page_location-box .tab-panel-inner .adress-text, .contact_page_location-box .tab-panel-inner .tel-number{
		font-size:14px;
	}
	.contact_page_location-box .tab-panel-inner .adress_item img, .contact_page_location-box .tab-panel-inner .tel-number img{
		width: 15px;
	}
	.tab-panel-inner .project-name, .tab-panel-inner .location-name{
		font-size:15px;
	}
	.blog-archive-description{
		font-size:14px;
	}
	.blog-archive-list {
		column-gap: 0;
		row-gap: 12px;
	}
	.blog-archive-header-inner{
		margin-bottom:0;
	}
	.blog-archive-item{
		width:100%;
		padding: 10px;
	}
	.blog-archive-thumb {
		margin-bottom: 10px;
	}
	.blog-archive-item-title{
		font-size:14px;
		min-height:35px;
		margin-bottom:15px;
	}
	.breadcrump_section .fabay-breadcrumb{
		justify-content:center;
		flex-wrap:wrap;
		gap:5px;
	}
	.blog-detail-title {
		font-size: 16px;
		margin-bottom: 15px;
	}
	.blog_detail_head-field {
		float: inherit;
		width: 100%;
		margin: 0;
	}
	.blog-detail-thumb{
		margin-bottom:20px;
		margin-right:0;
	}
	.blog-detail-thumb img{
		aspect-ratio:4/3;
	}
	.blog-detail-short-description p {
		font-size: 14px;
		margin-bottom: 25px;
	}
	.blog-detail-content h2 {
		font-size: 17px;
		margin-bottom: 25px;
	}
	.blog-detail-content p {
		font-size: 14px;
		margin-bottom: 20px;
	}
	.blog-detail-content h3 {
		font-size: 15px;
		margin-bottom: 20px;
	}
	.policy_tabs-navbar .policy_menu{
		justify-content:center;
		flex-wrap:wrap;
		gap:8px;
	}
	.policy_tabs-navbar .policy_menu li a{
		font-size:12px;
		padding:5px;
	}
	.blog-single .breadcrump_section .breadcrump_box, .policy-page .breadcrump_section .breadcrump_box{
		margin-bottom:20px;
	}
	.project-navigation, .blog-navigation{
		right:20px;
	}
	.project_detail-hero .project_hero-media--desktop {
		display:none;
	}

	.project_detail-hero .project_hero-media--mobile{
		display:block;
	}

	.project_detail-hero .project_hero-media--mobile video,
	.hero .hero_media.hero_media--video{
		aspect-ratio:9/10;
		width:100%;
		object-fit:cover;
	}
	.blog-archive{
		margin-top:20px;
	}
	.blog-archive-content-box{
		margin-bottom:20px;
	}
	.blog-archive-header h1, .blog-archive-title{
		margin-bottom:10px;
	}
	.project-banner-img.mobile-img{
		display:block;
		width:100%;
	}
	.project-banner-img.desktop-img{
		display:none;
	}
	.policy-content ol{
		padding-left:12px;
	}
}

@media (max-width: 768px) {
	.error-404 {
		padding: 80px 0 60px;
	}

	.error-links-grid {
		grid-template-columns: 1fr 1fr;
	}
}

section.hidden_title {
	position: absolute;
	opacity: 0;
	z-index: -1;
	top: 0;
}

.blog-detail-content p a {
	color: #15c;
	font-weight: 400;
}

