@font-face {
    font-family: 'Lato';
    src: local('Lato-Regular'), local('Lato Regular'), url('../../font/Lato-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: local('Lato-Medium'), local('Lato Medium'), url('../../font/Lato-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: local('Lato-SemiBold'), local('Lato SemiBold'), url('../../font/Lato-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: local('Lato-Bold'), local('Lato Bold'), url('../../font/Lato-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
html {
    box-sizing: border-box;
}

*,
*::after,
*::before {
    box-sizing: inherit;
    font-family: 'Lato';
}

img {
    max-width: 100%;
}
iframe {
    border-radius: 24px;
}

body {
    min-width: 320px;
    font-family: 'Lato';
    font-weight: 400;
    /* position: relative; */
    margin: 0;
}
section {
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
.breadcrumb {
    padding-top: 12px;
    max-width: 1400px;
    margin: 0 auto;
}
.breadcrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 4px;
    padding: 0;
    margin: 0;
}
.breadcrumb ul li a {
    /* display: -webkit-box;
    text-overflow: ellipsis; */
    font-family: 'Lato';
    text-decoration: none;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    transition: color 0.3s ease-in-out;
    /* max-width: 112px;
    overflow: hidden; */
    text-wrap: nowrap;
}
.breadcrumb ul li a:hover {
    color: #e96717;
}

input[type='submit'] {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px;
    background: #e96717;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}
.auth_form {
    padding: 32px 0 60px 0;
}
.auth_form tr {
    border: 1px solid #0a0a0a;
}
.auth_form td {
    padding: 5px;
}
.bx-auth-reg {
    padding: 0 0 60px 0;
}
.base-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.base-input label {
    color: var(--dark-23272-f, #23272f);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.base-input input {
    outline: none;
    border: none;
    border-radius: 8px;
    border: 1px solid var(--dark-lb-9-bfcb, #b9bfcb);
    background: var(--FFFFFF, #fff);
    padding: 20px 16px;
    width: 100%;
}
.base-checkbox__container {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: start;
    position: relative;
    /* padding-left: 35px; */
    margin-bottom: 12px;
    cursor: pointer;
    color: #23272f;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.base-checkbox__container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    /* position: absolute;
    top: 5px;
    left: 0; */
    position: relative;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 4px;
}
/* .checkmark-auth {
    position: absolute;
    top: 5px;
    left: 0;
    height: 25px;
    width: 25px;
    background-image: none;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 4px;
} */
.checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.base-checkbox__container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.base-checkbox__container .checkmark:after {
    left: 7px;
    top: 4px;
    width: 8px;
    height: 13px;
    border: solid #6ac259;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.register-form__actions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.popup {
    position: fixed;
    background-color: #fff;
    z-index: 105;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}
.popup .popup__container {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.popup .popup__container .popup__wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.popup .popup__container .popup__wrap .popup__title {
    margin: 0;
    color: #e96717;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}
.popup .popup__container .popup__wrap .popup__text {
    margin: 0;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.popup .popup__container .popup__links {
    display: flex;
    gap: 12px;
}
.popup .popup__container .popup__links a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 12px;
    background-color: #f5f5f5;
    transition: opacity 0.3s ease-in-out;
}
.popup .popup__container .popup__links a:hover {
    opacity: 0.7;
}
.popup-contacts {
    visibility: hidden;
    opacity: 0;
    border-radius: 12px;
    width: 346px;
}
.popup-contacts .popup__container {
    padding: 24px;
}
.popup-contacts .popup__container .popup__links {
    margin-top: 12px;
}
.popup-contacts .popup__container .popup__button {
    margin-top: 12px;
    color: #e96717;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px;
    border: 1px solid #e96717;
    padding: 12px 24px;
    background-color: transparent;
    transition: 0.3s ease-in-out;
}
.popup-contacts .popup__container .popup__button:hover {
    background-color: #e96717;
    color: #fff;
}
.popup-map {
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    width: 1400px;
    border-radius: 42px;
    padding: 8px;
    height: 717px;
}
.popup-map .popup-close {
    top: 36px;
    right: 36px;
    position: absolute;
    padding: 12px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 2;
    border: 0;
    width: 48px;
    height: 48px;
    cursor: pointer;
}
.popup-map .popup__container {
    padding: 42px;
    width: 406px;
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.popup-map .popup__container h2 {
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}
.popup-map .popup__container .popup__links {
    margin-top: auto;
}
.popup-map #map {
    border-radius: 42px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.popup-info {
    border-radius: 42px;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    /* max-width: 1400px; */
}
.popup-info button {
    top: 24px;
    right: 24px;
    position: absolute;
    padding: 12px;
    border-radius: 50%;
    background-color: #f5f5f5;
    z-index: 2;
    border: 0;
    width: 48px;
    height: 48px;
    cursor: pointer;
}
.popup-info .popup__container h2 {
    margin: 0;
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: #0a0a0a;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    width: calc(100% - 50px);
}
.popup-info .popup__container h3 {
    margin: 0;
    color: #e96717;
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    max-height: 10vh;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.popup-info .popup__container p {
    margin: 0;
    color: #0a0a0a;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    overflow-y: auto;
    max-height: 60vh;
}
.popup--active {
    visibility: visible;
    opacity: 1;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    display: none;
}

.header {
    width: 100%;
    top: 0;
    z-index: 101;
}
.header__wrap-top {
    background-color: #ededed;
}
.header__wrap-top .header__container {
    display: flex;
    padding: 24px 0;
    align-items: center;
    gap: 24px;
}
.header .header__container a {
    text-decoration: none;
}
.header__wrap-top .header__container .header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__wrap-top .header__container .header__logo img {
    width: 55px;
    height: 55px;
    /* background-color: #ffffff; */
    object-fit: cover;
}
.header__wrap-top .header__container .header__logo span {
    color: #23272f;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    max-width: 807px;
}
.header__wrap-top .header__container .header__links {
    margin-left: auto;
    display: flex;
    gap: 12px;
}
.header__wrap-top .header__container .header__links a {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease-in-out;
}
.header__wrap-top .header__container .header__links a:hover {
    opacity: 0.7;
}
.header__wrap-top .header__container .header__button {
    padding: 14px 24px;
    border-radius: 8px;
    border: 1px solid #23272f;
    background: #fff;
    color: #23272f;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.header__wrap-top .header__container .header__button:hover {
    background-color: #e96717;
    color: #fff;
    border-color: #fff;
}
.header__wrap-bottom {
    background-color: #ffffff;
}
.header__wrap-bottom .header__container {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
}
.header__wrap-bottom .header__container .header__button-menu {
    cursor: pointer;
    position: relative;
    border: none;
    background-color: transparent;
    padding: 0;
    transition: opacity 0.3s ease-in-out;
}
.header__wrap-bottom .header__container .header__button-menu:hover {
    opacity: 0.7;
}
.header__wrap-bottom .header__container .nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 12px;
}
.header__wrap-bottom .header__container .nav__list .list__item a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px;
    background: #ffe5b4;
    padding: 14px 24px;
    display: flex;
    gap: 4px;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
}
.header__wrap-bottom .header__container .nav__list .list__item a:hover {
    opacity: 0.7;
}
.header__wrap-bottom .header__container .nav__list .list__item button {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px;
    background: #ffe5b4;
    padding: 14px 24px;
    display: flex;
    gap: 4px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}
.header__wrap-bottom .header__container .nav__list .list__item button svg {
    transition: transform 0.3s ease-in-out;
}
.header__wrap-bottom .header__container .nav__list .list__item button:hover {
    opacity: 0.7;
}
.header__wrap-bottom .header__container .nav__list .list__item .button-accordion--active svg {
    transform: rotate(180deg);
}
.header__wrap-bottom .header__container .header__button-search {
    padding: 0;
    border: none;
    background-color: transparent;
    margin-left: auto;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}
.header__wrap-bottom .header__container .header__button-search:hover {
    opacity: 0.7;
}
.header__wrap-bottom .header__container .header__button-login {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px;
    background: #e96717;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}
.header__wrap-bottom .header__container .header__button-login:hover {
    opacity: 0.8;
}
.header__wrap-bottom .header__container .profile {
    display: flex;
    gap: 12px;
    align-items: center;
}
.header__wrap-bottom .header__container .profile__img {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__wrap-bottom .header__container .profile p {
    color: #23272f;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}
.header__wrap-bottom .accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.header__wrap-bottom .accordion__container {
    border-top: 2px solid #f5f5f5;
    padding: 24px 0 60px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.header__wrap-bottom .accordion__container .accordion__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.header__wrap-bottom .accordion__container .accordion__links a {
    border-radius: 8px;
    background: #ffe5b4;
    padding: 24px;
    width: calc(25% - 24px);
    background-color: #f5f5f5;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    transition: opacity 0.3s ease-in-out;
}
.header__wrap-bottom .accordion__container .accordion__links a:hover {
    opacity: 0.7;
}
.header__wrap-bottom .accordion__container .accordion__wrap {
    display: flex;
    gap: 24px;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav {
    width: 33%;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list__item a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease-in-out;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list__item a svg {
    transition: transform 0.3s ease-in-out;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list__item a svg path {
    transition: stroke 0.3s ease-in-out;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list__item .link--active {
    color: #e96717;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list__item .link--active svg {
    transform: rotate(180deg);
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list__item .link--active svg path {
    stroke: #e96717;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list-2 {
    padding: 10px 0 10px 10px;
    display: none;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list-2 .list__item a {
    font-size: 15px;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list-3 {
    padding: 10px 0 10px 10px;
    display: none;
}
.header__wrap-bottom .accordion__container .accordion__wrap nav .list-3 .list__item a {
    font-size: 14px;
}
.header__menu {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 100vh;
    width: 100vw;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.header__menu .menu__container {
    background-color: #f4f6f9;
    box-shadow: 182px 0px 51px 0px rgba(0, 0, 0, 0), 117px 0px 47px 0px rgba(0, 0, 0, 0.01), 66px 0px 39px 0px rgba(0, 0, 0, 0.05),
        29px 0px 29px 0px rgba(0, 0, 0, 0.09), 7px 0px 16px 0px rgba(0, 0, 0, 0.1);
    padding: 48px 44px 160px 48px;
    max-width: 576px;
    min-height: 100vh;
    transition: visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
    transform: translateX(-100vw);
}
.header__menu .list {
    list-style: none;
    width: 100%;
    padding: 0;
    position: relative;
}
.header__menu .list__item {
    padding: 0;
    position: relative;
    padding-right: 12px;
}
.header__menu .list__item:hover > .list-2 {
    display: block;
}
.header__menu .list__item:hover > a {
    color: #e96717;
}
.header__menu .list__item:hover > a svg path {
    stroke: #e96717;
}
.header__menu .list__item a {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    color: #0a0a0a;
    font-weight: 500;
    line-height: normal;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
}
.header__menu .list__item a svg path {
    transition: stroke 0.3s ease-in-out;
}
.header__menu .list__item .link--active {
    color: #e96717;
}
.header__menu .list__item .link--active svg path {
    stroke: #e96717;
}
.header__menu .list__item button {
    display: none;
    cursor: pointer;
    border: none;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    color: #d82525;
    font-weight: 500;
    line-height: normal;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
}
.header__menu .list__item:not(:last-child) {
    margin-bottom: 4px;
}
.header__menu .list-2 {
    display: none;
    border-radius: 8px;
    width: 578px;
    padding: 24px 0;
    position: absolute;
    background-color: #fff;
    border-radius: 8px;
    right: -578px;
    top: 0;
    z-index: 1000;
}
.header__menu .list-2 .list__item {
    padding: 0;
}
.header__menu .list-2 .list__item:hover > .list-3 {
    display: block;
}
.header__menu .list-2 .list__item:hover > a {
    color: #e96717;
}
.header__menu .list-2 .list__item:hover > a svg path {
    stroke: #e96717;
}
.header__menu .list-2 .list__item a {
    border-radius: 8px;
    padding: 4px 24px;
    font-size: 14px;
    color: #0a0a0a;
    font-weight: 500;
    line-height: normal;
    display: flex;
    justify-content: space-between;
}
.header__menu .list-2 .list__item .link--active {
    color: #e96717;
}
.header__menu .list-2 .list__item .link--active svg path {
    stroke: #e96717;
}
.header__menu .list-2 .list__item:not(:last-child) {
    margin-bottom: 4px;
}
.header__menu .list-2--active {
    display: block !important;
}
.header__menu .list-3 {
    display: none;
    border-radius: 8px;
    padding: 24px;
    width: 318px;
    position: absolute;
    background-color: #fff;
    border-radius: 8px;
    right: -318px;
    top: -24px;
}
.header__menu .list-3 .list__item {
    padding: 0;
}
.header__menu .list-3 .list__item a {
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 14px;
    color: #0a0a0a;
    font-weight: 500;
    line-height: normal;
    display: flex;
    justify-content: space-between;
}
.header__menu .list-3 .list__item a:hover {
    color: #e96717;
}
.header__menu .list-3 .list__item:not(:last-child) {
    margin-bottom: 4px;
}
.header__menu .list-3--active {
    display: block !important;
}
.header__menu .list--active {
    display: block;
}
.header__menu .header__contacts {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.header__menu .header__contacts h3 {
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    margin-bottom: 6px;
}
.header__menu .header__contacts p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    display: flex;
    gap: 8px;
}
.header__menu .header__contacts p span {
    color: #0a0a0a;
}
.header__menu .header__contacts p span:first-child {
    color: #e96717;
}
.header__menu::-webkit-scrollbar {
    width: 0;
}
.header__menu--active {
    visibility: visible;
    transform: none;
}
.header__menu--active .menu__container {
    visibility: visible;
    transform: none;
}

.main .question {
    z-index: 99;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0px 77px 22px 0px rgba(0, 0, 0, 0), 0px 49px 20px 0px rgba(0, 0, 0, 0.01), 0px 28px 17px 0px rgba(0, 0, 0, 0.05),
        0px 12px 12px 0px rgba(0, 0, 0, 0.09), 0px 3px 7px 0px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 50px;
    left: 30px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: 0.3s ease-in-out;
}
.main .question button {
    position: absolute;
    border: none;
    cursor: pointer;
    background-color: transparent;
    top: 4px;
    right: 4px;
    cursor: pointer;
}
.main .question h3 {
    margin: 0;
    margin-bottom: 20px;
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}
.main .question a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding: 14px 24px;
    border-radius: 8px;
    background: #f5f5f5;
}
.main .question .icon {
    cursor: pointer;
}

.footer {
    padding: 60px 0;
    background-color: #424242;
}
.footer__container {
    display: flex;
    gap: 42px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer__container .footer__wrap h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
.footer__container .footer__wrap .footer__text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    margin-bottom: 8px;
}
.footer__container .footer__wrap-left {
    max-width: 629px;
    display: flex;
    flex-direction: column;
}
.footer__container .footer__wrap-left .footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.footer__container .footer__wrap-left .footer__logo img {
    width: 66px;
    height: 66px;
    /* background-color: #ffffff; */
    object-fit: cover;
}
.footer__container .footer__wrap-left .footer__logo span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    max-width: 550px;
}
.footer__container .footer__wrap-left .footer__contacts {
    margin-bottom: 24px;
}
.footer__container .footer__wrap-left .footer__contacts .footer__title {
    margin-bottom: 12px;
}
.footer__container .footer__wrap-left .footer__work .footer__title {
    margin-bottom: 8px;
}
.footer__container .footer__wrap-left .footer__links {
    margin-top: auto;
    display: flex;
    gap: 12px;
}
.footer__container .footer__wrap-left .footer__links a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 12px;
    background-color: #fff;
    transition: opacity 0.3s ease-in-out;
}
.footer__container .footer__wrap-left .footer__links a:hover {
    opacity: 0.7;
}
.footer__container .footer__wrap-right {
    display: grid;
    grid-template-columns: repeat(2, 290px);
    grid-column-gap: 48px;
    grid-row-gap: 24px;
}
.footer__container .footer__wrap-right nav h3 {
    margin-bottom: 16px;
}
.footer__container .footer__wrap-right nav h3 svg {
    display: none;
}
.footer__container .footer__wrap-right nav .list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__container .footer__wrap-right nav .list__item a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    transition: opacity 0.3s ease-in-out;
}
.footer__container .footer__wrap-right nav .list__item a:hover {
    opacity: 0.7;
}
.footer__container .footer__wrap-bottom {
    width: 100%;
    display: flex;
    gap: 143px;
}
.footer__container .footer__wrap-bottom .footer__text {
    font-size: 14px;
}
.footer__container .footer__wrap-bottom .footer__text:first-child {
    max-width: 628px;
}
.footer__container .footer__wrap-bottom .footer__text:last-child a {
    text-decoration: none;
    color: #a82525;
}
#BX_file_dialog .content {
    padding: 0;
}
.content {
    padding: 64px 0;
}
.content .content__container {
    line-height: 1.4;
}
.content .content__container p {
    margin: 0;
    margin-bottom: 12px;
}
.content .content__container a {
    text-decoration: none;
    color: #e96717;
    display: inline-block;
    margin-bottom: 4px;
    margin-right: 10px;
}
.content .content__container .news-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.content .content__container .news-list .news-item {
    border-radius: 24px;
    padding: 12px;
    background-color: #f4f4f6;
}
.content .content__container .news-list .news-item img {
    border-radius: 24px;
    width: 100%;
    height: 200px;
}
.content .content__container .news-list .news-item .news-item-text {
    padding: 12px;
}
.content .content__container .news-item-header a {
    color: #000;
    transition: color 0.3s ease-in-out;
}
.content .content__container .news-item-header a:hover {
    color: #e96717;
}
.content .content__container .news-item-date {
    display: inline-block;
    background-color: #e96717;
    padding: 6px 12px;
    border-radius: 12px;
    color: #fff;
}
.content .content__container img {
    border-radius: 24px;
}
.content .content__container h1 {
    margin: 0;
    margin-bottom: 20px;
}
.content .content__container h2 {
    margin: 0;
    margin-bottom: 20px;
}
.content .content__container h3 {
    margin: 0;
    margin-bottom: 20px;
}
.content .content__container ul {
    /* list-style: none; */
}
.content .content__container img {
    max-height: 400px;
    object-fit: cover;
}
.wi-cookie-banner {
    background: #e96717 !important;
}
.content .content__container .content__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.content .content__container .content__list div {
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f6;
    height: 300px;
}
.content .content__container .content__list img {
    /* height: 300px; */
    object-fit: contain;
    height: 100%;
    cursor: zoom-in;
    border-radius: 0;
}
.wi-cookie-banner {
    background: #e96717 !important;
}
.content .content__container .bx_pagination_bottom {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 24px;
}
.content .content__container .bx_pagination_section_two {
    /* margin-left: auto; */
}
.content .content__container .bx_pagination_bottom .bx_pg_text,
.content .content__container .bx_pagination_bottom .bx_wsnw,
.content .content__container .bx_pagination_bottom ul li,
.content .content__container .bx_pagination_bottom ul li a {
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    font-family: 'Lato';
    font-size: 16px;
    color: #000;
    transition: opacity 0.3s ease-in-out;
}
.content .content__container .bx_pagination_bottom ul li a:hover {
    opacity: 0.7;
}
.content .content__container .bx_pagination_bottom ul .bx_active {
    background-color: #e96717;
    color: #fff;
}

.content .content__container .card .download {
    width: 100%;
    display: flex;
    gap: 8px;
    margin-top: auto;
    flex-wrap: wrap;
    padding-top: 12px;
    /* border-top: 1px solid #e96717; */
}
.content .content__container .card .download__link {
    background-color: #fff;
    border-radius: 12px;
    padding: 12px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.content .content__container .card .download__link span {
    display: block;
    color: #0a0a0a;
    margin-bottom: 8px;
    transition: color 0.3s ease-in-out;
}
.content .content__container .card .download__link div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.content .content__container .card .download__link div span {
    color: #616161;
    margin: 0;
}
.content .content__container .card .download__link:hover > span {
    color: #e96717;
}

@media (max-width: 1460px) {
    .container {
        margin: 0 30px;
    }
    .breadcrumb {
        margin: 0 30px;
    }
    .popup-map {
        width: 100%;
    }
    .header__menu .menu__container {
        width: 376px;
        padding: 24px 18px 48px 24px;
    }
    .header__menu .list-2 {
        width: 300px;
        right: -300px;
    }
    .header__menu .list-3 {
        width: 250px;
        right: -250px;
    }
    .main .gosuslugi__container #js-show-iframe-wrapper .bf-22__text {
        font-size: 24px;
    }
}
@media (max-width: 1280px) {
    .header__wrap-top .header__container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .header__wrap-top .header__container .header__logo {
        width: 100%;
    }
    .header__wrap-top .header__container .header__links {
        margin-left: unset;
    }
    .header__wrap-bottom .header__container {
        flex-wrap: wrap;
    }
    .header__wrap-bottom .header__container .header__button-menu {
        order: 1;
    }
    .header__wrap-bottom .header__container .nav {
        order: 5;
        width: 100%;
    }
    .header__wrap-bottom .header__container .header__button-search {
        order: 2;
    }
    .header__wrap-bottom .header__container .header__button-login {
        order: 3;
    }
    .header__wrap-bottom .header__container .profile {
        order: 4;
    }
    .main .question {
        bottom: 10px;
    }
    .main .question h3 {
        font-size: 16px;
    }
    .main .question a {
        font-size: 14px;
    }
    .main .question .icon {
        width: 60px;
        height: 60px;
    }
    .main .gosuslugi__container #js-show-iframe-wrapper .bf-22 {
        grid-template-columns: repeat(2, 1fr);
    }
    .main .gosuslugi__container #js-show-iframe-wrapper .bf-22__decor {
        background-position: right;
    }
    .footer__container .footer__wrap-left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: unset;
    }
    .footer__container .footer__wrap-left .footer__logo {
        width: 100%;
    }
    .footer__container .footer__wrap-left .footer__links {
        margin-top: 0;
    }
    .footer__container .footer__wrap-right {
        max-width: unset;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .content .content__container .news-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 960px) {
    .popup-map {
        height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    .popup-map .popup-close {
        width: unset;
        height: unset;
        padding: 0;
        top: 6px;
        right: 6px;
    }
    .popup-map .popup__container {
        padding: 0px;
        position: static;
        padding-top: 32px;
        padding-bottom: 12px;
        width: 100%;
    }
    .popup-map #map {
        height: 100%;
    }
    .popup-info {
        left: 0;
        right: 0;
        top: 0;
        transform: none;
        height: 100vh;
        border-radius: 0;
    }
    .popup-info button {
        background-color: transparent;
        top: 0;
        right: 0;
    }
    .popup-info .popup__container h2 {
        font-size: 24px;
        line-height: normal;
        width: 100%;
    }
    .popup-info .popup__container h3 {
        font-size: 18px;
    }
    .popup-info .popup__container p {
        font-size: 16px;
        max-height: 75vh;
    }
    .header__wrap-top .header__container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .header__wrap-top .header__container .header__logo {
        width: 100%;
    }
    .header__wrap-top .header__container .header__links {
        margin-left: unset;
    }
    .header__wrap-bottom .header__container {
        flex-wrap: wrap;
    }
    .header__wrap-bottom .header__container .header__button-menu {
        order: 1;
    }
    .header__wrap-bottom .header__container .nav {
        order: 5;
        width: 100%;
    }
    .header__wrap-bottom .header__container .header__button-search {
        order: 2;
    }
    .header__wrap-bottom .header__container .header__button-login {
        order: 3;
    }
    .header__wrap-bottom .header__container .profile {
        order: 4;
    }
    .header__wrap-bottom .accordion__container .accordion__links {
        gap: 12px;
    }
    .header__wrap-bottom .accordion__container .accordion__links a {
        width: calc(33% - 12px);
    }
    .header__wrap-bottom .accordion__container .accordion__wrap {
        gap: 12px;
    }
    .header__menu .menu__container {
        width: 100%;
        max-width: unset;
    }
    .header__menu .list__item a {
        padding: 16px 20px;
    }
    .header__menu .list__item button {
        padding: 16px 20px;
        display: block;
    }
    .header__menu .list-2 {
        position: unset;
        background-color: transparent;
        width: unset;
        padding: 12px 8px;
    }
    .header__menu .list-2 .list__item a {
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
    }
    .header__menu .list-2 .list__item:not(:last-child) {
        margin-bottom: 4px;
    }
    .header__menu .list-3 {
        position: unset;
        background-color: transparent;
        width: unset;
        padding: 12px 8px 0 8px;
    }
    .header__menu .list-3 .list__item a {
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
    }
    .header__menu .list-3 .list__item:not(:last-child) {
        margin-bottom: 4px;
    }
    .main .question {
        bottom: 10px;
    }
    .main .question h3 {
        font-size: 16px;
    }
    .main .question a {
        font-size: 14px;
    }
    .main .question .icon {
        width: 60px;
        height: 60px;
    }
    .main .gosuslugi__container #js-show-iframe-wrapper {
        height: unset;
        overflow: hidden;
    }
    .main .gosuslugi__container #js-show-iframe-wrapper .bf-22 {
        display: flex;
        flex-direction: column-reverse;
    }
    .main .gosuslugi__container #js-show-iframe-wrapper .bf-22__content {
        padding: 68px 24px 24px 24px;
    }
    .main .gosuslugi__container #js-show-iframe-wrapper .bf-22__text {
        font-size: 20px;
    }
    .main .gosuslugi__container #js-show-iframe-wrapper .bf-22__decor {
        height: 200px;
        width: 100%;
        background-position: bottom center;
        background-size: contain;
    }
    .main .gosuslugi__container #js-show-iframe-wrapper .bf-22__logo-wrap {
        left: 24px;
        top: 24px;
    }
    .main .gosuslugi__container #js-show-iframe-wrapper .bf-22__slogan {
        text-wrap: nowrap;
    }
    .footer__container .footer__wrap-left .footer__logo {
        width: 100%;
    }
    .footer__container .footer__wrap-left .footer__links {
        margin-top: 0;
    }
    .footer__container .footer__wrap-right {
        flex-wrap: wrap;
    }
    .content .content__container .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 680px) {
    .container {
        margin: 0 12px;
    }
    .breadcrumb {
        margin: 0 12px;
    }
    .header__wrap-top .header__container {
        gap: 12px;
    }
    .header__wrap-top .header__container .header__logo span {
        font-size: 14px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .header__wrap-top .header__container .header__links {
        display: none;
    }
    .header__wrap-top .header__container .header__button {
        padding: 12px 20px;
        width: 100%;
    }
    .header__wrap-bottom .header__container {
        gap: 12px;
    }
    .header__wrap-bottom .header__container .nav__list {
        flex-direction: column;
    }
    .header__wrap-bottom .header__container .nav__list .list__item a {
        width: 100%;
        font-size: 14px;
        padding: 12px 20px;
    }
    .header__wrap-bottom .header__container .nav__list .list__item button {
        width: 100%;
        justify-content: space-between;
        font-size: 14px;
        padding: 12px 20px;
    }
    .header__wrap-bottom .accordion__container .accordion__links {
        gap: 8px;
    }
    .header__wrap-bottom .accordion__container .accordion__links a {
        width: 100%;
        padding: 14px 24px;
    }
    .header__wrap-bottom .accordion__container .accordion__wrap {
        flex-direction: column;
        gap: 24px;
    }
    .header__wrap-bottom .accordion__container .accordion__wrap nav {
        width: 100%;
    }
    .header__wrap-bottom .accordion__container .accordion__wrap nav .list {
        gap: 4px;
    }
    .header__wrap-bottom .accordion__container .accordion__wrap nav .list__item a {
        font-size: 14px;
    }
    .popup-contacts {
        width: 100%;
    }
    .popup-map {
        width: 100%;
    }
    .popup-map .popup__container h2 {
        margin: 0;
        font-size: 16px;
    }
    .popup-map .popup__container .popup__wrap .popup__title {
        font-size: 14px;
    }
    .popup-map .popup__container .popup__wrap .popup__text {
        font-size: 14px;
    }
    .main .question {
        left: 16px;
        padding: 12px;
    }
    .main .question h3 {
        font-size: 14px;
    }
    .main .question a {
        font-size: 12px;
        padding: 12px 18px;
    }
    .main .question .icon {
        width: 30px;
        height: 30px;
    }
    .footer {
        padding: 24px 0;
    }
    .footer__container .footer__wrap-left {
        order: 2;
    }
    .footer__container .footer__wrap-left .footer__logo span {
        font-size: 14px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .footer__container .footer__wrap-left .footer__links {
        margin-top: 0;
    }
    .footer__container .footer__wrap-right {
        order: 1;
        flex-wrap: wrap;
        grid-row-gap: 8px;
    }
    .footer__container .footer__wrap-right nav {
        width: 100%;
    }
    .footer__container .footer__wrap-right nav h3 {
        padding: 14px 24px;
        border-radius: 8px;
        background-color: #fff;
        color: #000;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer__container .footer__wrap-right nav h3 svg {
        transition: transform 0.3s ease-in-out;
        display: block;
    }
    .footer__container .footer__wrap-right nav .list {
        max-height: 0;
        overflow: hidden;
        padding: 0 14px;
        transition: 0.3s ease-in-out;
        background-color: #fff;
        border-radius: 0 0 8px 8px;
    }
    .footer__container .footer__wrap-right nav .list__item a {
        color: #000;
    }
    .footer__container .footer__wrap-bottom {
        order: 3;
        gap: 24px;
        flex-wrap: wrap;
    }
    .content {
        padding: 32px 0;
    }
    .content .content__container {
        /* gap: 12px; */
    }
    .content .content__container .news-list {
        grid-template-columns: repeat(1, 1fr);
    }
} /*# sourceMappingURL=style-general.css.map */
