

/* Start:/local/templates/landing/components/bitrix/menu/header-menu/style.css?1787061618184*/
.top-menu {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 40px;
}

.top-menu a {
    text-decoration: none;
    color: var(--white-100);
}
/* End */


/* Start:/local/templates/landing/components/bitrix/menu/footer-menu/style.css?1787061618228*/
.bottom-menu {
    display: flex;
	flex-direction: column;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
    align-items: flex-end;
}

.bottom-menu a {
    text-decoration: none;
	color: var(--white-100);
}
/* End */


/* Start:/local/templates/landing/template_styles.css?17870647755660*/
html {
	height: 100%;
}

body {
	min-height: 100%;
	min-height: -webkit-fill-available;
	min-height: 100svh;
    position: relative;
}

body.menu-open {
	/* overflow: hidden; */
}

header {
	padding: 28px 0 22px;
    background-color: transparent;
    position: fixed;
    top: 0;
    z-index: 10;
	width: 100%;
	transition: background-color 0.3s ease-in-out;
}

header .row > div {
	display: flex;
	align-items: center;
}

.header__logo {
	display: flex;
	justify-content: center;
	width: 100%;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}


header .header__logo img {
	width: 262px;
}

header.is-scrolled {
	background-color: var(--graphite);
}

.is-scrolled .header__logo {
	opacity: 1;
}

header .socials {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.top-menu a,
.top-menu a:focus,
.top-menu a:active,
.bottom-menu a,
.bottom-menu a:focus,
.bottom-menu a:active {
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}

.top-menu a:hover,
.bottom-menu a:hover {
	opacity: 0.4;
	transition: opacity 0.3s ease-in-out;
}

.hamburger {
	display: none;
	cursor: pointer;
}

.menu-open .hamburger > svg {
	display: none;
}

.close-menu {
	display: none;
}

.menu-open .close-menu {
	display: block;
}

.footer {
	background-color: var(--graphite);
	padding: 64px 0 24px;
	color: var(--white-100);
}

.footer__logo-img svg{
	width: 100%;
	height: auto;
}

.footer__socials-title {
	color: var(--white-40);
	margin-bottom: 32px;
}

.footer__socials-list {
	display: flex;
	gap: 10px;
}

.footer__socials-list a {
	text-decoration: none;
}

.footer__socials-link {
	transition: opacity 0.3s ease-in-out;
}

.footer__socials-link:hover {
	opacity: 0.4;
	transition: opacity 0.3s ease-in-out;
}

.footer__socials-link:focus {
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}

.footer__contact-title {
	margin-bottom: 32px;
	color: var(--white-40);
}

.footer__contact-info a{
	text-decoration: none;
	color: var(--white-100);
	transition: opacity 0.3s ease-in-out;
	opacity: 1;
}
.footer__contact-info a:hover {
	opacity: 0.4;
	transition: opacity 0.3s ease-in-out;
}

.footer__contact-info a:focus {
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}
.footer__contact-name {
	margin-bottom: 12px;
}

.footer__contact-info svg {
	width: 20px;
	height: 20px;
}

.footer__contact-phone {
	margin-bottom: 10px;
	display: flex;
    align-items: center;
    gap: 12px;
}

.footer__contact-email {
	display: flex;
    align-items: center;
    gap: 12px;
}

.footer .row > div:not(.copyright) {
	margin-bottom: 64px;
}

.copyright {
	order: 6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--white-40);
	margin-top: 135px;
}

.copyright a {
	color: var(--white-40);
	text-decoration: none;
}


/* Стили для модального окна */
.modal-overlay {
	/* display: none; */
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--graphite);
	z-index: 9;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transform: translateY(-100vh);
	transition: transform 0.3s ease-in-out, opacity 0.1s 0.5s ease-in-out;
	pointer-events: none;
}

.modal-overlay.active {
	opacity: 1;
	transform: translateY(0);
	transition: transform 0.3s ease-in-out, opacity 0.1s ease-in-out;
}

.modal-window {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 156px 16px 24px;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	position: relative;
	overflow: auto;
	pointer-events: auto;
}

.modal-window .top-menu {
	flex-direction: column;
	gap: 12px;
}

.modal-window .top-menu a {
	font-size: 32px;
}

.modal-window .footer__socials-list {
	justify-content: flex-start;
}

.modal-window .footer__socials-list{
	justify-content: flex-start;
}

.modal-window .copyright {
	border-top: 1px solid rgba(241, 244, 246, 0.28);
	align-items: flex-start;
	padding-top: 28px;
	margin-top: 28px;
}

.modal-window .copyright .text_l {
	font-size: 16px;
}

@media screen and (max-width: 991px) {
	header {
		padding: 24px 0;
	}
	.tablet-hidden {
		display: none !important;
	}
	.footer__logo-img svg {
		max-width: 340px;
	}
	.footer .row > div:not(.copyright) {
		margin-bottom: 96px;
	}
	.footer .row > div.footer__menu {
		margin-bottom: 120px;
	}
	.bottom-menu {
		align-items: flex-start;
	}
	.menu_item_m {
		font-size: 18px;
	}
	.copyright {
		margin-top: 66px;
	}
	.footer__contact-title {
		margin-bottom: 24px;
	}
	.footer {
		padding: 44px 0 24px;
	}
}

@media screen and (max-width: 767px) {
	header {
		padding: 22px 0;
	}
	header .top-menu {
		display: none;
	}

	header .socials svg {
		width: 24px;
		height: 24px;
	}
	.hamburger {
		display: block;
	}
	.footer {
		padding: 32px 0 16px;
	}
	.footer__logo-img svg {
		max-width: 100%;
	}
	.footer .row > div:not(.copyright) {
		margin-bottom: 56px;
		text-align: center;
	}
	.footer .row > div.footer__logo {
		margin-bottom: 23px;
	}
	.footer .row > div.footer__menu {
		margin-bottom: 68px;
	}
	.bottom-menu {
		align-items: center;
	}
	.footer__contact-phone {
		justify-content: center;
	}
	.footer__contact-email {
		justify-content: center;
	}
	.footer__socials-list {
		justify-content: center;
	}
	.footer__socials-title {
		margin-bottom: 18px;
	}
	.copyright {
		flex-direction: column;
		gap: 6px;
		margin-top: 16px;
	}
}
/* End */
/* /local/templates/landing/components/bitrix/menu/header-menu/style.css?1787061618184 */
/* /local/templates/landing/components/bitrix/menu/footer-menu/style.css?1787061618228 */
/* /local/templates/landing/template_styles.css?17870647755660 */
