.footer {
  position: relative;
  margin-top: 80px;
  background-image: -webkit-linear-gradient(90deg, #4b9dff 0%, #8e3aea 100%);
  background-image: -moz-linear-gradient(90deg, #4b9dff 0%, #8e3aea 100%);
  background-image: -o-linear-gradient(90deg, #4b9dff 0%, #8e3aea 100%);
  background-image: linear-gradient(90deg, #4b9dff 0%, #8e3aea 100%);
  overflow: hidden;
}

.footer::after {
  position: absolute;
  content: '';
  top: -24%;
  right: 10%;
  width: 100%;
  max-width: 650px;
  height: 100%;
  background-image: url('../img/sphere.svg');
  background-position: center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer__inner {
  padding: 80px 84px;
}
.footer__content {
}
.footer__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
}
.footer__text-wrapper {
  margin-top: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__text {
  margin: 0;
  max-width: 667px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #fff;
}
.footer__link {
  margin-top: 33px;
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #6deeff;
  -webkit-transition: color 0.5s linear;
  -moz-transition: color 0.5s linear;
  -o-transition: color 0.5s linear;
  transition: color 0.5s linear;
}
.footer__link:focus-visible {
  outline: 2px dashed #1a68c4;
  outline-offset: 1px;
}

@media (hover: hover) {
  .footer__link:hover {
    color: #0f4194;
    -webkit-transition: color 0.1s linear;
    -moz-transition: color 0.1s linear;
    -o-transition: color 0.1s linear;
    transition: color 0.1s linear;
  }
}
.footer__info {
  margin-top: 80px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
}
.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
.footer__list-item {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #fff;
}
.footer__copy {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  text-align: right;
  color: #fff;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

@media (max-width: 1899px) {
  .footer::after {
    right: 0;
    width: clamp(350px, 37.5vw, 650px);
  }
}

@media (max-width: 1199px) {
  .footer {
    margin-top: 48px;
  }
  .footer::after {
    right: 6%;
    top: -15%;
    width: clamp(270px, 35.156vw, 350px);
  }
  .footer__inner {
    padding: 47px 51px 30px;
  }
  .footer__title {
    font-size: clamp(22px, 2.865vw, 36px);
  }
  .footer__text-wrapper {
    margin-top: 16px;
    max-width: 400px;
  }
  .footer__text {
    font-size: clamp(12px, 1.563vw, 20px);
  }
  .footer__link {
    margin-top: 15px;
    font-size: clamp(15px, 1.953vw, 24px);
  }
  .footer__link-img {
    width: clamp(9px, 1.172vw, 17px);
    height: clamp(9px, 1.172vw, 17px);
  }
  .footer__info {
    margin-top: 45px;
  }
  .footer__list-item {
    font-size: clamp(10px, 1.302vw, 15px);
  }
  .footer__copy {
    font-size: clamp(10px, 1.302vw, 15px);
  }
}

@media (max-width: 767px) {
  .footer::after {
    display: none;
  }
  .footer__inner {
    margin: 0 auto;
    padding: 26px 22px 24px;
    max-width: 375px;
  }
  .footer__title {
    font-size: 24px;
  }
  .footer__text-wrapper {
    margin-top: 14px;
  }
  .footer__link {
    margin-top: 18px;
    font-size: 16px;
  }
  .footer__info {
    flex-direction: column;
    margin-top: 56px;
    gap: 10px;
  }
  .footer__list-item {
    line-height: 144%;
  }
  .footer__copy {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
