footer {
  background-color: var(--text-color);
  color: #fff;
  padding: 64px 0px;
}

footer>.container {
  display: grid;
  grid-template-columns: auto 224px;
  gap: 80px;
}

.footer-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-left-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}

.footer-left-list-item {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-align: right;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.footer-left-list-item:before {
  background-color: #fff;
}

.footer-left-list-item-text {}

.footer-left-list-item-icon {
  height: 24px;
  width: 24px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.footer-left-list-item-icon svg {}

.footer-left-list-item-icon svg path {
  stroke: #CECFD3;
  stroke-width: 1.3px;
}

.footer-left-copy {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  color: #787C88;
}

.footer-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-end;
  justify-content: flex-start;
  align-items: stretch;
  gap: 48px;
}

.footer-logo {
  margin-top: -16px;
}

.footer-logo svg {
  height: 47px;
  width: 224px;
}

.footer-logo svg path {}

.footer-socials {
  text-align: right;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 24px;
}

.footer-socials-header {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: right;
  color: #787C88;
}

.footer-socials-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
  gap: 24px;
}

.footer-socials-list>a {
  height: 36px;
  width: 36px;
  border-radius: 12px;
  background-color: #787C88;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: var(--trans-md);
  cursor: pointer;
}

.footer-socials-list>a:hover {
  background-color: var(--primary-color);
}