 html, body {
  background-color: #efeaea;
}

 /*анимация облаков при ховере */
 .floating_cl {
  filter: blur(10px)!important;
  transition: filter 0.8s ease, height 0.8s ease!important;
}

.floating_cl:hover {
  filter: blur(64px)!important;
}
 /*смена цвета текста при ховере */
    .floating_hover .tn-atom:hover {
    color: #efeaea!important;
    transition: color 0.3s ease!important;
}

 /*линия и ее анимация под текстом при ховере*/
.tn-elem.hover_line .tn-atom::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 1px !important;
  background: #B9B5B5 !important;
  transform: scaleX(0) !important;
  transform-origin: right center !important;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) !important; /* плавный "ease-in-out" */
  will-change: transform !important;
  pointer-events: none !important;
}

.tn-elem.hover_line:hover .tn-atom::after {
  transform: scaleX(1) !important;
  transform-origin: left center !important;
}



 /*берйкпоинты/адаптив*/
  .uc-phone, .uc-deks, .uc-min, .uc-phone-head {
    display: none;
  }

  @media (max-width: 1279px) {
    .uc-phone, .uc-phone-head {
      display: block !important;
    }
  }
    @media (max-width: 767px) {
    .uc-min {
      display: block !important;
    }
  }

  @media (min-width: 1280px) {
    .uc-deks {
      display: block !important;
    }
  }
