.footer {
  position: relative;
  padding: 34px 0 30px;
  background: var(--dark-red);
}
@media (min-width: 1200px) {
  .footer {
    padding: 64px 0 30px;
  }
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-top-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 34px;
}
@media (media: 1200px) {
  .footer-top-content {
    margin-bottom: 64px;
  }
}

.footer-logo {
  flex: 0 0 auto;
  width: 72px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
@media (min-width: 1200px) {
  .footer-logo {
    width: 80px;
  }
}

.footer-logo-title {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 8px;
}

.footer-info {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5714285714;
  color: var(--white);
}
.footer-info * {
  margin-top: 0;
  margin-bottom: 5px;
}

.footer-bot {
  border-top: 1px solid var(--white);
  padding-top: 32px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.copyright {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}
@media (min-width: 1200px) {
  .copyright {
    font-size: 14px;
  }
}

.footer-link {
  display: flex;
  gap: 16px;
}
.footer-link * {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  display: block;
  text-decoration: none;
}

#fixed-element {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 111;
}
@media (min-width: 1200px) {
  #fixed-element {
    right: 40px;
    bottom: 40px;
  }
}
#fixed-element button {
  display: block;
}
#fixed-element .footer-btn {
  position: relative;
  display: inline-block;
  border-radius: 40px;
  background: var(--gardient);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black);
  border: 0;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s;
}
#fixed-element .footer-btn img {
  max-width: 36px;
}
@media (min-width: 1200px) {
  #fixed-element .footer-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  #fixed-element .footer-btn img {
    max-width: 100%;
  }
}
#fixed-element .footer-btn:hover {
  animation: glowing 8s linear infinite;
  background-size: 400%;
}

/*# sourceMappingURL=footer.css.map */
