.footer {
  background-color: var(--primary-600);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer-slider-container {
  display: flex;
  align-items: center;
  padding: 4rem 0rem;
  gap: 3rem;
  flex: 1 0 0;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.footer-slider-title {
  font: var(--f-h-h2);
  color: var(--white);
  text-wrap: nowrap;
}

.footer-slider-svg {
  width: 2rem;
  height: 2rem;
    flex-shrink: 0;
}

.footer-wrapper {
  display: flex;
  padding: 4rem;
  padding-bottom: 2rem;
  flex-direction: column;
  gap: 3rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  color: var(--neutral-300);
  font: var(--f-t-s);
  font-weight: 600;
  text-transform: uppercase;
}

.footer-link-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--white);
  font: var(--f-t-xl);
  width: fit-content;
  transition: var(--t200);
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.6px;
  bottom: -2px;
  left: 0;
  background-color: var(--white);
  transform-origin: bottom right;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer-separator {
  height: 1px;
  background-color: var(--primary-300);
}

.footer-bottom-wrapper{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-text{
  font: var(--f-t-s);
  color: var(--white);
}

.text-footer-underline{
  text-decoration: underline;
  font-weight: 600;
}


/* === RESPONSIVE === */
@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 768px) {

.footer-slider-container {
  padding: 4rem 0rem;
}

.footer-slider-title {
  font: var(--f-h-h4);
}

.footer-slider-svg {
  width: 1.75rem;
  height: 1.75rem;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  padding: 4rem 2rem;
  padding-bottom: 2rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-title {
  color: var(--neutral-300);
  font: var(--f-t-s);
  font-weight: 600;
  text-transform: uppercase;
}

.footer-link-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--white);
  font: var(--f-t-l);
}

.footer-separator {
  height: 1px;
  background-color: var(--primary-300);
}

.footer-bottom-wrapper{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom-text{
  font: var(--f-t-s);
  color: var(--white);
}

.text-footer-underline{
  text-decoration: underline;
  font-weight: 600;
}
}

@media screen and (max-width: 480px) {
}
