footer {
  background-color: #000;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 100px 0 68px 0;
  overflow: hidden;
}
footer .logo img {
  height: 52px;
  width: auto;
}
footer .flex-wrapper {
  margin-bottom: 100px;
}
footer .left {
  max-width: 390px;
}
footer .left .title {
  padding-bottom: 24px;
  border-bottom: 1px solid #2e2e2e;
  margin-bottom: 24px;
}
footer .left .contacts {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 16px;
}
footer .left .contacts span:first-child {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .right {
  max-width: 564px;
  width: 100%;
}
footer .right .row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
footer .right input,
footer .right textarea {
  padding: 16px 24px;
  border-radius: 28px;
  border: 1px solid #4d4d4d;
  font-size: 14px;
  color: #80848d;
  letter-spacing: -0.14px;
  line-height: 20px;
  width: 100%;
  background-clip: padding-box;
  background: linear-gradient(#000, #000) padding-box;
  font-family: "Manrope", sans-serif;
  outline: none;
}
footer .right input:focus,
footer .right textarea:focus {
  border: 1px solid transparent;
  background: linear-gradient(#000, #000) padding-box, linear-gradient(135deg, #ffc000 0%, #ff9000 100%) border-box;
}
footer .right textarea {
  height: 140px;
  margin-bottom: 32px;
}
footer .right button {
  width: 241px;
  height: 52px;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
}
footer .gradient-bar {
  width: 100%;
  height: 89px;
  padding-top: 33px;
  margin-bottom: 68px;
  position: relative;
  background: linear-gradient(90deg, #a8e600, #ffb800, #ff5aa5, #ff6a00);
  background-size: 400% 100%;
  animation: moveGradient 5s linear infinite;
}
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
footer .gradient-bar span {
  padding: 0 20px;
}
footer .footer-slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  /* mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent); */
  height: 85px;
  overflow: hidden;
}
footer .footer-slider .list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}
footer .footer-slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 60s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc(60s / var(--quantity) * (var(--position) - 1) - 60s) !important;
  display: flex;
  align-items: center;
  padding: 0 5px;
  justify-content: center;
}
footer .footer-slider .list .item img {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
}
@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}
footer .bottom .flex-wrapper:first-child {
  align-items: center;
  padding-bottom: 52px;
  margin-bottom: 68px;
  border-bottom: 1px solid #2e2e2e;
}
footer .bottom .flex-wrapper:last-child {
  align-items: flex-end;
  margin-bottom: 0;
}
footer .bottom .navigation {
  display: flex;
  align-items: center;
  gap: 18px;
}
footer .bottom .navigation a {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
footer .bottom .left .text {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 12px;
}
footer .bottom .left .email {
  font-weight: 300;
  font-size: 18px;
  line-height: 29px;
  color: #fff;
}
footer .bottom .right {
  max-width: fit-content;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 1100px) {
  footer .right {
    max-width: 400px;
  }
}
@media screen and (max-width: 900px) {
  footer .flex-wrapper.top {
    flex-direction: column;
    margin-bottom: 80px;
  }
  footer .left,
  footer .right {
    max-width: 100%;
  }
  footer .gradient-bar {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 600px) {
  footer {
    padding-top: 40px;
  }
  footer .left .title {
    max-width: 300px;
    line-height: unset;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    border-bottom: none;
  }
  footer .left .title::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: calc(100vw - 40px);
    height: 1px;
    background-color: #2e2e2e;
  }
}
@media screen and (max-width: 550px) {
  footer {
    padding-bottom: 39px;
  }
  footer .gradient-bar {
    height: 59px;
    padding-top: 21px;
  }
  footer .gradient-bar .footer-slider {
    height: 16px !important;
  }
  footer .gradient-bar .footer-slider .list {
    min-width: calc(140px * var(--quantity));
  }
  footer .gradient-bar .footer-slider .list .item {
    height: 16px !important;
    width: 140px !important;
  }
  footer .logo img {
    height: 49px;
  }
  footer .flex-wrapper,
  footer .right .row {
    flex-direction: column;
  }
  footer .right button {
    width: 100%;
  }
  footer .bottom .flex-wrapper:nth-child(1) {
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 32px;
    margin-bottom: 20px;
  }
  footer .bottom .flex-wrapper:nth-child(1) .navigation {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }
  footer .bottom .flex-wrapper:nth-child(1) .navigation a {
    font-size: 18px;
  }
  footer .bottom .flex-wrapper:nth-child(1) .navigation span {
    display: none;
  }
  footer .bottom .flex-wrapper:nth-child(2) {
    align-items: center;
  }
}