footer {
  padding-top: 50px;
  background-color: var(--color-black);
}

.footer_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer_top-right {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.875rem, 0.4369rem + 4.8443vw, 6.25rem);
}

.footer_top-menu h5 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: "Montserrat", serif;
  font-weight: 700;
}
.footer_top-menu ul {
  margin-bottom: 20px;
}
.footer_top-menu li + li {
  margin-top: 20px;
}

.footer_top-menu li a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.4s;
  font-weight: 600px;
}
.footer_top-menu li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer_top-menu p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  max-width: 350px;
}

.footer_top-menu ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(1.875rem, 1.0532rem + 2.7682vw, 4.375rem);
}
.copy_text {
  color: rgba(255, 255, 255, 0.6);
}
.footer_bottom-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer_bottom-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.4s;
}

.footer_bottom-raw {
  height: 10px;
  width: 100%;
  margin-top: 20px;
  background-color: var(--color-yellow);
}

.fixed_button {
  position: fixed;
  z-index: 10;

  & > svg {
    aspect-ratio: 1;
    width: 16px;
  }
}

.fixed_phone {
  bottom: 60px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  right: 8px;
}

.fixed_menu {
  bottom: 20px;
  right: 0;
  width: 36px;
  height: 28px;
  border-radius: 50px 0 0 50px;
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
  padding-left: 8px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .fixed_button > svg {
    width: 24px;
  }

  .fixed_phone {
    bottom: 80px;
    width: 50px;
    height: 50px;
    right: 10px;
  }

  .fixed_menu {
    width: 60px;
    height: 50px;
    padding-left: 15px;
  }
}

/* @media (min-width: 1400px) {
  .fixed_button > svg {
    width: 30px;
  }

  .fixed_phone {
    bottom: 100px;
    width: 70px;
    height: 70px;
  }

  .fixed_menu {
    width: 80px;
    height: 70px;
    padding-left: 20px;
  }
} */
