@import url('https://fonts.googleapis.com/css2?family=Poppins: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');
  .footer {
  background: #111;
  color: #d2d2d7;
  font-family: 'Poppins', sans-serif;
  width:100%;
}

/* ÜST */
.footer-top {
  padding: 20px 20px 30px;  
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding:10px;

}

/* başlık */
.footer-grid h4 {
  font-size: 1.3rem;
  color: #f5f5f7;
  margin-bottom: 10px;
  font-weight: 500;
}

/* link */
.footer-grid a {
  display: block;
  font-size: 1rem;
  color: #a1a1a6;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.2s;
    line-height: 1.8;
}

.footer-grid a:hover {
  color: #fff;
}

/* metin */
.footer-grid p {
  font-size: 1rem;
  color: #a1a1a6;
  line-height: 1.8;
  margin-bottom: 12px;
}


/* ORTA NOT */
.footer-note {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px;
  font-size: 1rem;
  color: #6e6e73;
  text-align:center;
  border-top: 1px solid #2c2c2e;
    line-height: 1.8;
}

/* ALT */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px 30px;
  border-top: 1px solid #2c2c2e;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  color: #6e6e73;
    line-height: 1.8;
}

.footer-bottom a {
  color: #6e6e73;
  text-decoration: none;
  margin-left: 15px;
}

.footer-bottom a:hover {
  color: #fff;
}

   .blikson{
 margin-right: 8px; 
 font-size: 0.9rem; 
 color: #4169E1; 
 -webkit-transition: color 0.4s ease-in-out;
-moz-transition: color 0.4s ease-in-out;
-ms-transition: color 0.4s ease-in-out;
-o-transition: color 0.4s ease-in-out;
transition: color 0.4s ease-in-out;
 }
 
    .blikson:hover{
 color: lightyellow; 
 -webkit-transition: color 0.4s ease-in-out;
-moz-transition: color 0.4s ease-in-out;
-ms-transition: color 0.4s ease-in-out;
-o-transition: color 0.4s ease-in-out;
transition: color 0.4s ease-in-out;
-moz-transform: scale(1.02);
-webkit-transform: scale(1.02);
-o-transform: scale(1.02);
-ms-transform: scale(1.02);
transform: scale(1.02);
 
 }
/* responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
	gap:30px;
  padding-left:30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

 
  .bottom-right a {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
	gap:10px;
	padding-left:30px;
  }
}