.footer {
  height: 105vh;
  background: #000;
  position: relative;
  z-index: 999;
}
.footer.white {
  background: #fff;
}
.footer__hidden-form {
  display: none;
}
.footer__content {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  border-top: 2px solid #525252;
  padding-top: 87px;
  height: 100%;
  padding-bottom: 50px;
  gap: 200px;
}
.footer__top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__top-right {
  max-width: 414px;
  width: 100%;
}
.footer__top-left {
  max-width: 621px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
}
.footer__menu-title {
  font-family: "ABC Diatype Variable Unlicensed Trial";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #818181;
}
.footer__top-right {
  display: flex;
  flex-flow: column;
  gap: 53px;
}
.footer__form {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 26px;
  border-bottom: 2px solid #fff;
}
.footer__form svg.white path {
  fill: #000;
}
.footer__form.white {
  border-bottom: 2px solid #000;
}
.footer__menu {
  display: flex;
  flex-flow: column;
  gap: 32px;
}
.footer__menu:last-child {
  grid-area: 2/1/2/3;
}
.footer__menu-list {
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.footer__menu-link {
  font-family: "ABC Diatype Variable Unlicensed Trial";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-decoration: none;
}
.footer__menu-link.white {
  color: #000;
}
.footer__bot {
  width: 100%;
  height: auto;
}
.footer__bot img {
  width: 100%;
  height: auto;
}
.footer__bot.white img {
  filter: invert(1);
}
.footer__input {
  border: none;
  outline: none;
  background: none;
  /* Email address */
  font-family: "ABC Diatype Variable Unlicensed Trial";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  /* identical to box height, or 18px */
  letter-spacing: 0.01em;
  /* White */
  color: #ffffff;
}
.footer__input.white {
  color: #000;
}

.gototop {
  position: fixed;
  bottom: 60px;
  right: 24px;
  background: transparent;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.2823529412);
  cursor: pointer;
  transition: 0.3s ease;
  transform: scale(1);
}
.gototop:hover {
  transform: scale(1.1);
}

@media (max-width: 1280px) {
  .footer {
    height: auto;
  }
  .footer__content {
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
    justify-content: flex-end;
  }
  .footer__top {
    flex-flow: column;
    gap: 80px;
  }
  .footer__top-left {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top-right {
    max-width: 100%;
  }
} /*# sourceMappingURL=footer.css.map */
