@keyframes fadeInOut {
  0% {
    display: none;
    opacity: 0;
    z-index: -1000;
  }

  50% {
    display: block;
    opacity: 0.5;
    z-index: 2;
  }

  100% {
    display: block;
    opacity: 1;
    z-index: 2;
  }
}

@keyframes fadeInOutFlex {
  0% {
    display: none;
    opacity: 0;
    z-index: -1000;
  }

  50% {
    display: flex;
    opacity: 0.5;
    z-index: 2;
  }

  100% {
    display: flex;
    opacity: 1;
    z-index: 2;
  }
}

@media (hover: none) {
  a:hover {
    color: inherit;
  }
}

img,
svg {
  vertical-align: inherit;
}

*,
::after,
::before {
  box-sizing: border-box;
}

* {
  font-family: Inter !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-rendering: geometricPrecision;
  /* Более точный рендеринг */
  font-synthesis: none;
}

a {
  text-decoration: none !important;
  color: black !important;
  cursor: pointer;
}

/* Ñ‡Ñ‚Ð¾Ð±Ñ‹ footer Ð½Ðµ Ð¿Ñ€Ð¸Ð»Ð¸Ð¿Ð°Ð» Ðº header */

html {
  min-height: 100dvh;
}

body {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent
}


/* Base Styles */
:root {
  --bg-dark: #1a1a1a;
  --bg-darker: #1D1C1F;
  --bg-card: #28262B;
  --bg-purple: #7c3aed;
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --text-dark: #212529;
  --border-gray: #333234;
}

main {
  flex-grow: 1;
  position: relative;
  background: #ffffff;
  width: 100%;
  overflow: hidden;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width:1440px) {
  main {
    max-width: 1440px;
  }
}

.dbsh_container {
  width: 100%;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .dbsh_container {
    padding: 0 20px;
  }
}

/* _______________________________Ð´Ð»Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾ÐºÑ€ÑƒÑ‚ÐºÐ¸ Ð¿Ñ€Ð¸ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ð¸Ð¸ Ð¼ÐµÐ½ÑŽ___________________________ */
.fixed {
  height: 100%;
  overflow: hidden;
}

.main--loader {
  width: 100vw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 378px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@keyframes loaderAnimation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader__img {
  width: 72px;
  animation: 1.2s linear 0s normal none infinite running loaderAnimation;
}

.loader__text {
  margin-bottom: 0;
  color: var(--black, #000);
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: "ALS Hauss" !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

button,
select {
  text-transform: none;
}

a:-webkit-any-link {
  cursor: pointer;
  text-decoration: underline;
}

.bttn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 28px;
  gap: 8px;
  background-color: transparent;
  border: 0;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.5em;
}

.bttn-prime {
  background-color: #8000ff;
  color: #fff;
}

.bttn-prime:hover {
  background-color: #9144F3
}

div {
  display: block;
  unicode-bidi: isolate;
}

.sticky-element {
  transition: all 0.3s ease;
}