﻿.footer-relative {
  position: relative;
}

.footer-border-top {
  border-top: 1px solid #ccc;
}

.footer-bg-first {
  background-color: var(--background-color-first);
}

.footer-text-color {
  color: var(--text-color);
}

.footer-transition {
  transition: all 0.3s;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.footer-padding-y-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-lg-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-mb-4 {
  margin-bottom: 1rem;
}

.footer-mb-6 {
  margin-bottom: 1.5rem;
}

.footer-mt-12 {
  margin-top: 3rem;
}

.footer-pt-8 {
  padding-top: 2rem;
}

.footer-flex {
  display: flex;
}

.footer-flex-col {
  flex-direction: column;
}

.footer-items-center {
  align-items: center;
}

.footer-justify-between {
  justify-content: space-between;
}

.footer-gap-4 {
  gap: 1rem;
}

.footer-text-center {
  text-align: center;
}

.footer-text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.footer-font-semibold {
  font-weight: 600;
}

.footer-text-sm {
  font-size: 0.875rem;
}

.footer-not-italic {
  font-style: normal;
}

.footer-text-sm-secondary {
  font-size: 0.875rem;
  color: var(--text-color);
}


.footer-space-y-2 > * + * {
  margin-top: 0.5rem;
}

.footer-space-x-4 > * + * {
  margin-left: 1rem;
}

.footer-border {
  border: 1px solid #ccc;
}

.footer-rounded-full {
  border-radius: 9999px;
}

.footer-p-2 {
  padding: 0.5rem;
}

.footer-hover-secondary:hover {
  background-color: var(--secondary-color);
  color: #ffffff;  
}

.footer-hidden {
  display: none;
}

.footer-fixed {
  position: fixed;
}

.footer-bottom-8 {
  bottom: 2rem;
}

.footer-right-8 {
  right: 2rem;
}

.footer-p-3 {
  padding: 0.75rem;
}

.footer-bg-secondary {
  background-color: var(--secondary-color);
}

.footer-text-white {
  color: #ffffff;
}

.footer-shadow-lg {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-outline-none:focus {
  outline: none;
}

.footer-transform:hover {
  transform: scale(1.1);
}