.main-footer {
  background-color: var(--colorTxt);
  color: var(--colorBg);
  padding-block: 75px 62px;
}
.main-footer-wrapper {
  border-bottom: 1px solid;
  display: grid;
  grid-template-columns: 1fr auto;
}
.main-footer .logo {
  margin-bottom: 53px;
  font-size: 100px;
  font-family: "Ubuntu Condensed", sans-serif;
  font-weight: 400;
  grid-column: 1 / -1;
}
.main-footer .logo a {
  position: relative;
}
.main-footer .logo a::after {
  content: "";
  width: 23px;
  height: 25px;
  background-color: #cc0000;
  position: absolute;
  bottom: 19px;
  right: -29px;
}
.main-footer .footer-info {
  font-size: 18px;
  line-height: 21px;
  margin-bottom: clamp(3rem, 10vw, 188px);
  max-width: 426px;
}
.main-footer .footer-info > *:not(:last-child) {
  margin-bottom: 2rem;
}
.main-footer .footer-info p span {
  display: block;
}

.main-footer .footer-columns {
  gap: 4rem;
}
.main-footer .footer-columns .col {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1380px) {
  .main-footer .footer-columns {
    gap: 2rem;
  }
}

@media screen and (max-width: 980px) {
  .main-footer .logo {
    font-size: 82px;
  }
  .main-footer .footer-columns {
    flex-direction: column;
    text-align: right;
  }
}
@media screen and (max-width: 740px) {
  .main-footer .logo {
    font-size: 60px;
  }
  .main-footer-wrapper {
    display: flex;
    flex-direction: column;
  }
  .main-footer .footer-columns {
    order: 2;
    flex-direction: row;
    margin-bottom: 2rem;
    text-align: left;
    gap: 3rem;
  }
  .main-footer .footer-info {
    order: 3;
  }
  .main-footer .logo a::after {
    width: 15px;
    height: 17px;
    bottom: 11px;
    right: -17px;
  }
}

@media screen and (max-width: 520px) {
  .main-footer .footer-columns {
    flex-direction: column;
    gap: 2rem;
  }
}
