.top-main h1 span.color {
  color: #ffe119;
  font-weight: 300;
}

.mt-md {
  margin-top: 20px;
}

.pl-md {
  padding-left: 20px;
}

.bvi-open {
    position: fixed;
    font-size: larger;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 5px;
}

/* Стили для подвала */
.footer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
}

.footer__container {
    width: 50%;
    max-width: 100% !important;
    margin-right: 50px;
}

.footer__legal {
    width: 20%;
}

.footer__sveden {
    width: 30%;
    margin-right: 60px;
}

.footer__logo-section {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer__logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__logo {
    display: block;
    flex-shrink: 0;
}

.footer__org-info {
    margin-bottom: 0;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer__nav-top {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 0;
    flex: 1;
    align-self: center;
}

.footer__org-inn {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 10px;
}

.footer__org-name {
    color: #fff !important;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 0;
    max-width: 200px;
}

.footer__nav-item {
    color: #fff !important;
}

.footer__nav-item:hover {
    color: #f0f0f0 !important;
}

.footer__nav-top .footer__nav-item {
    flex: 0 0 auto !important;
    flex-basis: auto !important;
    font-size: 20px;
    line-height: 1.4;
    padding: 2px 0;
}

@media only screen and (max-width: 930px) {
    .footer__nav-top .footer__nav-item {
        flex-basis: auto !important;
    }
}

.footer__sveden h4 {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline !important;
}

.footer__sveden-columns {
    display: flex;
    gap: 30px;
}

.footer__sveden-column-1,
.footer__sveden-column-2 {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__sveden-column-1 li,
.footer__sveden-column-2 li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__sveden-column-1 li a,
.footer__sveden-column-2 li a {
    color: #fff !important;
    font-size: 12px;
    line-height: 1.4;
    display: block;
    padding: 2px 0;
    text-decoration: none;
    white-space: nowrap;
}

.footer__sveden-column-1 li a:hover,
.footer__sveden-column-2 li a:hover {
    color: #f0f0f0 !important;
}

.footer__legal h4 {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline !important;
}

.footer__legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__legal li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__legal li a {
    color: #fff !important;
    font-size: 12px;
    line-height: 1.4;
    display: block;
    padding: 2px 0;
    text-decoration: none;
}

.footer__legal li a:hover {
    color: #f0f0f0 !important;
}

/* Адаптивные стили для подвала - планшеты 1000-1300px с вертикальным подвалом */
@media only screen and (min-width: 1000px) and (max-width: 1300px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer__container {
        width: 100%;
        margin-right: 0;
        order: 1;
        display: flex;
        justify-content: center;
    }
    
    .footer__logo-section {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }
    
    .footer__logo-wrapper {
        flex-direction: column;
        gap: 5px;
    }
    
    .footer__nav-top {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .footer__sveden {
        width: 100%;
        margin-right: 0;
        order: 3;
    }
    
    .footer__legal {
        width: 100%;
        order: 2;
    }
    
    .footer__sveden-columns {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer__sveden h4,
    .footer__legal h4 {
        display: block !important;
        text-align: center;
    }
    
    .footer__sveden-column-1,
    .footer__sveden-column-2,
    .footer__legal ul {
        text-align: center;
    }
}

/* Адаптивные стили для подвала - горизонтальный подвал с оптимизацией для 1300-1400px */
@media only screen and (min-width: 1300px) and (max-width: 1400px) {
    .footer {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding-left: 0;
        padding-right: 0;
        gap: 4px;
    }
    
    .footer__container {
        width: 50%;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .footer__logo-section {
        gap: 50px;
    }
    
    .footer__logo-wrapper {
        gap: 20px;
    }
    
    .footer__org-inn {
        font-size: 14px;
        margin-bottom: 3px;
        margin-top: 5px;
    }
    
    .footer__org-name {
        font-size: 11px;
        line-height: 1.2;
        max-width: 180px;
    }
    
    .footer__nav-top {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    
    .footer__nav-top .footer__nav-item {
        font-size: 16px;
        line-height: 1.3;
        padding: 1px 0;
    }
    
    .footer__logo-section {
        gap: 50px;
    }
    
    .footer__legal {
        width: 16%;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .footer__legal h4 {
        font-size: 16px !important;
    }
    
    .footer__legal ul {
        margin-top: 5px;
    }
    
    .footer__legal li a {
        font-size: 11px;
        line-height: 1.3;
        padding: 1px 0;
    }
    
    .footer__sveden {
        width: calc(25% + 4px);
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .footer__sveden h4 {
        font-size: 16px !important;
    }
    
    .footer__sveden-columns {
        display: flex;
        gap: 12px;
        margin-top: 5px;
    }
    
    .footer__sveden-column-1,
    .footer__sveden-column-2 {
        flex: 1;
    }
    
    .footer__sveden-column-1 li a,
    .footer__sveden-column-2 li a {
        font-size: 11px;
        line-height: 1.3;
        padding: 1px 0;
        white-space: normal;
        word-break: break-word;
    }
}

/* Адаптивные стили для подвала - планшеты */
@media only screen and (max-width: 930px) {
    .footer {
        flex-wrap: wrap;
        padding-left: 15px;
        padding-right: 15px;
        gap: 20px;
        text-align: center;
    }
    
    .footer__container {
        width: 100%;
        margin-right: 0;
        order: 1;
    }
    
    .footer__logo-section {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }
    
    .footer__logo-wrapper {
        flex-direction: column;
        gap: 5px;
    }
    
    .footer__nav-top {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .footer__sveden {
        width: 100%;
        margin-right: 0;
        order: 3;
    }
    
    .footer__legal {
        width: 100%;
        order: 2;
    }
    
    .footer__sveden-columns {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer__sveden h4,
    .footer__legal h4 {
        display: block !important;
        text-align: center;
    }
    
    .footer__sveden-column-1,
    .footer__sveden-column-2,
    .footer__legal ul {
        text-align: center;
    }
}

/* Стили для страниц "Сведения об организации" */
.sveden-section h1 {
    font-size: 30px !important;
    line-height: 1.3 !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.sveden-section h3 {
    font-size: 18px !important;
    line-height: 1.4 !important;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.sveden-section a {
    color: #333333 !important;
}

.sveden-section li p strong {
    font-weight: 400 !important;
}