::-webkit-scrollbar {
    display: none;
}

#tildacоpy {
    display: none !important;
}

html, body {
    overflow-x: hidden;
    /* Чёрный фон для всей страницы */
      background-color: #000 !important;
    /*overscroll-behavior: none; Убирает эффект резкого "отскока" на мобилках */
}

    .uc-videocover video {
        border-radius: 2em;
    }
       .uc-videocover-top video {
        border-radius: 0 0 2em 2em;
    }


/*ЧЕРНАЯ КНОПКА БЕЗ ИКОНКИ*/
.black-button .tn-atom {
  position: relative;
  z-index: 1;
  border-radius: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center; /* если вдруг нужен перенос текста */
}

/* Псевдоэлемент для градиентной обводки */
.black-button .tn-atom::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 150px;
  box-sizing: border-box;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #949494, rgba(255,255,255,0)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@supports (-moz-appearance: none) {
  .black-button .tn-atom {
    height: 52px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

.black-button .tn-atom:hover::before {
  opacity: 1;
}



/*ЧЕРНАЯ КНОПКА С ТЕКСТОМ И ИКОНКОЙ НА СТРАНИЦЕ УСЛУГ*/
    .black-button-icon .tn-atom {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-left: 24px;
  border-radius: 150px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 1;
}



 /*Градиентная обводка (оставляем в ::before) */
.black-button-icon .tn-atom::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 150px;
  box-sizing: border-box;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #949494, rgba(255,255,255,0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@supports (-moz-appearance: none) {
  .black-button-icon .tn-atom {
    height: 52px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

 /*Показываем градиент при наведении */
.black-button-icon .tn-atom:hover::before {
  opacity: 1;
}

 /*Иконка слева (теперь через ::after) */
.black-button-icon .tn-atom::after {
  content: "";
  position: absolute;
  left: 24px;
  width: 32px;
  height: 32px;
  background-image: url('https://static.tildacdn.com/tild3730-3237-4239-b835-623363363666/Download--Streamline.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}

 Эффект при наведении 
.black-button-icon .tn-atom:hover::after {
  opacity: 1;
}
/* Смещение всей кнопки влево на 12px */
.black-button-icon {
  transform: translateX(-12px) !important;
}

/* Контейнер кнопки с иконкой справа */
.uc-right-icon .black-button-icon-right {
  transform: translateX(-12px) !important; /* Можно убрать, если не нужен сдвиг */
}

/* Кнопка */
.uc-right-icon .black-button-icon-right .tn-atom {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px;
  padding-right: 48px; /* обязательно, чтобы текст не наехал на иконку */
  border-radius: 150px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 1;
}

/* Градиентная обводка */
.uc-right-icon .black-button-icon-right .tn-atom::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 150px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #949494, rgba(255,255,255,0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@supports (-moz-appearance: none) {
  .black-button-icon-right .tn-atom {
    height: 52px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

.uc-right-icon .black-button-icon-right .tn-atom:hover::before {
  opacity: 1;
}

/* Иконка СПРАВА от текста */
.uc-right-icon .black-button-icon-right .tn-atom::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: url('https://static.tildacdn.com/tild3764-3935-4330-b437-653565393666/up_right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}



/*ИКОНКИ ДЛЯ СПИСКОВ (класс блока ul-list)*/
    .uc-list ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.uc-list .tn-atom ul {
line-height: 1.4 !important;
}

.uc-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.uc-list li::before {
  content: '' !important;
  flex-shrink: 0 !important;
  width: 12px !important;
  height: 12px !important;
  border: 1.5px solid currentColor !important;
  border-radius: 50% !important;
  background-color: transparent !important;
  display: inline-block !important;
  margin-top: 5px !important;
}

/*ИКОНКИ ДЛЯ СПИСКОВ (класс блока uc-tab-block)*/
    .uc-tab-block ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.uc-tab-block li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.uc-tab-block li::before {
  content: '' !important;
  flex-shrink: 0 !important;
  width: 10px !important;
  height: 10px !important;
  border: 1.5px solid currentColor !important;
  border-radius: 50% !important;
  background-color: transparent !important;
  display: inline-block !important;
}

/*ПРОЗРАЧНОСТЬ КАРТОЧЕК*/
.hov-card {
  transition: opacity 0.3s ease;
}

.hov-card:hover {
  opacity: 0.8;
}