.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10000;
  padding: 0;
  margin: 0;
}

.modal__title {
  color: #fff;
  font-size: 26px;
}

.modal__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;

  padding: 20px;

  z-index: 2;

  background-color: #060e2a;
}

.modal__text {
  color: #fff;
  max-width: 260px;
  font-size: 22px;

  margin-top: 20px;
  margin-bottom: 20px;
}

.modal__smaill-text {
  color: #fff;
  font-size: 16px;
}

.modal__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;

  margin: 25px 0;
}

.modal__number-text {
  z-index: 2;
}

.modal__euro {
  z-index: 2;
}

.modal__number {
  width: 100%;

  color: #fff;
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  font-weight: bold;

  position: absolute;

  top: 70px;
}

.modal__logo-block {
  position: relative;
}

.modal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

@keyframes upAndDown {
  0% {
    top: 0;
  }
  50% {
    top: -20px;
  }
  100% {
    top: 0;
  }
}

.modal__title-block {
  display: flex;
  align-items: center;

  align-items: center;
  text-align: center;
  justify-content: center;

  position: relative;
}



.title-relative {
  position: relative;
}

.modal__button {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  background-color: #0d09e4;

  padding: 5px 70px;
  border-radius: 30px;
  font-size: 20px;
  width: 100%;

  transition: all 0.5s ease;
}

.modal__button:nth-child(1):hover {
  background-color: #566cff;
}

.modal__button:nth-child(2) {
  background-color: #131d42;
}

.modal__logo {
  width: 360px;
}

@media (max-width: 725px) {
  .modal__wrapper {
    width: 100%;
  }

  .modal__number {
    font-size: 30px;
  }
}

@media (max-width: 400px) {
  .modal__logo {
    width: 100%;
  }

  .modal__number {
    font-size: 25px;
  }

  .modal__number {
    top: 38%;
  }
}
