/* Кнопка "Техподдержка" */
.orange-gradient-btn {
  background-color: #FE7F10 !important;
  background-image: linear-gradient(90deg, #FFBE85 0%, #FE7F10 100%) !important;
  color: #ffffff !important;
  border: none !important;
}

.orange-gradient-btn:hover,
.orange-gradient-btn:active {
  background-color: #FE7F10 !important;
  background-image: none !important;
  color: #ffffff !important;
}

/* Цвет текста в лого */
.site-branding .site-title-container .site-description a {
  color: #000 !important;
}

.site-branding .site-title-container .site-description a:hover {
  color: #FE7F10 !important;
}

/* Выравнивание текста в лого */
.gt-media-desc {
  display: flex;
  align-items: flex-start !important;
  gap: 13px;
}

.gt-media-desc .site-logo-container {
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.gt-media-desc .site-logo-container img {
  display: block;
}

.gt-media-desc .site-title-container {
  margin: 0 !important;
  padding-top: 3px !important;
}

.gt-media-desc .site-title,
.gt-media-desc .site-description {
  margin: 0 !important;
  padding: 0 !important;
}

.gt-media-desc .site-title {
  display: block;
  margin-bottom: 3px !important;
  line-height: 1 !important;
}

.gt-media-desc .site-description {
  line-height: 1.15 !important;
}

/* Бегущая строка */
.marquee-line {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.marquee-line .elementor-widget,
.marquee-line .elementor-widget-container {
	width: 100%;
	max-width: none;
	overflow: hidden;
}

.marquee-track {
	display: flex;
	width: max-content;
	min-width: max-content;
	white-space: nowrap;
	will-change: transform;
	animation: marqueeMove 22s linear infinite;

	font-family: inherit;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #ffffff;
}

.marquee-track span {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	flex-shrink: 0;
}

@keyframes marqueeMove {
	from {
		transform: translate3d(0, 0, 0);
	}

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

@media (max-width: 767px) {
	.marquee-track {
		font-size: 16px;
		animation-duration: 18s;
	}
}

/* Футер лого */
.footer-logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-text img {
  display: block;
  width: 66px;
  height: 89px;
  flex-shrink: 0;
}

.footer-logo-title {
  display: flex;
  flex-direction: column;
  font-family: Inter, sans-serif;
  font-size: 17.34px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000;
}

.footer-logo-title span {
  display: block;
}

/* Футер колонки */
#footer [data-row="bottom"] .ct-container {
  display: grid !important;
  grid-template-columns: 210px 395px 260px minmax(340px, 1fr) !important;
  column-gap: 55px !important;
  align-items: flex-start;
}

#footer [data-column="widget-area-4"] {
  min-width: 340px;
}

@media (max-width: 1024px) {
  #footer [data-row="bottom"] .ct-container {
    grid-template-columns: 1fr 1fr !important;
    row-gap: 30px;
  }
}

@media (max-width: 767px) {
  #footer [data-row="bottom"] .ct-container {
    grid-template-columns: 1fr !important;
  }
}

/* Лого центр */
.big-logo-text {
  display: flex;
  align-items: center;
  gap: 24px;
}

.big-logo-text img {
  display: block;
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

.big-logo-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Таблицы */
.custom-table-wrapper {
    overflow-x: auto;
    border: 1px solid #dbe7dd;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #fff;
}
.custom-table thead {
    background: #2d3f6d;
    color: #fff;
}
.custom-table th,
.custom-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e7efe8;
}
.custom-table th {
    text-align: center;
    white-space: normal;
}
.custom-table tbody tr {
    transition: background-color 0.2s ease;
}
.custom-table tbody tr:hover {
    background-color: rgba(255, 94, 21, 0.08);
}
.custom-table tbody tr:last-child td {
    border-bottom: none;
}
@media (max-width: 768px) {
    .custom-table {
        font-size: 14px;
        min-width: 600px;
    }
    .custom-table th,
    .custom-table td {
        padding: 10px 12px;
    }
}