<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

footer {
  width: 100%;
}
  .footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    color: black;
    font-size: 14px;
	  column-gap: 20px;
	  margin: 0 auto;
	  width:80%
  }

  .footer-column {
    flex: 1 1 300px;
    margin-bottom: 30px;
    padding: 30px 20px;
	  border:1px solid #e5e5e5;
  }

  .footer-column h2 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .footer-column p {
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .footer-bottom-links {
    border-top: 1px solid #e5e5e5;
    padding: 20px 10px;
    text-align: center;
    font-size: 12px;
    color: #000;
  }

  .footer-bottom-links a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease;
  }

  .footer-bottom-links a:hover {
    color: #000;
    text-decoration: underline;
  }


.footer-link-clean {
  color: inherit;         
  text-decoration: none;   
  cursor: pointer;         
}

.footer-link-clean:hover {
  text-decoration: none;
	color: inherit;
}

.footer-genel-link {
  color: #333;
  text-decoration: none;
}

.footer-genel-link:hover {
  color: #000;
	text-decoration: underline;
}



.footer-cosmos-btn{
	border:1px solid #ccc; padding:12px 25px; margin:5px; display: inline-block; text-decoration:none; cursor:pointer; color:black;
}

.footer-cosmos-btn:hover{
	text-decoration:none;
	background-color:#000;
	color:white;
	border:1px solid #000;
}

.icon-mask-footer svg {
  width: 30px;
  height: 30px;
	color: #000;
	 justify-content: center;
}

.icon-mask-footer:hover svg {
	color: #3399ff;
}




.footer-icon-palmet{
	display: inline-block;  /* veya block */
	width: 100px;
	height: auto;
	color: #402b64;
	margin-top: auto;
	margin-bottom: auto;
	
}


  @media (max-width: 768px) {
    .footer-wrapper {
      flex-direction: column;
      align-items: flex-start;
		width:96%
    }

    .footer-column {
      width: 100%;
    }

    .footer-bottom-links {
      font-size: 11px;
    }
  }




</pre></body></html>