* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

body {
  font-family: 'Prompt', sans-serif;

  margin: 0;
  overflow: hidden;
  position: relative;

  color: #fff;
  background: #111317;

  display: flex;
  flex-direction: column;
  min-height: 100dvh;

  background: linear-gradient(180deg, #79d3fe 0%, #0d0063 100%);
}

body::before {
  position: absolute;
  content: '';
  min-width: 1440px;
  min-height: 1440px;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url('../images/bg.png');
  background-size: cover;
  z-index: -1;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}

.bg-img {
  position: absolute;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;

  left: 50%;
  transform: translate(-50%);
  bottom: 0;
  z-index: -1;
  object-fit: cover;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 26px 10px;
  text-align: center;
}

h1 {
  color: #79d3fe;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
}

main p {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.header {
  position: relative;
  width: 100%;
  z-index: 5;
  left: 50%;
  transform: translate(-50%);
  background: #0b0a0a;
}
.header .logo {
  width: 41px;
}
.header__button-wrapper {
  margin-left: auto;
}
.header__icon {
  display: none;
  width: 25px;
  height: 25px;
}
.header__icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  padding: 10px;
}

.header__icon--menu {
  display: block;
}

.header__icon-button.is-open .header__icon--menu {
  display: none;
}

.header__icon-button.is-open .header__icon--close {
  display: block;
}

.navigation {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  padding: 13px 30px;
}
.navigation__list {
  padding-top: 118px;
  background: #2f97f7;
  position: absolute;
  top: 100%;
  right: -115%;
  width: 100%;
  transition: 0.3s;
  z-index: 999;
  margin: 0 auto;
  margin-top: 14px;
  height: 100dvh;
}
.list__box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 33px;

  width: 285px;
  margin: 0 auto;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  display: inline-block;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.navigation__link:hover {
  transform: scale(1.1);
}
.link-desc {
  display: none;
}

footer {
  background: linear-gradient(0deg, #2f97f7 0%, #79d3fe 100%);
  padding: 30px 10px;
  text-align: center;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

footer h2 {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.wrapper p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #0b0a0a;
}
.wrapper ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wrapper li a {
  font-weight: 900;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  text-decoration: none;
  color: #79d3fe;
}

.spinner {
  --size: 64px;
  --color: #047de7;
  --bar-w: 10%; /* товщина променя */
  --bar-h: 25%; /* довжина променя */
  --speed: 2s;

  width: var(--size);
  aspect-ratio: 1;
  position: relative;
  mix-blend-mode: screen;
}

.spinner span {
  position: absolute;
  inset: 0;
  display: block;
  transform: rotate(calc(var(--i) * 30deg));
}

.spinner span::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 5%;
  width: var(--bar-w);
  height: var(--bar-h);
  transform: translateX(-50%);
  background: var(--color);
  border-radius: 999px;
  opacity: calc(0.15 + (var(--i) / 12) * 0.85);
  animation: spinnerFade var(--speed) linear infinite;
  animation-delay: calc(var(--i) * (var(--speed) / 12));
}

.spinner span:nth-child(1) {
  --i: 0;
}
.spinner span:nth-child(2) {
  --i: 1;
}
.spinner span:nth-child(3) {
  --i: 2;
}
.spinner span:nth-child(4) {
  --i: 3;
}
.spinner span:nth-child(5) {
  --i: 4;
}
.spinner span:nth-child(6) {
  --i: 5;
}
.spinner span:nth-child(7) {
  --i: 6;
}
.spinner span:nth-child(8) {
  --i: 7;
}
.spinner span:nth-child(9) {
  --i: 8;
}
.spinner span:nth-child(10) {
  --i: 9;
}
.spinner span:nth-child(11) {
  --i: 10;
}
.spinner span:nth-child(12) {
  --i: 11;
}

@keyframes spinnerFade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.15;
  }
}

.policies-body::before {
  left: 50%;
  top: unset;
  bottom: 0;
  transform: translateX(-50%);
  min-height: 2000px;

}
.policies {
  text-align: start;
}
.policies h1 {
  color: #2F97F7;
  margin-bottom: 24px;
}
.policies .container {
  align-items: start;
}
.policies, .policies p {
  font-size: 12px;
}
 .policies a {
  color: inherit;
 }