.footer-wrapper {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  width: 100%;
  flex-direction: row;
  background-color: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: 64px 0;
  overflow-x: auto;
}

body:not(.mobile) .footer-wrapper {
  margin-left: -24px;
  width: calc(100% + 24px);
}

.mobile .footer-wrapper.with-banner {
  padding-bottom: 204px;
}

.mobile .footer-wrapper {
  padding-bottom: 10px;
  overflow-x: visible;
}

.mobile .footer-wrapper .content-wrapper {
  min-width: 0;
  flex-wrap: wrap;
}

.footer-wrapper a:hover {
  text-decoration: underline;
}

.footer-wrapper .title {
  color: var(--grey-600);
}

.footer-wrapper .content-wrapper {
  flex-direction: row;
  padding: 0 16px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  max-width: 1136px;
  display: flex;
  justify-content: space-between;
  min-width: max-content;
}

.mobile .footer-wrapper .content-wrapper {
  padding-left: 16px;
  padding-right: 16px;
}

.footer-wrapper .left-side {
  display: flex;
  flex-direction: column;
  color: var(--grey-800);
  width: 360px;
  padding-right: 50px;
}

.mobile .footer-wrapper .left-side {
  margin-bottom: 32px;
}

.footer-wrapper .logo-wrapper {
  margin-bottom: 8px;
}

.footer-wrapper .logo-wrapper.dark-logo {
  display: none;
}

.footer-wrapper .logo-wrapper.light-logo {
  display: block;
}

.dark .footer-wrapper .logo-wrapper.dark-logo {
  display: block;
}

.dark .footer-wrapper .logo-wrapper.light-logo {
  display: none;
}

.footer-wrapper .footer-text {
  margin-bottom: 28px;
}

.footer-wrapper .right-side {
  gap: 100px;
  align-items: flex-start;
}

.mobile .footer-wrapper .right-side {
  flex-wrap: wrap;
  gap: 32px 100px;
}

.footer-wrapper .footer-links-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.new-project-info-footer {
    font-family: Roboto;
    color: var(--black);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 15px 13px 18px;
    border: 1px solid var(--black);
    border-radius: 8px;
    background: transparent;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mobile .new-project-info-footer {
  width: 100%;
}

.dark .new-project-info-footer {
  color: var(--white);
  border: 1px solid var(--white);
}

.footer-wrapper .new-project-info-footer:hover {
  text-decoration: none;
  transform: translateY(-2px);
  background: rgba(5, 68, 253, .04);
  border-color: rgba(5, 68, 253, .42);
  box-shadow: 0 12px 28px rgba(16, 16, 20, .10);
}

.dark .footer-wrapper .new-project-info-footer:hover {
  background: rgba(81, 136, 255, .10);
  border-color: rgba(81, 136, 255, .55);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.footer-wrapper .new-project-info-footer:focus-visible {
  outline: 3px solid rgba(5, 68, 253, .24);
  outline-offset: 3px;
}

.new-project-info-footer svg {
  margin-bottom: 17px;
}

.new-project-info-footer span,
.new-project-info-footer .title {
  color: var(--black);
}

.dark .new-project-info-footer span,
.dark .new-project-info-footer .title {
  color: var(--white);
}

.new-project-info-footer .title {
  font-weight: 700;
}

.new-project-info-footer .link {
  color: var(--blue-light);
  margin-top: 8px;
}

.footer-wrapper .new-project-info-footer:hover .link {
  text-decoration: underline;
}
