#sp-header-topbar {
  background-color: #E84D0E !important;
}
@media (max-width: 991px) {
  #sp-header-topbar {
    margin: 0px 0px !important;
  }
}

#sp-header-topbar a {
  color: #FFFFFF !important;
}
.sp-contact-info li {
  font-size: 90%;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.sp-megamenu-parent {
  background: #E84E0F;
  padding: 12px !important;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 12px;
}
.sp-megamenu-parent > li > a {
  font-weight: 600 !important;
  text-transform: uppercase !important;
}
.sp-megamenu-parent > li.active > a {
  font-weight: 600 !important;
  text-transform: uppercase !important;
}

.burger-icon > span {
  background-color: #FFF !important;
}
.offcanvas-active .burger-icon > span, #modal-menu-toggler.active .burger-icon > span {
  background-color: #FFF !important;
}
.bmenu li {
  padding-right: 32px;
}
.bmenu {
  font-size: 17px;
  padding-right: 32px;
  line-height: 1.1;
  font-weight: 600;
}
.navbar-toggler {
  color: rgba(255, 255, 255, 0.9) !important;
}

.orange-text span {
  color: #ffffff;
  padding-bottom: 6px;
  padding-left: 6px;
  padding-right: 6px;
  background: #FF541F;
  border-radius: 5px;
}
.svg-image image {
	width: 80%;
	height: auto;
}
.myform {
	cursor: pointer;
}
.article-social-share {
  display: none;
}
/* Красивый список блога */
/* === Список блога с анимированным глазом — iq007 === */

.list-group {
  list-style: none;
  padding: 0;
  margin: 2.5rem auto;
  max-width: 780px;
}

.list-group-item {
  margin-bottom: 22px;
  padding: 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: blogItemSlideIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* Последовательное появление */
.list-group-item:nth-child(1)  { animation-delay: 0.1s; }
.list-group-item:nth-child(2)  { animation-delay: 0.16s; }
.list-group-item:nth-child(3)  { animation-delay: 0.22s; }
.list-group-item:nth-child(4)  { animation-delay: 0.28s; }
.list-group-item:nth-child(5)  { animation-delay: 0.34s; }
.list-group-item:nth-child(6)  { animation-delay: 0.40s; }
.list-group-item:nth-child(7)  { animation-delay: 0.46s; }
.list-group-item:nth-child(8)  { animation-delay: 0.52s; }
.list-group-item:nth-child(9)  { animation-delay: 0.58s; }
.list-group-item:nth-child(10) { animation-delay: 0.64s; }
.list-group-item:nth-child(11) { animation-delay: 0.70s; }
.list-group-item:nth-child(12) { animation-delay: 0.76s; }

@keyframes blogItemSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.list-group-item a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #ffffff;
  color: #1e293b;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #e2e8f0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

/* === Глаз — SVG-иконка через data-uri === */
.list-group-item a::before {
  content: '';
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='3' fill='%234f46e5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  transform: scale(1);
}

/* === Анимация "взгляда" при наведении === */
.list-group-item a:hover,
.list-group-item a:focus {
  background: #f8fafc;
  color: #4338ca;
  transform: translateX(6px);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.15);
  padding-left: 28px;
  border-color: #c7d2fe;
}

.list-group-item a:hover::before,
.list-group-item a:focus::before {
  transform: scale(1.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='10' r='4' fill='%237c3aed'/%3E%3C/svg%3E");
  /* Зрачок слегка поднимается вверх — эффект "внимательного взгляда" */
}

/* === Тёмная тема === */
@media (prefers-color-scheme: dark) {
  .list-group-item a {
    background: #1e293b;
    color: #f1f5f9;
    border-color: #334155;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  }

  .list-group-item a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a5b4fc' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='3' fill='%23a5b4fc'/%3E%3C/svg%3E");
  }

  .list-group-item a:hover {
    background: #334155;
    color: #e0e7ff;
    box-shadow: 0 6px 18px rgba(118, 90, 235, 0.25);
    border-color: #475569;
  }

  .list-group-item a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c7d2fe' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='10' r='4' fill='%23c7d2fe'/%3E%3C/svg%3E");
  }
}

/* === Мобильная адаптация === */
@media (max-width: 600px) {
  .list-group-item a {
    padding: 16px 20px;
    font-size: 1rem;
    gap: 14px;
  }

  .list-group-item a:hover {
    transform: translateX(3px);
    padding-left: 24px;
  }

  .list-group-item a::before {
    width: 24px;
    height: 24px;
  }
}