/* Регистрация шрифтов */
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Regular.woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Bold.woff");
  font-weight: bold;
  font-style: normal;
}

:root {
  --color-background-secondary: #f6f5f9;
  --color-default-white: #ffffff;
  --color-border-primary: #e3def1;
  --background-primary-inverse: #4f486a;
  --color-red: #df2935;
  --color-default-black: #171520;
  --color-link: #95929f;
}

/* Общие настройки */
* {
  margin: 0;
  padding: 0;

  font-family: Manrope;
  box-sizing: border-box;
}

.header {
  padding: 16px 0;
}

.main{
  overflow: hidden;
}

.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: auto;
}

.wrapper__logo {
  position: absolute;
  right: -250px;
  width: 544px;
  height: 760px;
  bottom: 0;
  z-index: -1;
  filter: invert(1);
  opacity: 0.01;
}

.footer{
  padding: 32px 0;
}

.footer__container{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__text{
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-default-black);
}
.footer__text.footer__text--light{
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-link);
}
.footer__link.footer__link--grey {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  text-decoration: underline;
  color: var(--color-link);
}

.footer__link {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-decoration: underline;
  color: var(--color-default-black);
}