@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700");
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("../fonts/new_icons/new_icons.css"); 
@import url("../class/font-awesome-pro/css/all.min.css"); 


:root {
  --bs-gray-100: #fefefe;
  --bs-gray-200: #f6f7f9;
  --bs-gray-300: #cacaca;
  --bs-gray-400: #aab0bc;
  --bs-gray-500: #959ca9;
  --bs-gray-600: #60697b;
  --bs-gray-700: #2f353a;
  --bs-gray-800: #21262c;
  --bs-gray-900: #1e2228;
  --bs-blue: #3f78e0;
  --bs-sky: #5eb9f0;
  --bs-purple: #747ed1;
  --bs-grape: #605dba;
  --bs-violet: #a07cc5;
  --bs-pink: #d16b86;
  --bs-fuchsia: #e668b3;
  --bs-red: #e2626b;
  --bs-orange: #f78b77;
  --bs-yellow: #fab758;
  --bs-green: #45c4a0;
  --bs-leaf: #7cb798;
  --bs-aqua: #54a8c7;
  --bs-navy: #343f52;
  --bs-ash: #9499a3;
  --bs-white: #fff;
  --bs-light: #fefefe;
  --bs-gray: #f6f7f9;
  --bs-dark: #262b32;
  --bs-primary: #3f78e0;
  --bs-secondary: #aab0bc;
  --bs-success: #45c4a0;
  --bs-info: #54a8c7;
  --bs-warning: #fab758;
  --bs-danger: #e2626b;
  --bs-blue-rgb: 63, 120, 224;
  --bs-sky-rgb: 94, 185, 240;
  --bs-purple-rgb: 116, 126, 209;
  --bs-grape-rgb: 96, 93, 186;
  --bs-violet-rgb: 160, 124, 197;
  --bs-pink-rgb: 209, 107, 134;
  --bs-fuchsia-rgb: 230, 104, 179;
  --bs-red-rgb: 226, 98, 107;
  --bs-orange-rgb: 247, 139, 119;
  --bs-yellow-rgb: 250, 183, 88;
  --bs-green-rgb: 69, 196, 160;
  --bs-leaf-rgb: 124, 183, 152;
  --bs-aqua-rgb: 84, 168, 199;
  --bs-navy-rgb: 52, 63, 82;
  --bs-ash-rgb: 148, 153, 163;
  --bs-white-rgb: 255, 255, 255;
  --bs-light-rgb: 254, 254, 254;
  --bs-gray-rgb: 246, 247, 249;
  --bs-dark-rgb: 38, 43, 50;
  --bs-primary-rgb: 63, 120, 224;
  --bs-secondary-rgb: 170, 176, 188;
  --bs-success-rgb: 69, 196, 160;
  --bs-info-rgb: 84, 168, 199;
  --bs-warning-rgb: 250, 183, 88;
  --bs-danger-rgb: 226, 98, 107;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 96, 105, 123;
  --bs-body-bg-rgb: 254, 254, 254;
  --bs-font-sans-serif: "Manrope", sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-root-font-size: 20px;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 0.8rem;
  --bs-body-font-weight: 500;
  --bs-body-line-height: 1.7;
  --bs-body-color: #60697b;
  --bs-body-bg: #fefefe;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #cacaca;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.4rem;
  --bs-border-radius-sm: 0.2rem;
  --bs-border-radius-lg: 0.4rem;
  --bs-border-radius-xl: 0.8rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-heading-color: #343f52;
  --bs-link-color: #3f78e0;
  --bs-link-hover-color: #3f78e0;
  --bs-code-color: #60697b;
  --bs-highlight-bg: #fef1de;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  font-size: var(--bs-root-font-size);
}

/* Genel Stil */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Stil */
#main-header {
    background-color: rgba(0, 0, 0, 0.7); /* Şeffaf başlangıç */
    transition: all 0.3s ease-in-out;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#main-header.scrolled {
    background-color: #000; /* Scroll sonrası koyu renk */
    padding: 10px 0;
}

#main-header .navbar-brand img {
    height: 50px; /* Logo boyutu */
    transition: all 0.3s ease-in-out;
}

#main-header.scrolled .navbar-brand .logo-color {
    display: none !important;
}

#main-header.scrolled .navbar-brand .logo-white {
    display: inline-block !important;
}

#main-header .navbar-nav .nav-link {
    color: #fff;
    padding: 0.8rem 1.2rem;
    transition: color 0.3s ease-in-out;
}

#main-header .navbar-nav .nav-link:hover {
    color: #007bff; /* Hover rengi */
}

/* Dropdown Menü */
.navbar-dark .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Bootstrap'in varsayılan marjını sıfırlar */
    border-radius: 0;
}

.dropdown-menu {
    background-color: #343a40; /* Dropdown arka plan rengi */
    border: none;
}

.dropdown-menu .dropdown-item {
    color: #fff;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #007bff;
    color: #fff;
}


/* Hero Slider */
#hero-slider {
    position: relative;
    margin-top: -80px; /* Header'ın altında kalması için (header yüksekliği kadar) */
    z-index: 0; /* Overlay kutularının üstünde olması için */
}

#hero-slider .carousel-item img {
    height: 600px; /* Slider görsellerinin yüksekliği */
    object-fit: cover;
}

#hero-slider .carousel-caption {
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 5px;
    bottom: 20%;
}

#hero-slider .carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

#hero-slider .carousel-caption p {
    font-size: 1.2rem;
    color: #eee;
}

/* Slider Üzerindeki 3 Kutu (Overlay Boxes) */
#overlay-boxes {
    position: relative;
    margin-top: -100px; /* Slider üzerine binmesi için */
    z-index: 999; /* Slider'ın üzerinde olması için */
}
#overlay-boxes a{
	text-decoration: none;
}

#overlay-boxes .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: #fff;
    color: #333;
    transition: transform 0.3s ease-in-out;
}

#overlay-boxes .card:hover {
    transform: translateY(-5px);
}

#overlay-boxes .card i {
	font-size: 40px;
    color: #007aff;
	margin-bottom: 20px;
}


#overlay-boxes .card .title{
	font-size: .9rem;
	font-weight: bold;
	height: 50px;
	margin-bottom: 10px;
	overflow: hidden;
}

#overlay-boxes .card .description{
	font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    line-height: 25px;
    letter-spacing: 0;
    color: #7b7b7b;	
	height: 100px;
	margin-bottom: 10px;
	overflow: hidden;
}




/*headline slider*/

.headline-slider-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.background-scroll {
	position: absolute;
	margin-top:100px;
	height: 200px;
	background-image: url('../../images/slidetext.png');
	background-repeat: repeat-x;
	background-size: auto 100%;
	animation: slide 20s linear infinite;
	width: 200%; /* Görselin iki katı genişlikte */
}

.headline-slider-wrapper .owl-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1; /* Resimlerin üstte kalmasını sağlar */
}


.headline-slider-wrapper .owl-carousel .item {
  position: relative;
  text-align: center;
  height: 100%;
}

.headline-slider-wrapper .owl-carousel .item img {
  max-width: 1280px;
  max-height: 798px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Sadece .headline-slider-wrapper içindeki .owl-headline'ın navigasyon butonlarını hedefle */
.headline-slider-wrapper .owl-headline .owl-nav button {
	background-color: rgba(0, 0, 0, 0.5); /* Hafif şeffaf siyah arka plan */
	color: white; /* **Ok rengini beyaz yapar** */
	border-radius: 50% !important; /* Yuvarlak şekil için */
	width: 40px; /* Buton genişliği */
	height: 40px; /* Buton yüksekliği */
	font-size: 20px !important; /* Ok boyutu */
	position: absolute; /* Konumlandırma için */
	top: 50%; /* Dikey ortalamak için */
	transform: translateY(-50%); /* Dikey ortalamayı tam merkezlemek için */
	cursor: pointer; /* Fare imleci imleci */
	transition: background-color 0.3s ease, color 0.3s ease; /* Hover efekti için yumuşak geçiş */
	border: none; /* Kenarlık olmasın */
	outline: none; /* Odaklandığında kenarlık olmasın */
	display: flex; /* İçeriği Flexbox ile hizala */
	justify-content: center; /* Yatayda ortala */
	align-items: center; /* **Dikeyde ortala** */
}

.headline-slider-wrapper .owl-headline .owl-nav button:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Hover durumunda daha koyu */
    color: white; /* Hover'da da ok rengini beyaz tut */
}

/* Sol butonun konumu */
.headline-slider-wrapper .owl-headline .owl-nav .owl-prev {
    left: 25px; /* Soldan uzaklık */
}

/* Sağ butonun konumu */
.headline-slider-wrapper .owl-headline .owl-nav .owl-next {
    right: 25px; /* Sağdan uzaklık */
}

/* Okların bulunduğu span etiketi için ek stil */
.headline-slider-wrapper .owl-headline .owl-nav button span {
    line-height: 1; /* Okun kendi satır yüksekliğini ayarlar, genellikle 1 idealdir */
    display: block; /* Span'i blok elementi yapar */
}

@keyframes slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%); /* Görselin yarısı kadar kaydır */
	}
}














/* Markalar Sliderı */
#brands-slider {
    background-color: #fff;
}
.owl-brands{
	display:block;
	background-color: red;
	width: 100%;
	height: 60px;
	overflow: hidden;
	
}
.owl-brands .item{
	
}







/* 3 Küçük Kutu Kartlarının Temel Stilleri */
#small-boxes .card {
    min-height: 250px;
    background-color: #000; /* Yedek arka plan rengi */
    color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0; /* İç dolgu artık card-content'e geçecek */
    position: relative; /* card-background-image ve card-content için konum bağlamı */
    overflow: hidden; /* Büyüyen resmin kartın dışına taşmasını engeller */
}

/* Arka plan resmini taşıyacak div için stiller */
#small-boxes .card .card-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 1.5s ease-in-out; /* Süreyi 1.5 saniyeye çıkardık, ease-in-out daha yumuşak */
    will-change: transform;
    z-index: 0;
}

/* Her bir karta özel arka plan resimleri */

#small-boxes .card .card-bg-1 {
    background-image: url('../../images/csm_STILL_Marke_home_ec5ece39ff-800x700.png');
}

#small-boxes .card .card-bg-2 {
    background-image: url('../../images/kirasat-800x700.jpg');
}

#small-boxes .card .card-bg-3 {
    background-image: url('../../images/yale-ind-building-materials-labor-retention-body-800x700.png');
}


/* Fare kutunun üzerine geldiğinde arka plan resmini büyüt */
#small-boxes .card:hover .card-background-image {
    transform: scale(1.3); /* Büyüme oranını 1.5'ten 1.3'e düşürdük */
    transition: transform 3s ease-in-out; /* Aynı süreyi ve geçiş türünü koruyoruz */
}

/* Kart içeriği için stiller (metinler ve buton) */
#small-boxes .card .card-content {
    position: relative; /* Overlay'in üzerinde kalması için */
    z-index: 2; /* Overlay'in ve arka plan resminin üzerinde olmalı */
    padding: 20px; /* İç dolguyu buraya taşıdık */
    height: 100%; /* İçeriğin kartın tamamını kaplamasını sağlar */
    display: flex; /* İçeriği dikeyde hizalamak için flexbox */
    flex-direction: column;
    justify-content: space-between;
}


/* Arka plan resminin üzerine bir karartma (overlay) ekle */
/* Metinlerin okunurluğunu artırır ve animasyonu daha hoş hale getirir. */
#small-boxes .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background 1.5s ease-in-out; /* Overlay geçişini de 1.5s yapıyoruz */
}

/* Hover durumunda overlay'in karartmasını azalt */
#small-boxes .card:hover::before {
    background: rgba(0, 0, 0, 0.1); /* Hover'da daha az karartma, resim daha belirgin */
}

/* Buton stilleri (mevcut halleri) */
#small-boxes .card .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

#small-boxes .card .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}



/* Küçük ekranlar için kart içeriği ayarları */
@media (max-width: 576px) {
    #small-boxes .card .card-content {
        padding: 15px; /* Küçük ekranlarda dolguyu azalt */
    }

    #small-boxes .card .card-title {
        font-size: 1.1rem; /* Küçük ekranlarda başlığı küçült */
    }

    #small-boxes .card .btn-primary {
        font-size: 0.9rem; /* Küçük ekranlarda buton metnini küçült */
        padding: 8px 16px; /* Buton boyutunu küçült */
    }
}

/* Orta ekranlar için ek ayarlar (isteğe bağlı) */
@media (min-width: 577px) and (max-width: 991px) {
    #small-boxes .card .card-content {
        padding: 18px; /* Orta ekranlarda hafifçe azaltılmış dolgu */
    }

    #small-boxes .card .card-title {
        font-size: 1.2rem; /* Orta ekranlar için başlık boyutu */
    }
}























.owl-partners .item {
    /* Genel çerçeve ve gölgelendirme için */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden; /* İçerik taşmasını engellemek için */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    /*max-width: 300px; /* Genişliği sınırlayabilirsiniz, ihtiyacınıza göre ayarlayın */
    margin: 10px; /* Etrafında boşluk bırakmak için */
    background-color: #fff;
}

.owl-partners .item a {
    text-decoration: none;
    color: inherit;
    display: block; /* Bağlantı alanını tamamen kaplasın */
}

.owl-partners .item .cover {
    display: flex;
    flex-direction: column; /* Öğeleri dikey olarak sırala */
	align-content: center;
	justify-content: center;
    align-items: center; /* Yatayda başlangıca hizala */
    padding: 10px; /* İç boşluk */
}

.owl-partners .item .cover .images {
    width: 100%; /* Resim kapsayıcısının genişliği */
    text-align: center; /* Logoyu ortalamak için */
}

.owl-partners .item .cover .images img {
    max-width: 180px; /* STILL logosunun boyutunu ayarlayın */
    height: 100px;
    display: block; /* Gereksiz boşlukları kaldırmak için */
    margin: 0 auto; /* Logoyu yatayda ortala */
}

.owl-partners .item .cover .content {
    flex-grow: 1; /* Başlık ve açıklama kısmı kalan alanı doldursun */
    margin-bottom: 20px; /* İçerik ile ikon arasına boşluk */
}

.owl-partners .item .cover .content .title {
    font-size: 1em; /* Başlık boyutu */
    font-weight: bold;
    color: #333;
    margin-bottom: 5px; /* Başlık ile açıklama arasına boşluk */
}

.owl-partners .item .cover .content .description {
    font-size: .8em; /* Açıklama boyutu */
    color: #666;
}

.owl-partners .item .cover .icon {
    align-self: flex-start; /* İkonu sağ alt köşeye hizala */
    margin-top: auto; /* İkonu alta itmek için */
}

.owl-partners .item .cover .icon .arrow-circle {
    width: 25px;
    height: 25px;
    background-color: #007bff; /* Mavi renkli daire */
    border-radius: 50%; /* Daire şekli */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease; /* Hover efekti için geçiş */
}

.owl-partners .item .cover .icon .arrow-circle:hover {
    background-color: #0056b3; /* Hover'da daha koyu mavi */
}

.owl-partners .item .cover .icon .arrow-circle svg {
    fill: white; /* Ok rengi beyaz */
    width: 24px;
    height: 24px;
}











	/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Container genişliği, isteğe göre ayarlanabilir */
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

footer .left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

footer .center {
    flex: 1;
    text-align: center;
    font-size: .85rem;
}

footer .right {
    flex: 1;
    display: flex;
	flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

footer .right .social_button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    background: #f6f7f9;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 100%;
    transition: all 200ms ease-in-out;
    font-size: 18px;
    text-decoration: none;
}

footer .right .social_button svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

footer .right .twitter { color: #222222; }
footer .right .facebook { color: #3b5998; }
footer .right .linkedin { color: #0976b4; }
footer .right .whatsapp { color: #4dc247; }
footer .right .instagram { color: #9f2762; }
footer .right .youtube { color: #d93444; }

footer .right .twitter:hover { background: #000000; color: #fff; }
footer .right .facebook:hover { background: #3b5998; color: #fff; }
footer .right .linkedin:hover { background: #0976b4; color: #fff; }
footer .right .whatsapp:hover { background: #4dc247; color: #fff; }
footer .right .instagram:hover { background: #9f2762; color: #fff; }
footer .right .youtube:hover { background: #d93444; color: #fff; }

/* Mobil görünüm */
@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        text-align: center;
    }

    footer .left,
    footer .center,
    footer .right {
        flex: none;
        justify-content: center;
        margin: 10px 0;
    }

    footer .left img {
        margin: 0 auto;
    }

    footer .right {
        gap: 15px;
    }
}





















/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    #main-header .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }

    #main-header .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 15px;
        margin-top: 10px;
        border-radius: 5px;
    }

    .navbar-dark .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.1);
    }

    #hero-slider .carousel-item img {
        height: 400px;
    }

    #hero-slider .carousel-caption {
        bottom: 10%;
        padding: 10px;
    }

    #hero-slider .carousel-caption h5 {
        font-size: 1.8rem;
    }

    #hero-slider .carousel-caption p {
        font-size: 1rem;
    }

    #overlay-boxes {
        margin-top: 20px; /* Mobil görünümde slider üzerine binmez */
    }
}

@media (max-width: 767.98px) {
    #hero-slider .carousel-item img {
        height: 300px;
    }

    #hero-slider .carousel-caption {
        display: none !important; /* Küçük ekranlarda yazıyı gizle */
    }
}

@media (max-width: 575.98px) {
    #main-header .navbar-brand img {
        height: 40px;
    }
}

/*-- sonradan eklenen kodlar başladı --*/




/*pageHeadline*/
#pageHeadline{
	position: relative;
    overflow: hidden;
   
}

.HeaderImageProducts
{
	background-image: url(../../images/page_headline.png);
    background-size: cover;
    background-position: center center;
    background-attachment: initial;
    background-repeat: no-repeat;
}
.HeaderImageAbout
{
	background-image: url(../../images/background-1.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: initial;
    background-repeat: no-repeat;
}

#pageHeadline .inner{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 150px 0px 50px 0px;
}

#pageHeadline .inner .PageName{
    font-size: 2rem;
    font-style: normal;
    font-weight: bold;
    text-transform: none;
    line-height: 50px;
    letter-spacing: -3px;
    color: #fff;
}


.full_width_content{
	background-color: #fff;
}

.full_width_content .container .one_column_wrapper{ 
	padding: 20px 10px 20px 10px;
	
}
.full_width_content .container .one_column_wrapper .title{
	display: flex;
	flex-direction: row;
	align-items: center;
	align-content:center;
	justify-content: flex-start;
	font-size: 2rem;
	font-weight: bold;
}
.full_width_content .container .one_column_wrapper .description{
	display: flex;
	flex-direction: row;
	align-items: center;
	align-content:center;
	justify-content: flex-start;
	font-size: .75rem;
	font-weight: 400;
	font-style: italic;
	color: #343a40;
}
.full_width_content .container .one_column_wrapper .content{
	
}

.products {
  margin: 10px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.products li {
  list-style: none;
  width: 320px;
  height: 350px;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.products li:hover {
  background-color: #ffffff;
  text-decoration: none;
}
.products li img {
  max-width: 100%;
  max-height: 300px;
}
.products li span {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}
/* Hover durumunda span için alt çizgiyi kaldır */
.products li span:hover {
  text-decoration: none;
}
.products li a:hover {
  text-decoration: none;
}

@media (max-width: 767px) 
{
   .products li {
	  width: 215px;
	  height: 250px;

	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) 
{
   .products li {
	  width: 250px;
	  height: 250px;

	}
}



	
.full_width_content .container .two_column_wrapper {
    padding: 10px;
    width: 100%;
    height: auto;
    box-sizing: border-box; /* Padding ve border'ın genişliğe dahil edilmesi */
}








.form-container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
	margin-top: 50px;
}
.contact-info-card {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin-top: 50px;
}
.contact-item {
	display: flex;
	align-items: center;
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #ccc;
}
.contact-item i {
	font-size: 24px;
	color: #ffffff; /* Bootstrap primary color */
	margin: 15px;
}
.contact-item .iconx {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-align: center;
	margin-right: 30px;

}


.contact-item span {
	font-size: 16px;
	color: #333;
}
.form-section-title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 25px;
	color: #333;
	border-bottom: 2px solid #007bff;
	padding-bottom: 10px;
}

.btn-send {
	background-color: #28a745; /* Green color for send button */
	color: white;
	padding: 10px 30px;
	border-radius: 5px;
	font-size: 18px;
	transition: background-color 0.3s ease;
}
.btn-send:hover {
	background-color: #218838;
}
.form-control {
	border-radius: 5px;
	padding: 10px;
}
.formTitle{
	font-size: .75rem;
	color: #999;
	margin-bottom: 0rem;
}

.form-control {
  font-size: .75rem;
  color: #999;
}



textarea.form-control {
	min-height: 120px;
	resize: vertical;
}
.map-section {
	margin-top: 50px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
}
.map-section h2 {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 25px;
	color: #333;
	border-bottom: 2px solid #007bff;
	padding-bottom: 10px;
}
.map-placeholder {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 450px; 
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}











.BottomLeftImageSection {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
}

.BottomLeftImageSection .left {
    flex: 1;
    padding: 10px;
}

.BottomLeftImageSection .left img {
    max-width: 100%; /* Resmin kapsayıcıyı aşmasını engeller */
    max-height: 300px; /* Maksimum yükseklik korunur */
    height: auto; /* Orantıyı korur */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: block; /* Resmin altındaki boşluğu kaldırır */
}

.BottomLeftImageSection .right {
    flex: 1;
    padding: 10px;
}
.BottomLeftImageSection .right .title{
	font-size: 2rem;
	font-weight:bold;
	color: #eee;
	line-height: 45px; 
}
.BottomLeftImageSection .right .description{
	font-size: .85rem;
	font-weight:bold;
	font-style: italic;
	color: #eee;
	line-height: 45px; 
	Padding: 10px 0px;
}



/* Mobil cihazlar için medya sorgusu */
@media screen and (max-width: 768px) 
{
    .BottomLeftImageSection {
        flex-direction: column; /* Dikey hizalamaya geç */
    }

    .BottomLeftImageSection .left,
    .BottomLeftImageSection .right {
        flex: none; /* Flex oranını sıfırla */
        width: 100%; /* Tam genişlik */
        padding: 5px; /* Mobil için daha küçük padding */
    }

    .BottomLeftImageSection .left img {
        max-height: 200px; /* Mobil için daha küçük maksimum yükseklik */
    }

    .full_width_content .container .two_column_wrapper {
        padding: 5px; /* Mobil için daha küçük padding */
    }
}



.BottomLeftImageSection .right .TabWrapper{
	max-width:535px;
}
.BottomLeftImageSection .right .TabWrapper .tab{
	
}
.BottomLeftImageSection .right .TabWrapper .tab a{
	font-family: Arial;
	font-size: .6rem;
	font-weight:bold;
	display: inline-block;
	margin-right: 4px;
	color: #ddd;
	text-decoration: none;
	padding-bottom: 8px;
	
}

.BottomLeftImageSection .right .TabWrapper .tab .aktif{
	font-size: .6rem;
	color: #fff;
	border-bottom: 4px solid #49a9e9 !important
}
.BottomLeftImageSection .right .TabWrapper .tabContent{
	padding: 10px;
	border: 1px solid #bbb;
	border-left-color: #ddd;
	
}

.BottomLeftImageSection .right .TabWrapper .tabContent .address{
	font-family: arial;
	font-size: .85rem;
	color: #fff;
	Padding: 5px 0px;
	border-bottom: 1px solid #eee;
}
.BottomLeftImageSection .right .TabWrapper .tabContent .address span{
	font-weight: bold;
}
.BottomLeftImageSection .right .TabWrapper .tabContent .phone{
	font-family: arial;
	font-size: .85rem;
	color: #fff;
	border-bottom: 1px solid #eee;
	Padding: 5px 0px;
}

.BottomLeftImageSection .right .TabWrapper .tabContent .phone span{
	font-weight: bold;
}
.BottomLeftImageSection .right .TabWrapper .tabContent .email{
	font-family: arial;
	font-size: .85rem;
	color: #fff;
	border-bottom: 1px solid #eee;	
	Padding: 5px 0px;
}
.BottomLeftImageSection .right .TabWrapper .tabContent .email span{
	font-weight: bold;
}
.dark{
	background-color: #2b2d33;
}






.owl-logo .item {
    /* Genel çerçeve ve gölgelendirme için */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden; /* İçerik taşmasını engellemek için */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    /*max-width: 300px; /* Genişliği sınırlayabilirsiniz, ihtiyacınıza göre ayarlayın */
    margin: 10px; /* Etrafında boşluk bırakmak için */
    background-color: #fff;
}

.owl-logo .item a {
    text-decoration: none;
    color: inherit;
    display: block; /* Bağlantı alanını tamamen kaplasın */
}

.owl-logo .item .cover {
    display: flex;
    flex-direction: column; /* Öğeleri dikey olarak sırala */
    align-items: flex-start; /* Yatayda başlangıca hizala */
    padding: 10px; /* İç boşluk */
}

.owl-logo .item .cover .images {
    width: 100%; /* Resim kapsayıcısının genişliği */
    margin-bottom: 20px; /* Resim ile başlık arasına boşluk */
    text-align: center; /* Logoyu ortalamak için */
}

.owl-logo .item .cover .images img {
    max-width: 80px; /* STILL logosunun boyutunu ayarlayın */
    height: auto;
    display: block; /* Gereksiz boşlukları kaldırmak için */
    margin: 0 auto; /* Logoyu yatayda ortala */
}

.owl-logo .item .cover .content {
    flex-grow: 1; /* Başlık ve açıklama kısmı kalan alanı doldursun */
    margin-bottom: 4px; /* İçerik ile ikon arasına boşluk */
}

.owl-logo .item .cover .content .title {
    font-size: 1em; /* Başlık boyutu */
    font-weight: bold;
    color: #333;
    margin-bottom: 5px; /* Başlık ile açıklama arasına boşluk */
}

.owl-logo .item .cover .content .description {
    font-size: .8em; /* Açıklama boyutu */
    color: #666;
}

.owl-logo .item .cover .icon {
    align-self: flex-start; /* İkonu sağ alt köşeye hizala */
    margin-top: auto; /* İkonu alta itmek için */
}

.owl-logo .item .cover .icon .arrow-circle {
    width: 25px;
    height: 25px;
    background-color: #007bff; /* Mavi renkli daire */
    border-radius: 50%; /* Daire şekli */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease; /* Hover efekti için geçiş */
}

.owl-logo .item .cover .icon .arrow-circle:hover {
    background-color: #0056b3; /* Hover'da daha koyu mavi */
}

.owl-logo .item .cover .icon .arrow-circle svg {
    fill: white; /* Ok rengi beyaz */
    width: 24px;
    height: 24px;
}




























.ProductHeadline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin: 20px 0px;
  flex-wrap: wrap;
}
.leftColumn,.RightColumn {
  flex: 1 1 45%;
  box-sizing: border-box;
  min-width: 300px;
}
.leftColumn{
	Padding: 6px;
	border: 1px solid #ddd;
}
.ProductImagepreview {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  
  
}
.main-image {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  border-radius: 8px;
}
.slider-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 10;
}
.slider-buttons button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.slider-buttons button:hover {
  background: rgba(0, 0, 0, 0.7);
}
.slider-buttons button:disabled {
  background: rgba(204, 204, 204, 0.7);
  cursor: not-allowed;
}
.thumbnail-container {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.thumbnail {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.thumbnail:hover {
  border-color: #007bff;
}
.thumbnail.selected {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
}
.RightColumn {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #f9f9f9;
}
.product-info h2 {
  margin-top: 0;
  font-size: 1.8em;
  color: #333;
  margin-bottom: 15px;
}
.product-info p {
  margin: 8px 0;
  font-size: 1.1em;
  color: #555;
}
.price {
  color: #e44d26;
  font-size: 2em;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.product-info span[style="color: green;"] {
  font-weight: bold;
}
.add-to-cart {
  background: #ff6200;
  color: white;
  border: none;
  padding: 15px 25px;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.add-to-cart:hover {
  background: #e45a00;
  transform: translateY(-2px);
}

/* Mobil görünüm: 768px ve altı */
@media screen and (max-width: 768px) {
  .ProductHeadline {
    flex-direction: column;
    gap: 30px;
  }
  .leftColumn,
  .RightColumn {
    flex: 1 1 100%;
    min-width: unset;
  }
  .title {
    font-size: 2em;
  }
  .description {
    font-size: 1em;
  }
  .product-info h2 {
    font-size: 1.5em;
  }
  .price {
    font-size: 1.8em;
  }
  .add-to-cart {
    padding: 12px 20px;
    font-size: 1.1em;
  }
}

/* MODAL (LIGHTBOX) CSS KURALLARI */
.modal {
  display: none; /* Varsayılan olarak gizli */
  position: fixed; /* Ekranın üzerinde sabit kalır */
  z-index: 9999; /* En yüksek z-index */
  left: 0;
  top: 0;
  width: 100%; /* Tam genişlik */
  height: 100%; /* Tam yükseklik */
  overflow: hidden; /* Sayfanın kaydırmasını engellemek için */
  background-color: rgba(0, 0, 0, 0.9); /* Yarı şeffaf siyah arka plan */
  align-items: center; /* Dikeyde ortala */
  justify-content: center; /* Yatayda ortala */
  /* position: relative; // Kapatma düğmesi modal-content-wrapper içinde olduğu için modal'a relative vermeye gerek yok */
}

.modal-content-wrapper {
  display: flex;
  position: relative; /* Kapatma düğmesi için konumlandırma bağlamı */
  max-width: 90%; /* Modal içeriğinin maksimum genişliği */
  max-height: 90%; /* Modal içeriğinin maksimum yüksekliği */
  background-color: #fefefe; /* Modal arka plan rengi */
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-left-panel {
  flex: 3; /* Sol panelin daha geniş olması için */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px; /* İç boşluk */
  background-color: #fefefe;
}

.modal-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Resmi içeriğe sığdırır, orantıyı korur */
}

.modal-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
  z-index: 1001; /* Düğmelerin resmin üzerinde olması için */
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.modal-nav-button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

#modalPrevBtn {
  left: 10px;
}
#modalNextBtn {
  right: 10px;
}

.modal-right-panel {
  flex: 1; /* Sağ panelin daha dar olması için */
  background-color: #fefefe;
  padding: 15px;
  overflow-y: auto; /* Dikey kaydırma çubuğu */
  display: flex;
  flex-direction: column;
  align-items: center; /* Küçük resimleri ortalamak için */
  border-left: 1px solid #eee;
}

.modal-thumbnails {
  display: flex;
  flex-direction: column; /* Küçük resimleri alt alta sırala */
  gap: 10px;
}

.modal-thumbnail {
  width: 90px; /* Küçük resimlerin genişliği */
  height: 90px; /* Küçük resimlerin yüksekliği */
  object-fit: cover; /* Resimleri kutuya sığdırır, kırpabilir */
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-thumbnail:hover {
  border-color: #007bff;
}
.modal-thumbnail.selected {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.8);
}

.close-button {
  position: absolute;
  top: -15px; /* Daha fazla dışarı taşı */
  right: -15px; /* Daha fazla dışarı taşı */
  color: #333;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
  background-color: #fefefe;
  border-radius: 50%;
  width: 50px; /* Genişlik artırıldı */
  height: 50px; /* Yükseklik artırıldı */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  line-height: 50px; /* İçeriği dikeyde tam ortalar */
  padding: 0; /* Padding sıfırlandı */
}

.close-button:hover,
.close-button:focus {
  color: #666; /* Hoverda biraz koyu gri */
  text-decoration: none;
  background-color: #eee;
}

/* Mobil uyumluluk için Modal */
@media screen and (max-width: 768px) {
  .modal-content-wrapper {
    flex-direction: column;
    max-width: 95%;
    max-height: 95%;
  }
  .modal-left-panel {
    padding: 10px;
    flex: none;
    height: 60vh;
  }
  .modal-right-panel {
    flex: none;
    height: 30vh;
    padding: 10px;
    border-left: none;
    border-top: 1px solid #eee;
  }
  .modal-nav-button {
    padding: 5px 10px;
    font-size: 16px;
    width: 35px;
    height: 35px;
  }

  .close-button {
    font-size: 30px;
    top: -15px; /* Mobil için biraz daha az dışarı taşı */
    right: -15px;
    width: 40px; /* Mobil için boyut */
    height: 40px;
    line-height: 40px;
  }

  .modal-thumbnails {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .modal-thumbnail {
    width: 60px;
    height: 60px;
  }
}






@media (min-width: 576px) {
  .progress-wrap.active-progress {
    opacity: 1;
  }
}
.progress-wrap {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 2.3rem;
  height: 2.3rem;
  cursor: pointer;
  display: block;
  border-radius: 100%;
  box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: all 200ms linear, margin-right 0ms;
}
@media (prefers-reduced-motion: reduce) {
  .progress-wrap {
    transition: none;
  }
}
.progress-wrap.active-progress {
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap:after {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "\f062";
  text-align: center;
  line-height: 2.3rem;
  font-size: 1.2rem;
  color: #3f78e0;
  left: 0;
  top: 0;
  height: 2.3rem;
  width: 2.3rem;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .progress-wrap:after {
    transition: none;
  }
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #3f78e0;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .progress-wrap svg.progress-circle path {
    transition: none;
  }
}
@media (min-width: 576px) {
  .progress-wrap.active-progress {
    opacity: 1;
  }
}