:root {
   /* Dark backgrounds */
  --bg-dark-1: #041c36; /* самый глубокий, почти ночной */
  --bg-dark-2: #223a54; /* средний */
  --bg-dark-3: #0f4b8b; /* синий акцентный/градиентный */

  /* Light backgrounds */
  --bg-light-1: #b7c0cd; /* самый тёмный из светлых */
  --bg-light-2: #e2e6ec; /* средний */
  --bg-light-3: #f3f4f6; /* самый светлый, почти белый */
  
  /* Text */
  --txt-light: #ffffff;  /* текст на тёмном фоне */
  --txt-light-secondary: #B0B8C1; /* второстепенный на тёмном */
  --txt-dark: #223a54;   /* основной текст на светлом */
  --txt-dark-secondary: #4a5a6a; /* второстепенный на светлом */
  --txt-muted: #8C9BA5;  /* мелкий текст */
  
  /* Accent*/
  --accent: #32e875;
  --accent-hover: #28c462;
  --accent-light: #6fffa3;
  
  
  /* 🎯 Кнопки */
  --btn-bg: var(--accent);
  --btn-bg-hover: var(--accent-hover);
  --btn-txt: #041c36;
  --btn-txt-hover: #fff;
  
  /* ссылки на тёмном фоне */
  --link-dark: #8db8ff;      /* спокойный голубой/стальной */
  --link-dark-hover: #32e875;
  /* ссылки на светлом фоне */
  --link-light: #0f4b8b;     /* глубокий синий */
  --link-light-hover: #32e875;
  
  
     /* Хлебные крошки */
     --bc-bg:#f7f7f7;
  --bc-link: var(--bg-dark-2);
  --bc-link-hover: var(--bg-dark-3);
  --bc-pointer: var(--bg-dark-2);
  --bc-pointer-hover:var(--bg-dark-3);
  
  --bc-last: #177eed;
  --bc-line:var(--bc-last);




  /* Статусы */
  --color-success: #28A745;
  --color-error: #DC3545;
  --color-warning: #FFC107;  /* можно оставить для предупреждений */
  --color-info: #17A2B8;



  /* 🔍 Поля ввода */
  --input-bg: #16232F;                 
  --input-bg-hover: #1F374F;           
  --input-bg-focus: #0D2B4A;           
  --input-border: #2C3E50;
  --input-border-hover: #3B4A5A;
  --input-border-focus: var(--color-accent);
  --input-text: var(--color-text-main);
  --input-placeholder: #7D8A99;
  --input-radius: 8px;
  --input-padding: 12px;

  /* 🖼 Карточки / блоки */
  --card-bg: #1A2533;
  --card-bg-hover: #1F2F45;
  --card-border: #222F3E;


  
  /* 🛒 Иконки и бейджи */
  --icon-color: var(--color-accent);
  --icon-hover: var(--color-accent-hover);
  --badge-bg: var(--color-accent);
  --badge-text: #FFFFFF;

}


/* =========================
   ВЕРХНЕЕ МЕНЮ
========================= */
.top-bar {
  display: flex;
  justify-content: space-between; /* слева пусто, справа контент */
  align-items: center;
  padding: 5px 10%;
  background: linear-gradient(to right, var(--bg-dark-1), var(--bg-dark-2)) !important;
  
  font-size: 14px;
}

/* Левый блок остаётся пустым */
.top-bar .top-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Правый блок с контактами и соцсетями */
.top-bar .top-right {
  display: flex;
  align-items: center;
  gap: 40px; /* расстояние между контактами и соцсетями */
  flex-wrap: nowrap;   /* не переносить в столбик */
}

/* Контакты (телефон и почта) */
.top-bar .top-right .contact {
  display: flex;
  align-items: center;
  gap: 5px;          /* расстояние между иконкой и текстом */
  color: #b0b8c1 !important;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.top-bar .top-right .contact:hover {
  color: var(--accent) !important;
}

/* Соцсети (только иконки или текст + иконка) */
.top-bar .top-right a:not(.contact) {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8db8ff !important;
  font-size: 16px;
  transition: color 0.2s, transform 0.2s;
}

.top-bar .top-right a:not(.contact):hover {
  color: var(--accent) !important;
  transform: scale(1.2);
}

.top-bar .top-right .contact:last-of-type {
  margin-right: 20px; /* дополнительный отступ перед соцсетями */
}

/* =========================
   БАЗОВЫЙ КОНТЕЙНЕР ПОИСКА
========================= */
.t-site-search-input {
    display: flex;
    align-items: center;           /* вертикальное выравнивание */
    gap: 10px;                     /* расстояние между инпутом и кнопкой */
    max-width: 800px;              /* максимальная ширина блока */
    margin: 0 auto;                /* центрируем блок по горизонтали */
    padding: 20px;                 /* внутренние отступы */
    border-radius: 8px;            /* скругление углов */
    box-sizing: border-box;
}

/* =========================
   БЛОК ИНПУТА С ИКОНОЙ И КРЕСТИКОМ
========================= */
.t838__blockinput {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative; 
}


/* =========================
   САМО ПОЛЕ ВВОДА
========================= */
.t838__blockinput input.t838__input {
    background-color: #ffffff !important;
    height: 35px;
    width: 100%;
    font-size: 16px;
    padding: 0 12px;
    box-sizing: border-box;
    color: #223a54 !important;  
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}

.t838__blockinput input.t838__input::placeholder {
    color: #6e7a84 !important;
}

.t838__blockinput input.t838__input:hover {
    box-shadow: 0 0 5px var(--bg-dark-2) !important;
}

.t838__blockinput input.t838__input:focus {
    box-shadow: 0 0 15px var(--bg-dark-3) !important;
    background: #fdfdfd !important;
    outline: none;
    background-color: #fdfdfd !important;
}

/* =========================
   КНОПКА SEARCH
========================= */
.t838__blockbutton button.t-submit {
    height: 35px;                  /* совпадает с высотой инпута */
    font-size: 14px;
    padding: 0 20px;               /* горизонтальные отступы */
    border-radius: 0px;
    border: none;
    background-color: var(--btn-bg) !important;
    color: var(--btn-txt) !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* Ховер кнопки */
.t838__blockbutton button.t-submit:hover {
    background-color: var(--btn-bg-hover) !important;
    color: var(--btn-txt-hover) !important;
}

/* =========================
   ИКОНКИ
========================= */
/* Лупа */
.t838__search-icon {
    display: none !important;
}

/* Крестик закрытия */
.t-site-search-close {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Loader */
.t-site-search-loader {
    width: 18px;
    height: 18px;
}

/* =========================
   ПЛЕЙСХОЛДЕР
========================= */
.t838__blockinput input.t838__input::-webkit-input-placeholder { color:#000000; opacity:0.5; }
.t838__blockinput input.t838__input::-moz-placeholder { color:#000000; opacity:0.5; }
.t838__blockinput input.t838__input:-moz-placeholder { color:#000000; opacity:0.5; }
.t838__blockinput input.t838__input:-ms-input-placeholder { color:#000000; opacity:0.5; }

.t838 {
    position: relative; /* теперь логотип позиционируется относительно всего блока */
    background: #f3f4f6 !important;
    z-index: 1100;
}

/* Логотип */
.my-logo {
    position: absolute;
    left: 15%;               /* 20% от всей ширины блока/страницы */
    top: 50%;
    transform: translateY(-50%);
}

.my-logo img {
    height: 40px;            /* размер логотипа */
    width: auto;
    display: block;
}

/* Иконки справа */
.my-icons {
    position: absolute;           /* относительно блока .t838 */
    right: 15%;                   /* отступ справа */
    top: 50%;                     /* вертикальное центрирование */
    transform: translateY(-50%);
    display: flex;
    gap: 35px;                    /* расстояние между иконками */
}

.my-icons .icon-link i {
    font-size: 20px;              /* размер иконок */
    color: var(--link-light) !important;             /* основной цвет сайта */
    transition: color 0.3s, transform 0.3s; /* плавный hover */
}

.my-icons .icon-link:hover i {
    color: var(--link-light-hover) !important;               /* цвет при наведении */
    transform: scale(1.2);        /* лёгкое увеличение */
}


.t838__blockinput::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10' cy='10' r='7' stroke='%23666' stroke-width='2' fill='none'/%3E%3Cline x1='15' y1='15' x2='21' y2='21' stroke='%23666' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    pointer-events: none;
}


/* =========================
   ПОИСК МОБИЛЬНЫЙ
========================= */
@media (max-width: 1199px) {
  .t985 .t-input:focus {
    box-shadow: 0 0 15px var(--bg-dark-1) !important;
    background: #fdfdfd !important;
    outline: none;
    border-color: #223a54 !important;
  }
}

/* =========================
   КОНТЕЙНЕР МЕНЮ
========================= */

.menu-bottom-nav ul.menu-level-1 {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    background:
        /* сплошная заливка */
        linear-gradient(to bottom,
            #f3f4f6 0 50%,          /* цвет до половины */
            transparent 50% 100%),
        /* мягкая тень */
        linear-gradient(to bottom,
            rgba(0,0,0,0.25) 50%,   /* начало тени ровно на границе */
            rgba(0,0,0,0) 60%);     /* постепенное исчезновение */
}

/* =========================
   КНОПКИ СЛЕПЛЕННЫ
========================= */
.menu-bottom-nav ul.menu-level-1 > li {
    position: relative; /* это важно! */
    margin: 0;
}

/* =========================
   СКРУГЛЕНИЕ КРАЕВ КНОПОК
========================= */
.menu-bottom-nav ul.menu-level-1 > li:first-child > a {
    border-radius: 12px 0 0 12px;
}
.menu-bottom-nav ul.menu-level-1 > li:last-child > a {
    border-radius: 0 12px 12px 0;
}
.menu-bottom-nav ul.menu-level-1 > li:not(:first-child):not(:last-child) > a {
    border-radius: 0;
}

/* =========================
   СТИЛИ КНОПОК
========================= */
.menu-bottom-nav ul.menu-level-1 > li > a {
    display: inline-block;
    padding: 20px 15px;
    color:var(--link-light) !important;
    background-color: var(--bg-light-2) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase; /* если хочешь стиль спортивного меню */
    box-shadow: 0 5px 0 #1a2c45;
    transition: all 0.2s ease;
    white-space: nowrap;
}
/* Hover кнопки — сохраняется пока курсор на li или подменю */
.menu-bottom-nav ul.menu-level-1 > li:hover > a {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #1a2c45;
    background-color: var(--accent-hover) !important;
    color: white !important;
}
/* =========================
   Hover — кнопка поднимается
========================= */
.menu-bottom-nav ul.menu-level-1 > li > a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #1a2c45;
    color: white !important;
    background-color: var(--accent-hover)! important;
}

/* =========================
   Active — вдавленная кнопка
========================= */
.menu-bottom-nav ul.menu-level-1 > li > a:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1a2c45;
}

/* =========================
   ПОДМЕНЮ 2 УРОВНЯ
========================= */
.menu-bottom-nav ul.menu-level-2 {
    list-style: none;
    position: absolute;
    top: 100%;       /* сразу под кнопкой */
    left: 50%;       /* центр родителя */
    transform: translateX(-50%);/* центрирование + начальное смещение для анимации */
    background: var(--bg-dark-2) !important;
    padding: 10px 0;
    min-width: 180px; /* можно и auto */
    display: block;
    opacity: 0;
    visibility: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Показ подменю при hover родителя */
.menu-bottom-nav ul.menu-level-1 > li:hover > ul.menu-level-2 {
    opacity: 1;
    visibility: visible;
}

/* Элементы подменю 2 уровня */
.menu-bottom-nav ul.menu-level-2 li a {
    display: block;
    font-family: 'Inter', sans-serif; /* читаемость на подменю */
    font-weight: 400;  
    font-size: 13px;
    padding: 8px 20px;
    color: #ffffff !important; /* текст обязательно светлый */
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.3s;
}

/* Hover элементы подменю 2 уровня */
.menu-bottom-nav ul.menu-level-2 li a:hover {
    background-color: var(--accent-light) !important;
    color: var(--bg-dark-1) !important;
}

/* Сохраняем hover эффект на подменю 2 уровне, пока курсор на подменю 3 */
.menu-bottom-nav ul.menu-level-2 li:hover > a {
    background-color: var(--accent) !important; /* или тот же hover цвет */
    color: var(--bg-dark-1) !important;
}


/* =========================
   ВЛОЖЕННОЕ ПОДМЕНЮ 3 УРОВНЯ
========================= */
.menu-bottom-nav ul.menu-level-2 li {
    position: relative;
}

.menu-bottom-nav ul.menu-level-2 li ul.menu-level-3 {
    list-style: none;
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(0) translateY(5px);
    display: block;
    opacity: 0;
    visibility: hidden;
    background: var(--bg-dark-2) !important;
    padding: 10px 0;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Показ подменю 3 уровня при hover родителя */
.menu-bottom-nav ul.menu-level-2 li:hover > ul.menu-level-3 {
    opacity: 1;
    transform: translateX(0) translateY(0);
    visibility: visible;
}

/* Элементы подменю 3 уровня */
.menu-bottom-nav ul.menu-level-3 li a {
    display: block;
    font-family: 'Inter', sans-serif; /* читаемость на подменю */
    font-weight: 400;                 /* Medium */
    padding: 8px 20px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.3s;
}

/* Hover элементы подменю 3 уровня */
.menu-bottom-nav ul.menu-level-3 li a:hover {
    background-color: var(--accent);
    color: var(--bg-dark-1) !important;
}


/* =========================
   ХЛЕБНЫЕ КРОШКИ
========================= */
#breadcrumbs {
    width: 88.5%;                     /* ширина блока */
    margin: 15px auto;              /* центрируем блок по горизонтали */
    padding: 10px 15px;             /* внутренние отступы сверху/снизу и слева/справа */
    background: --bc-bg !important;            /* фон блока */
    
    border-radius: 12px;            /* скруглённые бока */
    box-shadow: 0 3px 6px rgba(0,0,0,0.1); /* лёгкая тень */
    font-family: 'Inter', sans-serif;
    font-size: 14px;

    display: flex;
    align-items: center;
    flex-wrap: nowrap;              /* все элементы в одну линию */
    overflow-x: auto;               /* горизонтальный скролл при необходимости */
    padding-left: 15px;             /* текст прижат к левому краю блока */
}

.breadcrumbs-inner {
    padding-left: 10%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

/* Ссылки */
#breadcrumbs a {
    color: var(--bc-link) !important;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

#breadcrumbs span {
    display: inline-flex;
    align-items: center;
    padding: 0 5px;
}

/* Hover */
#breadcrumbs a:hover {
    color: var(--bc-link-hover)  !important;
    transform: scale(1.05);
}

#breadcrumbs a::after {
    content: '';
    display: block;
    height: 1px;
    width: 0%;
    background: var(--bc-line) !important;
    position: absolute;
    bottom: -3px;
    left: 0;
    transition: width 0.3s ease;
}

#breadcrumbs a:hover::after {
    width: 100%;
}

/* Разделители */
#breadcrumbs .divider {
    margin: 0 8px;
    display: inline-flex;
    align-items: center;
}

#breadcrumbs .divider i {
    color: var(--bc-pointer) !important;
    font-size: 12px !important;
    transition: transform 0.3s, color 0.3s;
    transform: rotate(0deg);
}

/* Hover на стрелку при наведении на ссылку */
#breadcrumbs a:hover ~ .divider i,
#breadcrumbs a:hover + .divider i {
    transform: rotate(180deg);
    color: var(--bc-pointer-hover) !important;
}

/* Последний сегмент */
#breadcrumbs span.current {
    color: var(--bc-last);
    font-weight: 400;
}

@media (max-width: 1199px) {
    /* Базовый стиль — десктоп */
    #breadcrumbs {
        margin: 5px auto;              /* центрируем блок по горизонтали */
    }
    #breadcrumbs .breadcrumbs-inner {
        padding-left: 0%;
    }
}


/* 


            МОБИЛЬНАЯ ВЕРСИЯ

*/

/* Нижнее мобильное меню */
.mobile-bottom-nav {
 position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--bg-dark-1) !important;
  border-top: 1px solid #ddd;
  z-index: 1000;
  height: 60px;
  box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease; /* плавное появление/скрытие */
}

/* Общие стили для кнопок */
.mobile-bottom-nav .mobile-bottom-item {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: white !important;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  background: none;
  border: none;
}

/* Базовый размер иконок и подписи */
.mobile-bottom-nav .mobile-bottom-item i {
  margin-bottom: 4px;   /* расстояние до подписи */
  color: inherit; /* наследуем цвет родителя */
}

.fa-solid { font-size: 20px !important; }

/* Иконка и текст наследуют цвет родителя */
.mobile-bottom-item i,
.mobile-bottom-item span {
  color: inherit;
}

/* Градация цвета для всего элемента */
.mobile-bottom-nav .mobile-bottom-item:nth-child(1) { color: #fff !important; }
.mobile-bottom-nav .mobile-bottom-item:nth-child(2) { color: #e2e6ec !important; }
.mobile-bottom-nav .mobile-bottom-item:nth-child(3) { color: #b7c0cd !important; }
.mobile-bottom-nav .mobile-bottom-item:nth-child(4) { color: #8c9ba5 !important; }
.mobile-bottom-nav .mobile-bottom-item:nth-child(5) { color: #4a5a6a !important; }


/* Подсветка при hover */
.mobile-bottom-nav .mobile-bottom-item:hover i,
.mobile-bottom-nav .mobile-bottom-item:hover span,
.mobile-bottom-nav .mobile-bottom-item.active i,
.mobile-bottom-nav .mobile-bottom-item.active span {
  color: var(--accent) !important;
}




/* =========================
   БОКОВОЕ МЕНЮ (Мобильное)
========================= */
/* Кнопка гамбургера */
.mobile-burger-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1001;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Боковое мобильное меню */
.mobile-menu-bottom {
  position: fixed;
  top: 0;
  left: -275px;
  width: 275px;
  height: 100%;
  background-color: var(--bg-dark-1);
  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-menu-bottom.open {
  left: 0;
}

/* Основные пункты меню с разделителями и отступами */
.mobile-menu-level-1 > li {
  border-bottom: 1px solid var(--bg-dark-2); /* разделитель между пунктами */
  padding: 0; /* убираем padding с li, переносим на a */
}

.mobile-menu-level-1 > li:last-child {
  border-bottom: none;
}

.mobile-menu-level-1 > li > a {
  display: block;      /* растягиваем на весь блок */
  width: 100%;
  padding: 15px 20px;  /* внутренние отступы */
  color: #fff !important;
  text-transform:uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600 !important;
}

.mobile-menu-level-1 > li > a:hover {
  background-color: #222; /* hover по всей ширине */
}

/* Подменю — второй уровень */
.mobile-menu-level-2 > li {
  padding: 0; /* убираем padding с li */
  border-bottom: 1px solid #333; /* лёгкий разделитель для подменю */
}

.mobile-menu-level-2 > li:last-child {
  border-bottom: none;
}

.mobile-menu-level-2 > li > a {
  display: block;
  width: 100%;
  padding: 10px 25px;
  padding-left: 35px; /* сдвиг вправо для второго уровня */
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.mobile-menu-level-2 > li > a:hover {
  background-color: #222;
}

/* Подменю — третий уровень */
.mobile-menu-level-3 > li {
  padding: 0;
}

.mobile-menu-level-3 > li > a {
  display: block;
  width: 100%;
  padding: 8px 30px;
  padding-left: 50px; /* сдвиг вправо для третьего уровня */
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
}

.mobile-menu-level-3 > li > a:hover {
  background-color: #222;
}

/* Скрываем подменю по умолчанию */
.mobile-menu-level-2,
.mobile-menu-level-3 {
  display: none;
}










body {
    display: block;
    margin: 0;
}

#allrecords ul {
    padding-left: 0;
}

h1, ul{
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    list-style-type: none;   
    padding-inline-start: 0;
}

@media (min-width: 320px) and (max-width: 479px) {
    .footer{
        height: 1085px;
    }

    .footer-info{
        position: relative;
        justify-content: center;
        padding-top:25px;
    }
    
    .footer-menu{
        position: relative;
        justify-content: center;
        padding-top:25px;
    }
    .footer-wk{
        position: relative;
        justify-content: center;
        padding-top:25px;
    }

    .footer-logo-copyright-svg{ 
        width:120px;
        height:50px;
    }
    .footer-logo-copyright{
        width:250px;
        height:70px;
        margin: 25px 0 0 0 ;
    }
}

@media (min-width: 480px) and (max-width: 639px) {
    .footer{
        height: 1100px;
    }

    .footer-info{
        position: relative;
        justify-content: center;
        padding-top:25px;
    }
    
    .footer-menu{
        position: relative;
        justify-content: center;
        padding-top:25px;
    }
    .footer-wk{
        position: relative;
        justify-content: center;
        padding-top:25px;
    }
    .footer-logo-copyright-svg{ 
        width:120px;
        height:50px;
    }
    .footer-logo-copyright{
        width:250px;
        height:70px;
        margin: 50px 0 0 0 ;
    }
}

@media (min-width: 640px) and (max-width: 959px) {
    .footer{
        height: 740px;
    }

    .footer-info{
        position: absolute;
        float:right;
        margin:25px 0 0 110px;
    }

    .footer-menu{
        position: relative;
        float:right;
        margin: 25px 100px 0 0;
    }
    .footer-wk{
        position: absolute;
        left:100px;
        margin-top: 420px;
    }
    .footer-logo-copyright-svg{ 
        width:120px;
        height:50px;
    }
    .footer-logo-copyright{
        width:250px;
        height:70px;
        margin: 650px 0 0 0 ;
    }
}

@media (min-width: 960px) and (max-width: 1199px) {
    .footer{
        height: 730px;
    }

    .footer-info{
        position: absolute;
        float:right;
        margin:25px 0 0 110px;
    }

    .footer-menu{
        position: absolute;
        margin: 25px 0 0 350px;
    }
    .footer-wk{
        position: relative;
        float:right;
        margin: 25px 150px 0 0;
    }
    .footer-logo-copyright-svg{ 
        width:120px;
        height:50px;
    }
    .footer-logo-copyright{
        width:250px;
        height:70px;
        margin: 650px 0 0 0 ;
    }
}

@media screen and (min-width: 1200px) {
    .header-top{
        height: 35px;
    }
    .header-s4t{
        font-size: 1.85rem;
        margin-left: 50px;
    }
    .header-top-menu-left a, .header-top-menu-right a{
        padding: 9px 20px 8px 20px;
        font-size: 0.9em;
    }
    .header-top-menu-tel{
        font-size: 1.5em;
        margin: 0.18em 2em 0 0;
    }
    .header-bottom{
        height: 47px;
    }
    .header-bottom-menu >ul li a{
        padding:15px 10px;
        font-size: .9rem;
    }
.footer{
        height: 750px;
    }

    .footer-info{
        position: absolute;
        float:right;
        margin:25px 0 0 110px;
    }

    .footer-menu{
        position: absolute;
        margin: 25px 0 0 400px;
    }
    .footer-wk{
        position: relative;
        float:right;
        margin: 25px 150px 0 0;
    }
    .footer-logo-copyright-svg{ 
        width:120px;
        height:50px;
    }
    .footer-logo-copyright{
        width:250px;
        height:70px;
        margin: 670px 0 0 0 ;
    }
}


.footer{
    width: 100%;
    background: #1d1f26;
    margin-top: 20px;
}

.footer a{
    color: white !important;
    text-decoration: none!important;
    transition:.4s;
}
.footer a:hover{
    color: #ed7d31 !important;
    text-decoration: underline!important;
    transition:.4s;
}
.footer-start{
    display: flex;
}

.footer-wk{
    font-size:19px;
    color: #B2B3B3 !important;
    font-weight: bold; 
    text-align: center;
}
.footer-wk-t{
    margin-top:5px;
    font-size:1.2rem;
    color: white !important;
}
.footer-other{
    margin-top:25px;
    line-height:30px;
    font-size:1.1rem;
}
.footer-other a{
    color:#ed7d31!important;
    text-decoration: none;
    transition:.4s;
}
.footer-other a:hover{
    color: #B2B3B3 !important;
    text-decoration: underline;
    transition:.4s;
}
.footer-info{
    font-size: 19px;
    color: #B2B3B3 !important;
    font-weight: bold;
    text-align: center;
}

.footer-info a{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-size:17px;
    font-weight: normal;
    padding:8px 0 8px 0;
}

.footer-menu{
    font-size: 19px;
    color: #B2B3B3 !important;
    font-weight: bold;
    text-align: center;
}

.footer-menu a{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-size:17px;
    font-weight: normal;
    padding:8px 0 8px 0;
}

.footer-logo-copyright{
    display:block;
    position: absolute;
    right:50%;
    transform:translate(50%,0);
}

.footer-logo-copyright-svg{
    position: absolute;
    right:50%;
    transform:translate(50%,0);
}

.footer-copyright{
    color: white !important;
    letter-spacing: 3px;
    margin: 60px 0 0 30px;
}



