@charset "UTF-8";
/* ----- подключаем шрифты ----- */
@font-face {
  font-family: "Inter-regular";
  src: url("../assets/fonts/Inter-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter-bold";
  src: url("../assets/fonts/Inter-Bold.ttf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant-regular";
  src: url("../assets/fonts/Cormorant-Regular.woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant-semibold";
  src: url("../assets/fonts/Cormorant-SemiBold.woff");
  font-weight: 600;
  font-style: normal;
}
/* ----- стили шрифтов ----- */
/* ----- цвета и эффекты ----- */
/* ----- размеры ----- */
.padded_box {
  max-width: 1440px;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 0 auto;
}

@media (min-width: 769px) and (max-width: 1280px) {
  .padded_box {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .padded_box {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
/* ----- корневые настройки ----- */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #151515;
}

/* ----- кнопки и ссылки ----- */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}

.logo {
  height: 1.5rem;
  width: 11.25rem;
  fill: #685c54;
}
.logo svg {
  height: 100%;
  width: 100%;
}
.logo use {
  height: 100%;
  width: 100%;
}

.footer_buttons {
  display: flex;
  gap: 1.5rem;
}

.footer_button {
  display: flex;
  gap: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  color: #685c54;
  fill: #685c54;
  font-family: "Cormorant-regular", serif;
  font-size: 1.25rem;
  line-height: 1.5rem;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}
.footer_button svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.footer_button svg use {
  height: 100%;
  width: 100%;
}
.footer_button:hover {
  color: #a68f82;
  fill: #a68f82;
}
.footer_button:active {
  color: #84736a;
  fill: #84736a;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footer_buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}/*# sourceMappingURL=footer.css.map */