@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@400;700;900&family=Jura:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
  font-family: "Matricha";
  font-style: regular;
  font-weight: 400;
  src: url("../fonts/matricha.woff2") format("woff2");
}

:root {
  --font-logo: 'Matricha', monospace;
  --font-body: 'Noto Sans', sans-serif;
  --color-bg-deep: #070A12;
  --color-bg-card: #0d111e;
  --color-accent-violet: #6D5DF6;
  --color-accent-cyan: #00D4FF;
  --color-accent-blue: #3B82F6;
  --color-accent-lavender: #A78BFA;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-deep);
  color: #E5E7EB;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  letter-spacing: 0.04em;
  background-image: radial-gradient(1200px 800px at 50% 0, rgba(59, 130, 246, .2) 0, rgba(0, 111, 238, 0) 100%);
  background-repeat: no-repeat;
}

/* Кастомный скроллбар */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #070A12;
}

::-webkit-scrollbar-thumb {
  background: rgba(109, 93, 246, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.6);
}

/* Сетка на фоне */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-size: 40px 40px;
  background-image: radial-gradient(rgba(59, 130, 246, 0) 1.75px, transparent 1.75px);
  pointer-events: none;
  background-position: center;
}





/* Анимации плавающих пятен */
@keyframes float-slow {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  50% {
    transform: translate(80px, 100px) scale(1.1);
  }

  100% {
    transform: translate(-40px, 50px) scale(0.9);
  }
}

@keyframes float-reverse {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  50% {
    transform: translate(-100px, -80px) scale(0.85);
  }

  100% {
    transform: translate(60px, 40px) scale(1.15);
  }
}

@keyframes float-medium {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  50% {
    transform: translate(-50px, 60px) scale(1.2);
  }

  100% {
    transform: translate(50px, -40px) scale(0.9);
  }
}

/* ========================================== */
/* КОНСОЛИДИРОВАННЫЕ КЛАССЫ КОМПОНЕНТОВ       */
/* ========================================== */

/* Шапка сайта (Стеклянная капсула) */
.glass-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1200px;
  z-index: 50;
  border-radius: 60px;
  background: rgba(13, 17, 30, 0.65);
  background: rgba(13, 17, 30, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid hsla(0, 0%, 100%, .1);
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, .1), inset 0 -4px 12px 0 hsla(0, 0%, 100%, .1), 0 8px 32px 0 rgba(7, 10, 18, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  padding: 12px 24px;
  padding-right: 12px;

}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  user-select: none;
}

.logo-link-footer .logo-text {
  font-size: 2rem;
  color: #83c1ff;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 1.4rem;
  font-weight: 400;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  padding: 0;
  margin: 0;
}

.composition-for-logo {
  display: inline-grid;
  grid-template-columns: repeat(4, 1ch);
  gap: 0 2px;
  font-family: var(--font-logo);
  font-size: 0.84rem;
  text-align: center;
  justify-content: center;
  letter-spacing: normal;
  line-height: 1.1;
  margin-right: 10px;
}

.composition-for-logo .bit {
  display: inline-block;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: var(--font-logo);
  letter-spacing: normal;
  color: #83c1ff;
  /* color: #00d4ff; */
  width: 8px;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4)
}

.composition-for-logo .bit.changing {
  opacity: 0;
  transform: translateY(-4px);
}

@media (min-width: 768px) {}

.logo-link:hover .logo-text {
  transform: scale(1.05);
}



.header-direction {
  display: flex;
  align-items: flex-start;
  margin-bottom: 6px;
}

.header-direction svg {
  width: 14px;
  min-width: 14px;
  margin-left: 6px;
  position: relative;
  top: 2px;
}

.-custom-border {
  border-radius: 14px !important;
}

.font-extrabold {
  font-weight: 600;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 10px;
  color: var(--color-accent-cyan);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  user-select: none;
}

.live-badge .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent-cyan);
  animation: pulse-glow 2s infinite ease-in-out;
}

/* Меню навигации */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-right: 24px;

}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  /* text-sm */
  font-weight: 400;
  color: #bbcbe1;
  transition: color 0.2s ease;
  text-decoration: none;
  cursor: pointer;

}

.nav-link:hover {
  color: #FFFFFF;
}

/* Стилизация активной ссылки в навигации */
.nav-link-active {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3B82F6;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Кнопка в хедере */
.header-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.84rem;
  /* text-xs */
  font-weight: 600;
  border-radius: 9999px;
  background: rgba(59, 130, 246, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.2);
  ;
  color: #FFFFFF;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.05);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-logo);
}

.header-cta:hover {
  background: #3B82F6;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

/* Бургер-кнопка */
.burger-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: background-color 0.2s;
  cursor: pointer;
}

.burger-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Стеклянные карточки (Spotlight) */
.glass-card {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #22293d;
  box-shadow:
    0 8px 32px 0 rgba(7, 10, 18, 0),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  /* rounded-3xl */
  transition: all 0.3s ease;
}

.glass-card:hover {}

/* Сетка карточек в блоге */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-image {
  height: 12rem;
  /* h-48 */
  background: linear-gradient(135deg, rgba(109, 93, 246, 0.1), rgba(0, 212, 255, 0.05));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.blog-card-badge {
  padding: 0.35rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid hsla(0, 0%, 100%, .1);
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, .1), inset 0 -4px 12px 0 hsla(0, 0%, 100%, .1);
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  border-radius: 9999px;
  display: inline-block;
  width: fit-content;
  display: flex;
  align-items: center;
  padding-left: 8px;
  line-height: 1;
}

.blog-card-badge::before {
  content: '';
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: rgba(59, 130, 246, 1);
}

.blog-card-badge.-cat1::before {
  background: rgba(235, 181, 3, 0.2);
  background-color: #f59e0b;
}

.blog-card-badge.-cat2::before {
  background: rgba(138, 149, 255, 0.2);
  background-color: #8a95ff;
}

.blog-card-badge.-cat3::before {
  background: rgba(201, 138, 240, 0.2);
  background-color: #d593ff;
}

.blog-card-badge.-cat4::before {
  background: rgba(25, 171, 193, 0.2);
  background-color: #1eb8cf;
}

.text-indigo-400 {
  color: rgb(138 149 255);
}

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #bbcbe1;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.125rem;
  /* text-lg */
  font-weight: 500;
  color: #FFFFFF;
  display: block;
  width: 100%;
  line-height: 1.375;
  transition: color 0.2s;
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.to-violetAccent {
  background: linear-gradient(120deg, #67a1dc 0%, #214788 100%);
}

.-contats-wrap {
  max-width: 900px;
}

.-contats-wrap .hero-subtitle {
  text-align: center;
  margin-bottom: 1rem;
}

.-contats-wrap .soc-wrap.-in-aside .soc-item {
  padding: 1rem 2rem;
  font-size: 1rem;
  padding-right: 1.2rem;
}

.soc-wrap.-in-aside .soc-item.-full {
  width: 100% !important;
}

.-decor-about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2.5rem;
  height: 158px;
}

.-decor-about-us .hero-title-accent {
  margin-bottom: 0;
  background-color: #0d111e;
  padding: 0 1rem;
}

.-left-hs {
  max-width: 100% !important;
  width: 100%;
  text-align: left;
  padding: 0 1rem;
}

.-contats-wrap .soc-wrap.-in-aside .soc-item img {
  width: 30px;
}

.-decor-about-us>*:not(.bits-bg) {
  position: relative;
  z-index: 1;
}

.-decor-about-us .bits-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 1px;
  left: 1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1rem;
  opacity: 1;
}

.-decor-about-us .bit {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: var(--font-logo);
  letter-spacing: normal;
  color: #83c1ff;
  /* color: #00d4ff; */
  width: 10px;
  text-align: center;
  /* text-shadow: 0 0 10px rgba(255, 255, 255, 0.4) */
}

.-decor-about-us .bit.changing {
  opacity: 0;
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .blog-card-title {
    font-size: 1.25rem;
    /* text-xl */
  }
}

.glass-card:hover .blog-card-title {
  color: var(--color-accent-cyan);
}

.blog-card-desc {
  font-size: 0.875rem;
  color: #bbcbe1;
  font-weight: 300;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: color 0.2s;
  text-decoration: none;
  width: fit-content;
  cursor: pointer;
}

.blog-card-link:hover {
  color: var(--color-accent-cyan);
}

/* Заголовки Hero */
.hero-title {
  font-size: 2.25rem;
  /* text-4xl */
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-accent {
  font-family: var(--font-logo);

  text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
  font-weight: 400;
  line-height: 1.2;
  font-size: 3.5rem;
  color: #83c1ff;
}

.hero-subtitle {
  font-size: 1rem;
  color: #bbcbe1;
  font-weight: 300;
  line-height: 1.625;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.-link-a {
  color: #83c1ff;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.-link-a:hover {
  color: #00d4ff;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Кнопки в Hero */
.hero-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: #3B82F6;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(109, 93, 246, 0.2);
  text-decoration: none;
}

.hero-btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.hero-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: var(--color-bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #22293d;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 8px 32px 0 rgba(7, 10, 18, 0),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-btn-secondary:hover {
  background: #0d111e;
  transform: scale(1.03);
  border-color: #83c1ff;
}

@media (min-width: 640px) {

  .hero-btn-primary,
  .hero-btn-secondary {
    width: auto;
  }
}

/* Стандартизированные заголовки секций */
.section-title {
  font-size: 1.5rem;
  /* text-2xl */
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.875rem;
    /* text-3xl */
  }
}

.section-title::before {
  content: '';
  width: 1.5rem;
  height: 0.25rem;
  border-radius: 9999px;
  background-color: #83c1ff !important;
}

.section-title-violet::before {
  background-color: var(--color-accent-violet);
}

/* Стеклянные Формы */
.glass-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.glass-form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #bbcbe1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.glass-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 300;
  transition: all 0.2s ease;
}

.glass-form-input::placeholder {
  color: #64748B;
}

.glass-form-input:focus {
  outline: none;
  border-color: var(--color-accent-cyan);
  box-shadow: 0 0 0 1px var(--color-accent-cyan);
}

/* Подвал сайта */
.glass-footer {
  position: relative;
  z-index: 10;
  background: var(--color-bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  padding-bottom: 3rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 40px 0px, rgba(255, 255, 255, 0.1) 0px -4px 12px 0px inset;
}

/* ========================================== */
/* ВСПОМОГАТЕЛЬНЫЕ АНИМАЦИИ                   */
/* ========================================== */

.text-neon-cyan {
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.text-neon-violet {
  text-shadow: 0 0 8px rgba(109, 93, 246, 0.5);
}

/* Анимация бегущей строки */
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.ticker-wrap {
  overflow: hidden;
  width: 100%;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 120s linear infinite;
  width: max-content;
  gap: 3rem;
}

.ticker-content:hover {
  animation-play-state: paused;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Spotlight-эффект для карточек */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
      rgba(59, 130, 246, 0.07),
      transparent 40%);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.spotlight-card:hover::before {
  opacity: 1;
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }

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

.animate-spin-slow {
  animation: spin-slow 90s linear infinite;
  top: 40%;
}

@keyframes float-icon {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float-icon {
  animation: float-icon 4s infinite ease-in-out;
}

.font-bold {
  font-weight: 600;
}

.mb-1 {
  margin-bottom: 0.55rem;
}

.text-cyanAccent {
  color: #83c1ff;
}

.text-cyanAccent:hover {
  color: #00d4ff;
}

.left-1\/2 {
  left: 44%;
}

.bg-emerald-500 {
  display: none;
}

.pt-32 {
  padding-top: 7rem;
}

.-category-icon img {
  width: 24px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #0d111e;
  border-radius: 0;
}

::scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #83c1ff;
  border-radius: 4px;
}

::scrollbar-thumb {
  background-color: #83c1ff;
  border-radius: 4px;
}


.-signature-page {
  background: transparent;
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, .1), inset 0 -4px 12px 0 hsla(0, 0%, 100%, .1);
}

main {
  overflow: hidden;
}


.-main-start-block {
  position: relative;
  padding-top: 30px;
}

.di-el {
  position: absolute;
  opacity: 0.84;
  --move-x: 0px;
  --move-y: 0px;
  --rotate: 0deg;
  transform: translate3d(var(--move-x), var(--move-y), 0) scale(0.8) rotate(var(--rotate));
  animation: 0.6s ease;
}

.-di1 {
  top: 80px;
  left: -140px;
  width: 73px;
}

.-di5 {
  left: 52%;
  width: 200px;
  z-index: -1;
  top: 180px;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  opacity: 0.2;
}

.-cmb10 {
  margin-bottom: 4rem;
}

.-di5 img {
  width: 100%;
}

.-di2 {
  bottom: -50px;
  right: 30px;
  width: 77px;
}

.-di3 {
  top: 120px;
  right: -160px;
  width: 140px;
}

.-di4 {
  bottom: 20px;
  left: -70px;
  width: 128px;
}

.-prices {
  font-weight: 400;
}


.soc-wrap {
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  gap: 1rem;
}

.soc-wrap.-in-aside {}

.soc-wrap.-in-aside .soc-item {
  width: 100%;
  justify-content: space-between;
  padding: 0.4rem 0.8rem;
  padding-right: 0.6rem;
  line-height: 1;
  font-size: 0.8rem;
  font-family: var(--font-logo);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  width: calc(50% - 0.5rem);
}



.soc-wrap.-in-aside .soc-item img {
  width: 22px;
}

.soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  padding: 0.6rem;
  border-radius: 0.6rem;
  background: var(--color-bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid hsla(0, 0%, 100%, .1);
  color: #FFFFFF;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, .1), inset 0 -4px 12px 0 hsla(0, 0%, 100%, .1), 0 4px 8px 0 rgba(7, 10, 18, 0.2)
}

.soc-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.soc-item:hover {
  transform: scale(1.03);
  border-color: #83c1ff;
}


.text-purple-400 {
  color: rgb(213 147 255);
}

.bg-purple-500 {
  background-color: rgb(168 85 247 / 0.1);
}


.-panel-search input {
  padding-right: 40px;
}

.-categories-items {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0;
  gap: 1.2rem;
}

.-categories-items button {
  font-size: 0.8rem;
  padding: 12px 16px;
  border: 1px solid hsla(0, 0%, 100%, .1);
  background-color: var(--color-bg-card);
  line-height: 1;
  display: flex;
  align-items: center;
}

.-categories-items button.-active {
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, .1), inset 0 -4px 12px 0 hsla(0, 0%, 100%, .1), 0 4px 8px 0 rgba(7, 10, 18, 1);
  background: rgba(59, 130, 246, 0.2);
  color: #fff;
}

.-categories-items button:hover {
  transform: scale(1.03);
  border-color: #83c1ff;
  background-color: var(--color-bg-card);
  background: rgba(59, 130, 246, 0.1);
  color: #fff;
}

.-categories-items button::before {
  content: '';
  position: relative;
  width: 6px;
  min-width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 8px;
  background: rgba(59, 130, 246, 1);
}

.-categories-items button.-all-cat::before {
  background-color: #83c1ff;
}

.-categories-items button.-cat1::before {
  background: rgba(235, 181, 3, 0.2);
  background-color: #f59e0b;
}

.-categories-items button.-cat2::before {
  background: rgba(138, 149, 255, 0.2);
  background-color: #8a95ff;
}

.-categories-items button.-cat3::before {
  background: rgba(201, 138, 240, 0.2);
  background-color: #d593ff;
}

.-categories-items button.-cat4::before {
  background: rgba(25, 171, 193, 0.2);
  background-color: #1eb8cf;
}

.-category-on-main.-cat1 .-category-icon {
  background-color: rgb(245 158 11 / 0.1);
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}

.-category-on-main.-cat2 .-category-icon {
  background-color: rgb(99 102 241 / 0.1);
  color: rgb(138 149 255);
}

.-category-on-main.-cat3 .-category-icon {
  background-color: rgb(168 85 247 / 0.1);
  color: rgb(213 147 255);
}

.-category-on-main.-cat4 .-category-icon {
  background-color: rgb(6 182 212 / 0.1);
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}

.-icon-search {
  left: inherit;
  right: 14px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  position: relative;
  width: 100%;
  align-items: stretch;
}

.pagination li {
  margin: 0 0.4rem;
}

.pag-c {
  padding-top: 10px;
  font-size: 0.8rem;
}

.pagination li a {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #22293d;
  background-color: var(--color-bg-card);
  border-radius: 0.6rem;
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
  font-weight: 600;
}

.pagination li a:hover {
  transform: scale(1.03);
  border-color: rgba(59, 130, 246, 1);
  background-color: var(--color-bg-card);
  background: rgba(59, 130, 246, 0.1);
  color: #fff
}

.pagination li a.-active {
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.05);
  background: rgba(59, 130, 246, 0.4);
  color: #fff;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.mb3rem {
  margin-bottom: 3rem;
}

.max-w-sm-c {
  max-width: 520px;
}

.more-acticles {
  justify-content: flex-end;
}

.-header-in-article .bg-cyanAccent {
  background-color: #83c1ff;
  min-width: 1rem;
  position: relative;
  display: block;
  top: 0.9rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.bg-cyanAccent {
  background-color: #83c1ff;
}

.-article-inner .text-sm {
  font-size: 0.9rem;
}

.-image-acticle img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 560px;
}

.-article-wrap {
  position: relative;
}

.-w100 {
  width: 100%;
}

.-quote {
  border-left: 4px solid #83c1ff;
}


.-header-in-article {
  align-items: flex-start;
}

.-similar-materials-inner {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
}

.-similar-materials-inner .glass-card {
  width: calc(50% - 0.75rem);
}

.-similar-materials.is-hidden {
  display: none !important;
}

@media (max-width: 1200px) {
  .-category-article .glass-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .-category-article .glass-card .header-direction {
    justify-content: space-between;
    width: 100%;
  }

  .-articles-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }

  .-di3 {
    right: -40px;
  }

  .-di1 {
    left: -100px;
  }

  .-di4 {
    left: 0;
    bottom: 0;
  }

}


@media (max-width: 1024px) {
  .-similar-materials {
    display: none !important
  }
}

@media (max-width: 768px) {
  .-nav-nav a:last-child {
    display: none;
  }

  .-nav-nav {
    margin-right: 0;
  }

  .-main-start-block .hero-title-accent {
    font-size: 2.2rem;
    text-align: left;
    max-width: 500px;
  }

  .-main-start-block .hero-subtitle {
    text-align: left;
    margin-left: 0;
  }

  .-main-start-block .items-center {}

  .-di3 {
    top: 80px;
    right: -10px;
    width: 100px;
  }

  .-di2 {
    bottom: -90px;
    right: -10px;
    width: 50px;
  }

  .-di4 {
    bottom: -60px;
    left: -40px;
    z-index: 2;
    width: 107px;
  }

  .-di1 {
    width: 200px;
    left: -50px;
    z-index: -1;
    top: -50px;
    filter: blur(4px);
    -webkit-filter: blur(4px);
    opacity: 0.2;
  }

  .-di1 img {
    width: 100%;
  }

  .-media-mb10 {
    margin-bottom: 7rem;
  }

  .-main-start-block {
    margin-top: -30px;
    text-align: left;
  }

  .-articles-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important
  }

  .-di5 {
    left: 60%;
  }

  .-signature-page {
    margin-top: 30px;
    margin-left: 0;
    left: 0;
    position: relative;

  }

  .-panel-search {
    padding: 0.8rem;

  }

  .-categories-items {
    gap: 0.8rem;
  }

  .-categories-items button {
    font-size: 0.8rem;
  }

  .-decor-about-us .hero-title-accent {
    font-size: 2rem;
    max-width: 196px;
    padding: 0;
  }

  .-contats-wrap .soc-wrap.-in-aside .soc-item {
    width: 100% !important;
  }

}

@media (max-width: 600px) {
  .glass-navbar {
    top: 10px;
    left: 6px;
    width: calc(100% - 12px);
    transform: none;
    padding: 8px;
    padding-left: 18px;
  }

  .composition-for-logo {
    margin-right: 2px;
  }

  .glass-navbar .logo-text {
    font-size: 1rem;
    max-width: 40px;
    line-height: 1;
    word-break: break-all;
    position: relative;
    top: 1px;
  }

  .glass-navbar .logo-text span {
    display: none;

  }

  .glass-navbar .header-cta {
    padding: 0.5rem 0.8rem;
  }

  .nav-menu {
    gap: 0.8rem;
  }

  .nav-menu .nav-link {
    font-size: 0.96rem;
  }

  .pt-32 {
    padding-top: 6rem;
  }

  .ticker-content {
    gap: 2rem;
    font-size: 0.8rem !important;
  }

  .-rates-signature-wrap {
    display: none;
  }
}


@media (max-width: 500px) {
  .-main-start-block .hero-title-accent {
    max-width: 380px;
    font-size: 2.3rem;
  }

  .blog-card-image {
    height: 14rem;
  }

  .text-slate-400 {
    color: #bbcbe1;
  }

  .blog-card-desc,
  .text-sm {
    font-size: 1rem;
  }

  .text-xs {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }

  .text-base {
    font-size: 1.08rem;
  }
}