footer {
  background-color: #111;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}

.menu-col,
.logo-col {
  width: calc(20% - 20px);
}

.logo-col h2 {
  justify-items: flex-start !important;
  font-size: 24px;
}

.text-col {
  width: calc(60% - 20px);
}

.text-col p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--tt-white-color);
  text-align: center;
}

.menu-col a {
  display: block;
  color: var(--tt-white-color);
  text-decoration: none;
  margin: 6px 0;
  transition: var(--tt-transition);
}
.menu-col a:hover {
  color: var(--tt-secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--tt-black-light-color);
  font-size: 14px;
  color: var(--tt-black-light-color);
}

@media only screen and (max-width: 992px) {
  .footer-col {
    width: 100% !important;
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .menu-col a {
    display: inline-block;
    margin: 5px 10px;
  }
}
