.footer {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(130deg, rgba(255, 205, 205, 0.2) 0%, rgba(200, 0, 0, 0.2) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  flex: 0 0 auto;
  width: 181px;
}

.footer-main {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
  gap: 20px;
}
@media (min-width: 992px) {
  .footer-main {
    width: 74.38%;
  }
}
.footer-main .footer-main-item {
  flex: 0 0 auto;
  width: 100%;
  padding: 10px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .footer-main .footer-main-item {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media (min-width: 992px) {
  .footer-main .footer-main-item {
    padding: 16px;
  }
}
.footer-main .footer-main-item__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-main .footer-main-item .title {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
  margin: 0;
}
@media (min-width: 1400px) {
  .footer-main .footer-main-item .title {
    font-size: 20px;
  }
}
.footer-main .footer-main-item .icon {
  flex: 0 0 auto;
  width: 24px;
}
.footer-main .footer-main-item .item-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  gap: 8px;
}
@media (min-width: 1400px) {
  .footer-main .footer-main-item .item-link {
    font-size: 16px;
  }
}
.footer-main .footer-main-item .item-link img {
  flex: 0 0 auto;
  width: 24px;
  margin-left: auto;
}
.footer-main .footer-main-item .social {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .footer-main .footer-main-item .social {
    justify-content: flex-end;
  }
}

#fixed-element {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 111;
}
@media (min-width: 768px) {
  #fixed-element {
    right: 48px;
    bottom: 80px;
  }
}
#fixed-element button {
  display: block;
}
#fixed-element .footer-btn {
  position: relative;
  display: inline-block;
  border-radius: 40px;
  padding: 12px 14px;
  background: linear-gradient(90deg, rgb(255, 232, 175) 0%, rgb(255, 197, 51) 50%, rgb(255, 232, 175) 100%);
  margin-top: 6px;
  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;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 1200px) {
  #fixed-element .footer-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}
#fixed-element .footer-btn:hover {
  animation: glowing 8s linear infinite;
  background-size: 400%;
}
#fixed-element .footer-btn.show {
  opacity: 1;
  pointer-events: all;
}
#fixed-element .backtop-cta {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  opacity: 0;
  pointer-events: none;
}
#fixed-element .backtop-cta img {
  max-width: 38px;
  box-shadow: none;
}
@media (min-width: 1400px) {
  #fixed-element .backtop-cta img {
    max-width: 48px;
  }
}
#fixed-element .backtop-cta.show {
  opacity: 1;
  pointer-events: all;
}

/*# sourceMappingURL=footer.css.map */
