/*TOP BAR*/
.top-bar {
	padding-top: 0.5rem;
	/*padding-bottom: 0.5rem;*/
	padding-bottom: 0;
}
.top-bar__wr {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-bar__registry-number {
	font-size: 0.6rem;
	line-height: 1rem;
	display: none;
}
@media (min-width: 768px) {
	.top-bar__registry-number {
		display: block;
	}
}
.top-bar__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	width: 100%;
}
@media (min-width: 768px) {
	.top-bar__actions {
		width: auto;
	}
}
.top-bar__action {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	border: none;
	margin: 0;
	padding: 0;
	background: none;
	color: var(--color-font);
	cursor: pointer;
	outline: none;
	position: relative;
}
.top-bar__action:hover {
	color: var(--color-primary);
	text-decoration: none;
}
.top-bar__action span {
	display: none;
}
@media (min-width: 768px) {
	.top-bar__action span {
		display: inline;
	}
}

.header-top__counter {
	position: absolute;
	width: 15px;
	height: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--red-spb);
	border-radius: 8px;
	color: var(--white-spb);
	font-size: 10px;
	top: -6px;
	left: 10px;
	border: 1px solid var(--white-spb);
}

/* HEADER */
.header {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
	position: sticky;
	top: 0;
	z-index: 10;
	background: #fff;
	padding: 0.5rem 0;
}
.header__wr {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 20px;
}

.header-col__logo {
}

.header-top__info {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.header__contacts {
	text-align: right;
	display: none;
}
@media (min-width: 768px) {
	.header__contacts {
		display: block;
	}
}
.header__contact {
	display: flex;
	gap: 16px;
	margin-bottom: 5px;
}

.header__logo-img {
	display: block;
	line-height: 1;
	height: 48px;
	width: auto;
}
@media (min-width: 1024px) {
	.header__logo-img {
		height: 80px;
	}
}

.header__phone {
	color: #333;
	font-weight: 400;
	font-size: 0.7rem;
	line-height: 1.75rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-decoration: none;
	gap: 0.5rem;
}

.header__phone:hover {
	color: var(--color-primary);
	text-decoration: none;
}

.header__callback {
	appearance: none;
	border: none;
	background: none;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #6b7280;
}
.header__callback:hover {
	color: #555;
}

/* NAV */
.header-menu {
}
.header-menu__content {
}

.header-menu__nav {
	display: block;
	justify-content: space-between;
	align-items: center;
}

.header-menu__item {
	position: relative;
}

.header-menu__item > .header-menu__link,
.header-menu__item > a {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.725rem;
	line-height: 1.25rem;
	letter-spacing: 0.025em;
	color: #374151;
	font-weight: 500;
	/* Removed uppercase */
	/*text-transform: uppercase;*/
}

.header-menu__item:hover > .header-menu__link:hover,
.header-menu__item:hover > a:hover {
	text-decoration: none;
	color: var(--color-primary);
}

.header-menu__item_parent > .header-menu__link {
	cursor: pointer;
}

.header-menu__arrow-down,
.header-menu__arrow-up {
	flex: 0 0 auto;
	padding: 0.25rem;
	box-sizing: content-box;
}

.header-menu__item > .header-menu__link.is-active,
.header-menu__item.is-active > .header-menu__link,
.header-menu__sublink.is-active {
	color: var(--color-primary);
	font-weight: 700;
	cursor: default;
}

.header-menu__subitem.is-active {
	background-color: var(--color-bg-gray-100);
}

.header-menu__item_parent.open .header-menu__link > svg,
.header-menu__item_parent.open a > svg {
	/* transform: rotate(180deg); */
}

.header-menu__footer {
	display: none;
}

@media (min-width: 992px) {
	.header-menu__nav {
		display: flex;
		gap: 1.5rem;
	}
}

/* SUBMENU */
.header-menu__submenu {
    top: 99%;
	left: 0;
	background: #fff;
	width: 100%;
	min-width: 12rem;
	padding: 0.5rem 0;
	z-index: 1000;
	border-radius: 1rem;
	box-shadow: var(--shadow-lg);
	/*overflow: hidden;*/
	display: none;
}

.header-menu__subitem .header-menu__subsubmenu.sub-submenu {
    top: 0;
	left: 99%;
	display: none;
	position: absolute;
}


@media (min-width: 1024px) {
	.header-menu__item:hover > .header-menu__submenu {
		display: block;
	}
}

@media (max-width: 1023px) {
	.header-menu__item.open > .header-menu__submenu {
		display: block;
	}
}

.header-menu__subitem {
	display: flex;
	padding: 0.75rem 1.5rem;
	gap: 0.5rem;
	font-size: 0.7rem;
	line-height: 0.75rem;
	color: var(--color-text-gray-700);
}

.header-menu__subitem:hover {
	background-color: var(--color-bg-gray-100);
}
.header-menu__sublink,
.header-menu__sublink:hover {
	color: var(--color-text-gray-700);
	text-decoration: none;
}

.header-menu__sublink.is-active,
.header-menu__sublink.is-active:hover {
	color: var(--color-primary);
	font-weight: 700;
	cursor: default;
}

.header-menu__sublink {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.header-menu__sublink svg {
	flex: 0 0 auto;
	margin-top: 3px;
	fill: var(--color-primary);
}


.header-menu__subsublink {
	display: flex;
	gap: 1rem;
}
.header-menu__subsublink svg {
	flex: 0 0 auto;
	margin-top: 3px;
	fill: var(--color-primary);
}

.header__burger {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;
	appearance: none;
	-weblit-appearance: none;
	border: none;
	margin: 0;
	padding: 0;
	outline: none;
	background: transparent;
}
@media (min-width: 1024px) {
	.header__burger {
		display: none;
	}
}
.header-menu {
	background-color: #fff;
}
.header-menu__header {
	display: none;
	align-items: center;
	position: sticky;
	top: 0;
	border-bottom: solid 1px #e5e7eb;
	background-color: #fff;
	padding: 1rem 1.5rem;
	justify-content: space-between;
	z-index: 1;
}

.header-mobile__top {
	display: none;
	padding: 1.5rem;
}
.header-mobile__label {
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--color-text-gray-500);
}
.header-mobile__value {
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 500;
}
.header-mobile__value a,
.header-mobile__value a:hover {
	text-decoration: none;
	color: var(--color-text-gray-700);
}

.header-mobile-mess {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.header-mobile-mess__item {
	padding: 0.5rem 1rem;
	color: #fff;
	border-radius: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}
.header-mobile-mess__item_tg {
	background-color: #229ed9;
}

.header-mobile__footer {
	margin-top: 2rem;
	padding: 1.5rem;
	border-top: solid 1px #e5e7eb;
	display: none;
}
.header-mobile__worktime {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: var(--color-text-gray);
}

.nav_mobile .header-menu {
	left: 0;
	transition: left ease-in 0.3s;
	/* max-width: 260px; */
}

@media (max-width: 1023px) {
	.header-menu {
		position: fixed;
		/* left: 0; */
		width: 100%;
		top: 0;
		left: -115%;
		bottom: 0;
		z-index: 9999;
		background: #fff;
		overflow-y: auto;
		transition: left ease-out 0.3s;
	}
	.header-menu__header {
		display: flex;
	}
	.header-mobile__top,
	.header-mobile__footer {
		display: block;
	}
	.header-menu__content {
		padding: 0 1.5rem;
	}

	.header-menu__item + .header-menu__item {
		margin-top: 0.5rem;
	}
	.header-menu__item > .header-menu__link,
	.header-menu__item > a {
		gap: 0.25rem;
		font-size: 1.125rem;
		line-height: 1.75rem;
		padding: 0.5rem 0;
		justify-content: space-between;
		text-transform: none;
		letter-spacing: normal;
	}
}

.section__header {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
	margin: 0 0 3rem 0;
	text-align: center;
	color: var(--black-spb);
}

/* FOOTER */

.footer {
	/* background: var(--footer-bg); */
	/* background: var(--color-primary); */
	background: var(--color-bg-gray-900);
	color: #fff;
	padding: 56px 0 32px 0;
}

.footer__title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: white;
	margin-bottom: 24px;
}
.footer-info-icons {
	display: flex;
	gap: 0.75rem;
}
.footer-info-icons:not(:first-child) {
	margin-top: 16px;
}
.footer-info-icons__icon {
	flex: 0 0 22px;
	fill: white;
}

.footer__telefon {
	margin-top: 16px;
}

.footer__phone {
	color: var(--white-spb);
}

.footer__email {
	color: var(--white-spb);
}

.footer__ya_organizations {
	margin-top: 16px;
}
.footer__links {
	margin-top: 16px;
}

.footer__items {
}

.footer__item {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 12px;
}
.footer__item:last-child {
	margin-bottom: 0;
}

.footer__item a {
	color: var(--white-spb);
}

.footer_link {
	margin-top: 8px;
}

.footer_link a {
	color: var(--white-spb, #fff);
}

.footer-external {
	margin-top: 48px;
	padding-top: 2rem;
	justify-content: space-between;
	border-top: solid 1px rgb(255 255 255 / 0.2);
}

.footer__subtitle {
	color: rgb(255 255 255 / 0.7);
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin-bottom: 0.75rem;
}

.footer__pay {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
	/*flex-wrap: wrap;*/
	width: 250px;
	align-self: center;
}

.footer-social {
	display: flex;
	gap: 20px;
}

.footer-social__item {
	width: 3rem;
	height: 3rem;
	/* background-color: rgb(255 255 255 / 0.1); */
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-social__item:hover {
	/* background-color: rgb(255 255 255 / 0.2); */
}

.footer-bottom {
	padding-top: 2rem;
	text-align: center;
	/* display: flex;
    justify-content: center; */
	color: rgb(255 255 255 / 0.7);
	text-align: center;

	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer_copyright_wp {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 5px;
}
.footer__develop {
	/* margin-top: 16px; */
}
.footer__reserved {
	/* margin-top: 8px;
	font-size: 14px; */
}

.footer__develop a {
	color: rgb(255 255 255 / 0.7);
	text-decoration-line: underline;
}

.footer__rostur {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 16px;
	justify-content: flex-start;
}
.footer__rostur-logo {
	height: 2rem;
	width: auto;
}

.footer__rostur-text {
	color: var(--white-spb);
	font-size: 16px;
}

.footer__rostur-text p {
	text-align: center;
	font-weight: 700;
	margin-bottom: 8px;
}
.showplaces_section ul li a:hover {
	text-decoration: none;
	color: var(--color-primary);
}
.showplaces_section ul li a {
	color: rgb(55 65 81 / 1);
}
.showplaces_section ul li {
	margin-top: 0.9rem;
}
.showplaces_section .showplaces_type {
	display: flex;
	align-items: center;
}
.showplaces_section .showplaces_type svg {
	margin-right: 0.4rem;
	fill: var(--color-primary);
	width: 20px;
	height: 20px;
}
@media (max-width: 451px) {
	.section__header {
		font-size: 6vw;
	}
}
@media (max-width: 767px) {
	.header_info_logo_wr {
		display: flex;
	}
	.header__logo-img {
		line-height: 1;
		height: 40px;
		width: auto;
		display: inline-block;
		margin-left: 10px;
	}
	.top-bar {
		display: none;
	}
	.header__wr {
		display: none;
	}
	.header__wr_mobile {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0 20px;
	}
	.header {
		padding: 10px 0 !important;
	}

	.subsubitem {
	    display: flex;
		flex-direction: column;
	}

}
@media (min-width: 768px) {
	.header__wr_mobile {
		display: none;
	}
}
.header-icons {
	display: flex;
	gap: 10px;
}
.header__wr_mobile .header-menu__submenu {
	box-shadow: unset !important;
}
.header-mobile_social {
	display: flex;
	align-items: center;
	gap: 4px;
}
.footer-col {
	align-content: center;
}

.w-15 {
    width: 15%;
}

.w-5 {
    width: 5%;
}

.w-30 {
    width: 30%;
}

.w-20 {
    width: 20%;
}
