/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: #0a000f;
  padding: 9px 0;
}

.b__i__t__header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.b__i__t__header__logo {
  width: 66px;
}

.navigation {
  display: none;
}

.modal-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg {
  fill: none;
  stroke: #fff;
  transition: stroke 0.3s ease;
}

.b__i__t__navigation__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.b__i__t__navigation__item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #0a0340;
  text-decoration-skip-ink: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.b__i__t__navigation__item:hover,
.b__i__t__navigation__item:focus {
  text-decoration: underline;
}

.modal {
  position: fixed;
  top: 0;
  left: 50%;
  border: 1px solid #000;
  border-radius: 0 0 20px 20px;
  padding: 16px;
  padding-top: 170px;
  padding-bottom: 120px;
  transform: translateY(-100%) translateX(-50%);
  transition: transform 1s ease;
  background: #fef0b6;
  z-index: 8;
}

.modal-b__i__t__navigation__list {
  flex-direction: column;
}

.modal-click {
  transform: translateY(0) translateX(-50%);
}

@media screen and (min-width: 1437px) {
  .header {
    padding: 27px 0;
  }

  .b__i__t__navigation__item {
    color: #fff;
  }

  .navigation {
    display: block;
  }

  .open-modal {
    display: none;
  }
}

/* home */

#home {
  padding-top: 88px;
  padding-bottom: 98px;
  background-image: url(../images/main-statistics.jpg);
  background-size: cover;
  background-position: center;
}

.b__i__t__home__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  font-variant: all-small-caps;
  text-align: center;
  color: #fff;
  margin-bottom: 38px;
}

.b__i__t__home__text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin-bottom: 116px;
}

.b__i__t__home__desc {
  margin-bottom: 88px;

  h4 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    text-align: center;
    color: #fff;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #fff;
  }
}

.b__i__t__home__link-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.b__i__t__home__link {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  color: #fff;

  display: block;
  margin: 0 auto;
  text-align: center;
  width: 341px;
  border: 1px solid #eac631;
  border-radius: 20px;
  padding: 16px 32px;

  box-shadow: -5px 5px 10px 0 rgba(170, 241, 255, 0.2);
  background: rgba(234, 198, 49, 0.3);
  transition: border-color 0.3s ease;
}

.b__i__t__home__link:hover {
  background: #eac631;
  color: #000;
}

@media screen and (min-width: 1437px) {
  #home {
    padding-top: 183px;
    padding-bottom: 211px;
  }

  .b__i__t__home__content {
    width: 628px;
  }

  .b__i__t__home__title {
    font-size: 45px;
    margin-bottom: 20px;
    width: 408px;

    text-align: start;
  }

  .b__i__t__home__text {
    font-size: 28px;
    margin-bottom: 70px;
    text-align: start;
  }

  .b__i__t__home__link-wrap {
    flex-direction: row;
  }

  .b__i__t__home__link {
    width: 302px;
  }
}

/* built */

.b__i__t__built__list {
  display: flex;
  flex-direction: column;
  gap: 24px;

  li {
    border: 1px solid rgba(250, 235, 88, 0.5);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  img {
    flex-shrink: 0;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #fff;
    padding-bottom: 24px;
  }

  span {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .b__i__t__built__list {
    flex-direction: row;
    flex-wrap: wrap;

    li {
      width: calc((100% - 24px) / 2);
    }
  }
}

@media screen and (min-width: 1437px) {
  .b__i__t__built__list {
    width: 844px;
    margin: 0 auto;

    p {
      font-size: 20px;
    }

    span {
      font-size: 22px;
    }
  }
}

/* dashboard */

.dashboard {
  margin: 0 auto;
}

/* notified */

.b__i__t__notified__list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 4px solid rgba(250, 235, 88, 0.5);
    border-radius: 12px;
    padding: 8px;

    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #fff;
  }

  img {
    width: 60px;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .b__i__t__notified__list {
    width: 390px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1437px) {
  .b__i__t__notified__list {
    width: 628px;

    li {
      border-radius: 12px;
      padding: 8px;
      font-size: 22px;
    }

    img {
      width: 108px;
    }
  }
}

/* connect */

.b__i__t__connect__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 16px;

  li {
    width: 163px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;

    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .b__i__t__connect__list {
    gap: 32px;
  }
}

@media screen and (min-width: 1437px) {
  .b__i__t__connect__list {
    gap: 36px;

    li {
      font-size: 22px;
    }
  }
}

/* say  */

.b__i__t__say__list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    border-radius: 12px;
    padding: 24px;
    background: #fff;
  }

  p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #525252;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #cdcdcd;
  }

  img {
    margin: 0 auto;
  }

  .user-title {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;

    img {
      width: 40px;
      margin: 0;
      flex-shrink: 0;
    }

    h5 {
      font-family: var(--second-family);
      font-weight: 500;
      font-size: 18px;
      color: #000;
    }
  }
}

@media screen and (min-width: 768px) {
  .b__i__t__say__list {
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: center;

    li {
      width: calc((100% - 16px) / 2);
    }

    p {
      font-size: 12px;
    }
  }
}

@media screen and (min-width: 1437px) {
  .b__i__t__say__list {
    width: 894px;
    margin: 0 auto;
    gap: 24px;

    li {
      width: calc((100% - 48px) / 3);
    }
  }
}

/* crypto */

.b__i__t__crypto__list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    border: 1px solid #050115;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.5);

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #000;
  }

  img {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .b__i__t__crypto__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    li {
      width: calc((100% - 16px) / 2);
    }
  }
}

@media screen and (min-width: 1437px) {
  .b__i__t__crypto__list {
    width: 957px;
    margin: 0 auto;
    gap: 24px;

    li {
      width: calc((100% - 48px) / 3);
      font-size: 22px;
    }
  }
}

/* contact */

.b__i__t__contact__link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;

  a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #000;
  }

  a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1437px) {
  .b__i__t__contact__link {
    font-size: 22px;
    gap: 32px;
  }
}

/* footer */

.footer {
  padding: 56px 0;
  background: linear-gradient(180deg, #0a0245 0.57%, #040012 100%);
}

.b__i__t__footer__mail {
  display: block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fef0b6;
  margin-bottom: 42px;
}

.b__i__t__footer__mail:hover {
  text-decoration: underline;
}

.b__i__t__footer__list {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;

  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fef0b6;

  a:hover {
    text-decoration: underline;
  }
}

.b__i__t__footer__description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fef0b6;
}

@media screen and (min-width: 1437px) {
  .footer {
    padding: 80px 0;
  }

  .b__i__t__footer__container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }

  .b__i__t__footer__mail {
    margin: 0;
  }

  .b__i__t__footer__list {
    flex-direction: row;
    gap: 32px;
    margin: 0;
  }

  .b__i__t__footer__description {
    font-size: 16px;
  }
}

/* cookie popup */

.popup {
  position: fixed;
  z-index: 10;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 55px 30px;
  background: linear-gradient(180deg, #040012 0%, #0a0245 100%);
  transition: transform 0.5s ease;
}

.popup-text {
  font-family: var(--font3);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 46px;
}

.popup-btn {
  border: 1px solid #eac631;
  border-radius: 20px;
  padding: 16px;
  box-shadow: -5px 5px 10px 0 rgba(170, 241, 255, 0.2);
  background: rgba(234, 198, 49, 0.16);
  width: 302px;
  max-width: 100%;

  font-family: var(--font4);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #fff;

  transition: color 0.3s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  box-shadow: -5px 5px 10px 0 rgba(170, 241, 255, 0.2);
  background: rgba(234, 198, 49, 0.9);
}

.popup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.popup-click {
  transform: translateY(100%);
}

@media screen and (min-width: 1437px) {
  .popup {
    padding: 40px;
  }
  .popup-text {
    font-size: 18px;
    margin-bottom: 31px;
  }

  .popup-btn {
    font-size: 16px;
  }

  .popup-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}
