html, body {
  overflow-x: hidden;
}
body {
  position: relative
}

/* Для всей страницы */
html {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #075527 #e0e0e0;
}

/* Для Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #075527;
  border-radius: 10px;
  border: 2px solid #e0e0e0; /* контур вокруг ползунка */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #0a6f34; /* темнее при наведении */
}

.marquee-text-effect {
    display: inline-flex !important;
    overflow: hidden;
}
@keyframes marquee-text-effect {
    0% { transform:translateX(0%);}
    100% { transform:translateX(-100%);}
}
.marquee-text-effect .content-text {
    display: inline-flex;
    justify-content: space-around;
}
.marquee-text-effect .content-text > * {
    display: inline-block;
    padding: 0 10px;
    white-space: nowrap;
}