/* =====================
Temel Ayarlar
===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  scroll-behavior: smooth;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* =====================
Header / Banner
===================== */
.banner {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 70px;
}

.project-title h1 {
  color: white;
  font-size: 22px;
  font-weight: 700;
}

.project-title h2 {
  color: #ddd;
  font-size: 12px;
}

.banner a {
  text-decoration: none !important;

}

.banner a:visited,
.banner a:active,
.banner a:hover {
  text-decoration: none !important;
}












/* =====================
Menü
===================== */
nav ul, .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #fff;
  position: relative;
  padding: 10px;
  font-weight: 500;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #ffd700;
}

/* =====================
Hamburger Menü
===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100px;
  right: 40px;
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 25px;
  border-radius: 8px;
  gap: 15px;
  z-index: 1002;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* =====================
Katıl Gönüllü Ol
===================== */
.katil-gonullu {
  position: fixed;
  top: 85%;
  right: 3%;
  transform: translateY(-50%);
  z-index: 1001;
  cursor: pointer;
}

.katil-gonullu .circle {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.katil-gonullu img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.katil-gonullu span {
  color: #571010;
  font-weight: 500;
  font-size: 11px;
}

.katil-gonullu:hover .circle {
  transform: scale(1.1);
}

/* =====================
Slider
===================== */
#anasayfa {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide:first-child {
  opacity: 1;
}

.slide-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
}

.slide-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.slide-text p {
  font-size: 18px;
}



@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* =====================
Placeholder Bölümler
===================== */
.placeholder {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: 600;
  color: #555;
}

/* =====================
Responsive Slider Text
===================== */

@media (max-width: 1024px) {
  .slide-text h1 {
    font-size: 32px;
  }
  .slide-text p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .slide-text h1 {
    font-size: 26px;
  }
  .slide-text p {
    font-size: 14px;
  }

  .slide-text {
    bottom: 20%;
    left: 5%;
  }

  .katil-gonullu {
    right: 20px;
    width: 90px;
    height: 90px;
  }

  .katil-gonullu .circle img {
    width: 40px;
    height: 40px;
  }

  .katil-gonullu span {
    font-size: 12px;
  }
}

/* Slider yüksekliği responsive */
@media (max-height: 700px) {
  #anasayfa {
    height: 80vh;
  }
}

/* Placeholder responsive font */
@media (max-width: 768px) {
  .placeholder {
    font-size: 28px;
    padding: 0 15px;
    text-align: center;
  }
}

/* Aktif menü linki */
.nav-links a.active-link {
  color: #ffd700;
}

.nav-links a.active-link::after {
  width: 100%;
  background-color: #ffd700;
}
/* =====================
Footer
===================== */
.site-footer {
  background-color: #111;
  color: #ddd;
  padding: 50px 60px 20px 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 80%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* sütunlar üstten hizalı */
  gap: 40px;
}

.footer-column {
  flex: 1 1 220px;  /* esnek büyüme, minimum genişlik 220px */
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.footer-logo img {
  width: 80px;
  margin-bottom: 10px;
}

.footer-project-info p {
  font-size: 12px;
  line-height: 1.4;
  margin: 2px 0;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-social a:hover {
  opacity: 1;
}

.partners {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partner a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ddd;
  opacity: 0.8;
  transition: 0.3s;
}

.partner a:hover {
  opacity: 1;
}

.partner img {
  width: 50px;
  height: 50px;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 15px;
}

.footer-menu a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
  
}

.footer-menu a:hover {
  color: #ffd700;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0; /* başlık yüksekliği sabit */
}

.footer-bottom {
  text-align: left;
  margin-top: 30px;
  font-size: 12px;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 10px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    min-width: 100%;
  }

  .partners {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer-social a img {
  width: 30px;   /* tüm ikonlar aynı genişlik */
  height: 30px;  /* tüm ikonlar aynı yükseklik */
  object-fit: contain;
  transition: 0.3s;
}

.footer-social a:hover img {
  opacity: 1;
  transform: scale(1.1); /* hover efekti ile büyüme */
}
.contact-box {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact-link:hover {
  color: #ffd700;
}

.contact-subtext {
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
}

/* Ortak yükseklik için tüm sütunlara align stretch */
.footer-column > * {
  flex-shrink: 0;
}




.footer-column a {
  color: inherit;        /* Mevcut metin rengiyle aynı olur */
  text-decoration: none; /* Alt çizgi kalkar */
}

.footer-column a:hover {
  color: inherit;        /* Üzerine gelince de renk değişmez */
}
/* Responsive düzen */
@media (max-width: 1024px) {
  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* Scroll Katmanı */
.scroll-down {
  position: fixed;
  bottom: 0;
  left: 0%; /* ortalanması için */
  transform: translateX(0%);
  width: 100%;
  background-color: rgba(24, 23, 23, 0.0); /* normal arka plan */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  z-index: 1000;
  animation: slideIn 1s ease-out;
  overflow: hidden; /* pseudo-element için */
}

/* Hover arka plan animasyonu için pseudo-element */
.scroll-down::before {
  content: '';
  position: absolute;
  top: -100%; /* başta yukarıda gizli */
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 23, 23, 0.1); /* hover rengi */
  z-index: 0; /* içerik üstünde */
  transition: top 0.3s ease; /* kayma animasyonu */
}

/* İçerik her zaman üstte */
.scroll-down * {
  position: relative;
  z-index: 1;
}

/* Hover olunca pseudo-element aşağı kayar */
.scroll-down:hover::before {
  top: 0;
}

/* Yön oku ikonu */
.scroll-down .scroll-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

/* Eğer ikon büyüme efekti istersen */
.scroll-down:hover .scroll-icon {
  transform: scale(1.1);
}

/* Scroll ok ikonu */
.scroll-icon {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

/* Hover efekti: ok biraz büyür */
.scroll-down .scroll-link:hover .scroll-icon {
  transform: scale(1.1);
}

/* Animasyon: Katman için */
@keyframes slideIn {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}



/* ---------------------- projeler sayfası için --------------- */



/* İçerik alanı %30 - %70 */
.proje-content {
  display: flex;
  margin-top: 100px;
  width: 100%;
  /* min-height: calc(150vh - 250px);  banner altını doldurur */
}




/* Sol menü */
.proje-left-menu {
  width: 30%;
  background-color: rgba(230, 228, 225, 0.2);
  display: flex;
  flex-direction: column; /* Hizalamayı düzeltir */
  align-items: flex-end;
  padding-right: 40px;
  /* KİLİT NOKTA BURASI: */
  position: -webkit-sticky; /* Safari desteği */
  position: sticky;
  top: 100px; /* Header'dan sonra ekranda asılı kalacağı mesafe */
  height: 100hv; /* Sadece içeriği kadar yer kaplasın */
  max-height: 100vh;
}

.proje-left-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 40%;
  opacity: 0;
  transform: translateX(-100px); /* soldan giriş efekti */
  transition: all 0.7s ease;
}

.proje-left-menu ul.show {
  opacity: 1;
  transform: translateX(0);
}

.proje-left-menu li {
  margin: 20px 0;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width:auto; /* Menü genişliği */
  gap: 20px;
}




.menu-icon {
  margin-left: auto; /* sağ ikonu en sağa iter */
}

.proje-left-menu li:hover {
  
  color: #f39c12; /* hover renk değişimi */
}

/* Sağ içerik */
.proje-right-content {
  width: 70%;
  padding: 40px;
}





.proje-right-content section {
  position: relative;
  margin-bottom: 0;   
  min-height: 100vh;   /* Her bölüm tam sayfa */
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Metinleri dikey ortala */
  box-sizing: border-box;
}




.proje-right-content h2 {
  margin-bottom: 20px;
}

.proje-right-content p {
  line-height: 1.8;         
  font-size: 17px;          
  color: #444;             
  margin-bottom: 22px;      
  text-align: justify;     
}
.proje-right-content ul {
  padding-left: 20px;
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
  margin-left: 0;

}

.proje-right-content ul li {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  position: relative;
  padding-left: 18px;
}


.proje-right-content ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #f39c12; 
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.proje-right-content ul li:hover::before {
  transform: scale(1.4);
}


.menu-icon {
width: 20px;     /* Küçültülmüş */
  height: 20px;    /* Küçültülmüş */
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.menu-icon-flap {
width: 20px;     /* Küçültülmüş */
  height: 20px;    /* Küçültülmüş */

}



/* Açılmış menü ikonu */
.menu-icon.rotate {
  transform: rotate(90deg);
}


.section-icon {
  position: absolute;
  top: 15%;
  right: 40px;
  transform: translateY(-50%);
}

.section-icon img {
  width: 250px;
  height: auto;
  float: right;                 /* yazı sağdaki resmin etrafından aksın */
  shape-outside: inset(0);      /* metnin resme takılmasını engelle */
  margin-left: 50px;  
  margin-bottom: 50px;          /* metin - resim arası boşluk */
  opacity: 0.9;
  transition: transform 0.3s ease;
  
}

/* Section relative olmalı */
section {
  position: relative;
}



/* Hover efekti */
.section-icon img:hover {
  transform: scale(1.05);
}


.ortaklar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.ortak-kutu {
    padding: 20px;
    color: #333;
    line-height: 1.5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo-wrapper {
  display: flex;
  justify-content: flex-start;  /* Sola hizala */
  align-items: center;
  gap: 15px;        /* Çoklu logolarda aradaki boşluk */
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd; /* İnce ayırıcı çizgi */
}

.ortak-logo {
  height: 60px;     /* TÜM LOGOLARIN STANDART BOYU */
  width: auto;      /* En-boy oranı korunur */
  object-fit: contain;
}

/* Her kutu farklı renk */
.kutu1 { background-color: #FFAD60; }   /* Açık mavi */
.kutu2 { background-color: #FFEEAD; }   /* Açık yeşil */
.kutu3 { background-color: #96CEB4; }   /* Açık turuncu */

/* İçerik uyumu */
.ortak-kutu h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ortaklar-grid {
        grid-template-columns: 1fr;
    }
}



/* Section genel ayarı */
#proje-hakkinda {
  display: flex;
  justify-content: center;
  padding: 30px 0 100px 0;
  background: #C4ECD3; /* soft arka plan */
}

/* Container %80 genişlik */
#proje-hakkinda .container {
  width: 80%;
  height: 50%;
  display: flex;
  justify-content: space-between; /* 4 sütunu eşit aralıklı yapar */
  gap: 20px;
}

/* Her sütun kutusu */

.proje-box {
  flex: 1;                    
  background: #FFEEAD;
  text-align: center;
  padding: 20px 10px;
  border-radius: 2px;
  box-shadow: 0 2px 10px #BC69AA;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;

  /* YENİ: resim + yazı düzeni */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;     /* resim ile yazı arası */
}

/* Resimler */
.proje-box img {
  width: 200px;
  height: 200px;
  object-fit: contain; /* bozulmayı engeller */
  pointer-events: none; /* tıklama sadece kutuya olsun */
}

/* Hover durumu */
.proje-box:hover {
  background: #fd7373;
  color: #fff;
  transform: translateY(-40px);
}

/* Hover olduğunda resim rengini ters seçmek istersen aktif edilebilir
.proje-box:hover img {
  filter: brightness(0) invert(1);
}
*/





/* AKTİVİTELER SAYFASI İÇİN EKLENEN -------------------------------*/


.activity-right-panel {
    width: 100%;
    height: 100vh;    
    position: relative;
    overflow: hidden;
}

/*
.activity-collage {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.activity-collage.active {
    display: block;
}


.activity_slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.activity_slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.activity_slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}


.activity_slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.prev { left: 10px; }
.next { right: 10px; } */

#aktiviteler {
  background-color: rgb(164, 204, 217); /* İstediğin renk kodu */
  padding: 30px 0 100px 0; /* örnek padding */
  display: flex;
  justify-content: center;
}

#aktiviteler .container {
  width: 80%;
  height: 50%;
  display: flex;
  justify-content: space-between; /* 4 sütunu eşit aralıklı yapar */
  gap: 20px;
}

#aktiviteler .proje-box {
  flex: 1;                    
  background: rgb(33, 91, 99);
  text-align: center;
  padding: 20px 10px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: rgb(103, 192, 144);

  /* YENİ: resim + yazı düzeni */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;     /* resim ile yazı arası */
}

/* Resimler */
#aktiviteler .proje-box img {
  width: 220px;
  height: 220px;
  object-fit: contain; /* bozulmayı engeller */
  pointer-events: none; /* tıklama sadece kutuya olsun */
}

/* Hover durumu */
#aktiviteler .proje-box:hover {
  background: rgb(18, 65, 112);
  color: rgb(170, 255, 199);
  transform: translateY(-40px);
}




#etkinlikler {
  background-color: #E8E2DB; /* İstediğin renk kodu */
  padding: 30px 0 100px 0; /* örnek padding */
  display: flex;
  justify-content: center;
}

#etkinlikler .container {
  width: 80%;
  height: 50%;
  display: flex;
  justify-content: space-between; /* 4 sütunu eşit aralıklı yapar */
  gap: 20px;
}

#etkinlikler .proje-box {
  flex: 1;                    
  background: #FAB95B;
  text-align: center;
  padding: 20px 10px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: rgb(18, 22, 20);

  /* YENİ: resim + yazı düzeni */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;     /* resim ile yazı arası */
}

/* Resimler */
#etkinlikler .proje-box img {
  width: 220px;
  height: 220px;
  object-fit: contain; /* bozulmayı engeller */
  pointer-events: none; /* tıklama sadece kutuya olsun */
}

/* Hover durumu */
#etkinlikler .proje-box:hover {
  background: #AE2448;
  color: rgb(255, 255, 255);
  transform: translateY(-40px);
}






/* iletişim bölümü */

#iletisim {
  background-color: #f5d796; /* İstediğin renk kodu */
  padding: 30px 0 100px 0; /* örnek padding */
  display: flex;
  justify-content: center;
}

#iletisim .container {
  width: 80%;
  height: 50%;
  display: flex;
  justify-content: space-between; /* 4 sütunu eşit aralıklı yapar */
  gap: 20px;
}

#iletisim .proje-box {
  flex: 1;                    
  background: #f0e2e2;
  text-align: center;
  padding: 20px 10px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: rgb(18, 22, 20);

  /* YENİ: resim + yazı düzeni */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;     /* resim ile yazı arası */
}

/* Resimler */
#iletisim .proje-box img {
  width: 250px;
  height: 250px;
  object-fit: contain; /* bozulmayı engeller */
  pointer-events: none; /* tıklama sadece kutuya olsun */
}

/* Hover durumu */
#iletisim .proje-box:hover {
  background: #3d056b;
  color: rgb(255, 255, 255);
  transform: translateY(-40px);
}





/* dosyalar blümü için */

.dosyalar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Kart */
.dosyalar-kutu {
    background: #f3f3f3;
   
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
    min-height: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.dosyalar-kutu:hover {
    background: #ffbf83;
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Icon */
.dosya-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-left: 10px;
}

/* Text alanı */
.dosya-text {
    display: flex;
    flex-direction: column;
}

/* Başlık */
.dosya-title {
    font-size: 18px;
    font-weight: bold;
}

/* Açıklama */
.dosya-desc {
    font-size: 15px;
    opacity: 0.8;
}

/* Hover yazı rengi */
.dosyalar-kutu:hover .dosya-title,
.dosyalar-kutu:hover .dosya-desc {
    color: #fff;
}

/* Mobil */
@media (max-width: 768px) {
    .dosyalar-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

  #proje-hakkinda .container,
  #aktiviteler .container,
  #etkinlikler .container,
  #iletisim .container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 40% !important;
    padding: 0 15px;
  }

  .proje-box,
  .proje-box img {
    width: 40% !important;
    height: 40% !important;
  }




  .placeholder {
    height: auto !important;
    min-height: auto !important;
    padding: 5px 0;
  }

}










