* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* footer section  */

body {
  margin: 0;
}

body {
  margin: 0;
  font-family: "Noto Sans Georgian", sans-serif;
}

.footer {
  background-color: #2c2c2c;
  color: #fff;
  height: 32rem;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-content: center;
}

.footer-logo {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 50px;
}

.footer-logo .logo {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.footer-rechts {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-content: center;
}

.footer-rechts h4 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.footer-rechts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fffcfc;
  font-family: var(--Georgian), sans-serif;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-rechts li {
  margin-bottom: 5px;
}

.footer-rechts a {
  color: #fff;
  text-decoration: none;
}

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

.footer-bottom {
  grid-column: span 4;
  text-align: center;
  font-size: 0.9em;
  margin-top: auto;
  border-top: 1px solid #555;
  padding-top: 10px;
}
