.footer-background {
  background-color: var(--primary-color);
  margin-top: 104px;
}

.col-6 {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.col-3 > h4 {
  padding: 20px 0 20px 0;
  color: var(--color-white);
  font-weight: 500;
}

.desc a {
  display: flex;
  align-items: center;
}

.desc a > h2 {
  font-size: 21px;
  margin-left: 6px;
  font-weight: 500;
  color: var(--color-white);
}

.desc > p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  width: 85%;
}

.row-fot {
  border-bottom: 1px solid var(--color-line);
  padding: 2em 0 2.5em 0;
}

footer .row {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 30px;
  align-items: center;
}

footer ul {
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

footer ul li {
  list-style-type: none;
  padding: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  line-height: 2;
}

.footer-cat-links a {
  color: var(--color-text-gray);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.footer-cat-links.active > li a {
  pointer-events: auto;
}

.footer-cat-links a:after {
  top: 21px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  width: 0;
  background: var(--secondary-color);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.footer-cat-links a:hover:after,
.footer-cat-links a:focus:after {
  width: 100%;
  left: 0;
}

.social-links {
  margin-top: 65px;
}

.social-links a {
  color: var(--color-white);
  border: 1px solid;
  border-radius: 20px;
  padding: 7px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.social-links a:not(:last-child) {
  margin-right: 10px;
}

.social-links a:hover,
.social-links a:focus {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.social-links a svg {
  width: 24px;
  height: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyowner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-text-gray);
  opacity: 0.6;
  font-size: 14px;
  padding: 30px 0 44px 0;
}

#owner a {
  font-size: 14px;
  color: var(--color-text-gray);
}

#owner a:hover {
  color: var(--secondary-color);
  opacity: 1;
}

.contact {
  padding-bottom: 80px;
}

.contact > ul > li {
  display: flex;
}

.contact > ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 6px;
}

.lineheightfot {
  font-size: 16px;
  line-height: 1.5;
  margin-left: 12px;
  color: var(--color-text-gray);
}

.iconfo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary-color);
}

@media only screen and (max-width: 992px) {
  footer .row {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 576px) {
  footer .row {
    display: block;
  }
  .col-3 {
    margin-bottom: 28px;
  }
  .contact {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 450px) {
  .copyowner {
    flex-direction: column;
  }
}
