.site-footer {
  background-color: #c2c2c2;
  color: #ce4a0d;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.footer-logo img {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #000000;
}

.footer-container h3{
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-social ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ce4a0d;
}

.footer-contact p {
  font-size: 0.9rem;
  color: #000000;
  text-align: start;
}

.footer-social ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.footer-social a i{
  color: #ce4a0d;
  font-size: 1.7rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a i:hover {
  color: #ff8c42;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #202020;
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 2rem;
  font-size: 0.8rem;
  color: #000000;
}

.footer-bottom .coockies{
  display: flex;
  flex-direction: row;
  gap: 1rem;

}

.dev-lnk{
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dev-lnk:hover{
  color: #c47500;
  transform: scale(1.1);
  
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social ul {
    justify-content: center;
  }

  
}

@media (min-width: 1200px) {
  .footer-bottom {

  flex-direction: row;
  
}

.site-footer{
  padding: 2rem 4rem;
}
  
}