
/** page-title **/

.page-title {
  /* position: relative;  Eğer BG layer section'ı kaplıyorsa gerekli */
  padding: 275px 0px 218px 0px;
}

.page-title .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  
  /* Buraya yeni bir katman ekliyoruz. */
  /* Bu katman, arka plan resminin üzerine biner. */
  background-image: url('arkaplan.jpg'); /* Resminizi buraya ekleyin */
}

/* Saydam renk katmanını .bg-layer üzerine ekleyelim */
.page-title .bg-layer::before {
  content: "";
  position: absolute; /* .bg-layer elemanına göre konumlanır */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  
  /* Saydam katmanımız */
  background-color: rgba(0, 0, 0, 0.5); /* Siyah ve %60 opaklık */
  z-index: 1; /* Arka plan resminin üzerine yerleşir */
}

/* Yazı içeriği, katmanın üzerine çıkmalı */
.page-title .auto-container {
  position: relative; /* z-index için gerekli */
  z-index: 2; /* bg-layer'dan daha yüksek bir değer */
}

.page-title .content-box {
  position: relative; /* z-index için gerekli */
  z-index: 2; /* auto-container'dan daha yüksek bir değer */
  color: #fff; /* Yazıların beyaz olması için */
}

.page-title .bread-crumb {
  z-index: 3; /* Ekstra güvenlik için */
}

.page-title a {
  /* Linklerin rengi */
  color: #fff;
}

/* Diğer iç elemanlarınızın stilleri */
.content-box h1,
.content-box .bread-crumb {
  color: #fff;
}

.content-box a {
  color: #fff;
}

.page-title .image-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.page-title h1{
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 68px;
  font-weight: 700;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 25px;
  font-family: var(--title-font);
  color: var(--theme-color);
  padding-right: 25px;
  margin-right: 3px;
}

.page-title .bread-crumb li a{
  color: var(--theme-color);
}

.page-title .bread-crumb li a:hover{
  text-decoration: underline;
}

.page-title .bread-crumb li:before{
  position: absolute;
  content: '\e915';
  font-family: 'icomoon';
  top: 1px;
  right: 0px;
  font-size: 18px;
}

.page-title .bread-crumb li:last-child:before{
  display: none;
}



/** RTL-CSS **/




/** RESPONSIVE-CSS **/

@media only screen and (max-width: 1599px){
  



@media only screen and (max-width: 1200px){



}

@media only screen and (max-width: 991px){

  .page-title .image-layer{
    display: none;
  }

}

@media only screen and (max-width: 767px){

  .page-title{
    padding: 200px 0px 100px 0px;
  }

  .page-title h1{
    font-size: 40px;
    line-height: 50px;
  }

}

@media only screen and (max-width: 599px){

  

}

@media only screen and (max-width: 499px){



}












































