

/* Start:/local/templates/fond2025/fonts/gilroy/gilroy.css?17470404571411*/
@font-face {
    font-family: 'GilroyExtraBold';
    src: url('/local/templates/fond2025/fonts/gilroy/Gilroy-ExtraBold.eot');
    src: local('Gilroy ExtraBold'), local('Gilroy-ExtraBold'),
        url('/local/templates/fond2025/fonts/gilroy/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('/local/templates/fond2025/fonts/gilroy/Gilroy-ExtraBold.woff') format('woff'),
        url('/local/templates/fond2025/fonts/gilroy/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


@font-face {
    font-family: 'GilroyMedium';
    src: url('/local/templates/fond2025/fonts/gilroy/Gilroy-Medium.eot');
    src: local('Gilroy Medium'), local('Gilroy-Medium'),
    url('/local/templates/fond2025/fonts/gilroy/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/fond2025/fonts/gilroy/Gilroy-Medium.woff') format('woff'),
    url('/local/templates/fond2025/fonts/gilroy/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}


@font-face {
    font-family: 'Gilroy';
    src: url('/local/templates/fond2025/fonts/gilroy/Gilroy-Regular.eot');
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
    url('/local/templates/fond2025/fonts/gilroy/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/fond2025/fonts/gilroy/Gilroy-Regular.woff') format('woff'),
    url('/local/templates/fond2025/fonts/gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GilroyBold';
    src: url('/local/templates/fond2025/fonts/gilroy/Gilroy-Bold.eot');
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
    url('/local/templates/fond2025/fonts/gilroy/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/fond2025/fonts/gilroy/Gilroy-Bold.woff') format('woff'),
    url('/local/templates/fond2025/fonts/gilroy/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
/* End */


/* Start:/local/templates/fond2025/components/bitrix/menu/horizontal_multilevel/style.css?17476571612901*/
.menu-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Основные стили для десктопного меню */
.desktop-menu {
	display: flex;
	list-style: none;
	margin: 0;
	height: 70px;
	align-items: center;
	padding: 0;
}

.menu-item {
	position: relative;
	height: 70px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.menu-item > a {
	display: block;
	font-size: 16px;
	padding: 25px 45px 25px 25px;
	color: white;
	text-decoration: none;
	position: relative;
	transition: background 0.3s;
	white-space: nowrap;
	box-sizing: border-box;
	width: 100%;
}

.menu-item:hover {
	background-color: rgba(255,255,255, 0.1);
}


/* Стрелка вниз */
.menu-item > a::after {
	background-image: url('/images/galka.svg');
	background-size: 10px 5px;
	display: inline-block;
	width: 10px;
	height: 5px;
	content:"";
	position: absolute;
	right: 20px;
	top: 50%;
	font-size: 10px;
	transition: all 0.1s;
}

.menu-item.active > a{
	color: #1D65C9;
}

/* Крестик при открытом подменю */
.menu-item.active > a::after {
	background-image: url('/images/krestik.svg');
	background-size: 10px 10px;
	height: 10px;
	top: 46%;
}

/* Выпадающее подменю */
.submenu {
	padding: 17px 25px 17px 0;
	list-style: none;
	display: none;
	opacity: 1;
	z-index: 100;
	background: #ffffff;
	box-sizing: border-box;
	width: 100%;
}

.submenu a {
	display: block;
	padding: 8px 10px 8px 25px;
	color: #1D65C9;
	text-decoration: none;
	white-space: nowrap;
	font-size: 16px;
}

.menu-item.active {
	background: #ffffff;
}

.mobile-menu .menu-item.active a.root-item {
	border-bottom: 1px solid #1D65C9;
}

.menu-item.active .submenu {
	/* opacity: 1; */
	/* display: block; */
}

/* Мобильное меню */
.mobile-menu-btn {
	display: none;
	padding: 15px;
	color: white!important;
	border: none;
	width: 100%;
	text-align: left;
	position: relative;
	cursor: pointer;
}

.mobile-menu-btn::after {
	content: "☰";
	position: absolute;
	color: #ffffff!important;
	right: 0;
	top: 50%;
	font-size: 20px;
	transform: translateY(-50%);
}

.mobile-menu-btn.active::after {
	content: "×";
}

.mobile-menu {
	display: none;
	list-style: none;
	width: 100%;
	z-index: 100;
	margin: 0;
	background: #1d65c9;
	padding: 0 0 1px 0;
}

.mobile-menu .menu-item > a {
	padding: 0 25px 0 25px;
	line-height: 50px;

}

.mobile-menu .submenu {
	position: relative;
	display: none;
	width: 100%;
}

.mobile-menu .menu-item.active > a::after {
	right: 25px;
}

/* Медиазапрос для мобильной версии */
@media (max-width: 768px) {
	.desktop-menu {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.mobile-menu.active {
		display: block;
	}

	.mobile-menu-btn.active::after {
		right: 0px;
		font-size: 34px;
	}
	.menu-item {
		height: unset;
	}
	.menu-item > a::after {
		right: 25px;
	}
}
/* End */


/* Start:/local/templates/fond2025/components/bitrix/breadcrumb/city/style.css?1751462580644*/
.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 75px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    color: #1D65C9!important;
    font-size: 21px;
    line-height: 21px;
    border-radius: 40px;
    border: 2px solid #1D65C9;
    padding: 15px 30px;
}

.breadcrumbs__item span{
    color: #1D65C9 !important;
}

.breadcrumbs__item--link {
    opacity: 0.3;
}

.breadcrumbs__item .breadcrumbs__link {
    color: #1D65C9!important;
    font-size: 21px;
    line-height: 21px;
    text-decoration: none;
}

/* End */


/* Start:/local/templates/fond2025/styles.css?174584218055*/
#bx-html-editor-area-cnt-filesrc_pub {
    top: 40px;
}
/* End */


/* Start:/local/templates/fond2025/template_styles.css?17477299908293*/
html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 100%;
}

body{
    font: normal normal 14px GilroyMedium , arial , sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    background-color: var(--white);
    color: var(--black);
    line-height: 21px;
    margin: 0;
}

img{
    border: 0;
}

h2 {
    font-size: 30px;
    line-height: 120%;
    font-family: Gilroy;
    font-weight: 600;
}

.secondpage {
    display: flex;
    justify-content: center;
}

.secondpage .main {
    max-width: 1600px;
    padding: 0 100px 40px 100px;
    box-sizing: border-box;
    width: 100%;
}

.secondpage .main h1 {
    font-family: GilroyBold;
    font-size: 50px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000000;
    margin: 40px 0;
}

.mainpage .main h1 {
    font-family: GilroyBold;
    font-size: 50px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000000;
}

.header-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    background: #1D65C9;
    color: #ffffff;
    height: 70px;
    border-bottom: 1px solid #1D65C9;
}

.header {
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 100px;
    box-sizing: border-box;
}

.header-logo {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.header-nologo {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}


main{
    background: #F4F4F4;
    background: -webkit-linear-gradient(0deg,#eeeeee, #f4f4f4);
    background: -moz-linear-gradient(0deg,#eeeeee, #f4f4f4);
    background: linear-gradient(0deg, #eeeeee, #f4f4f4);
    filter: progid:DXImageTransform.Microsoft.gradient(
            startColorstr="#F4F4F4",
            endColorstr="#EEEEEE",
            GradientType=0
    );
}

.main-title {
    font-family: 'GilroyExtraBold';
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
}

.header-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.knopka {
    background: #ffffff;
    color: #1D65C9;
    height: 40px;
    border-radius: 50px;
    padding: 0 25px;
    text-decoration: none;
    line-height: 40px;
    white-space: nowrap;
    display: inline-block;
}

.knopka:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.mobile-menu-btn {
    background: transparent;
}

footer {
    background: #1D65C9;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer .main-title {
    font-size: 31px!important;
    line-height: 100%;
}

footer h3 {
    font-size: 21px;
    line-height: 31px;
    font-weight: 600;
    margin-top: 0;
}

footer ul li a {
    font-size: 16px;
    line-height: 150%;
    font-weight: 200;
    font-family: 'Gilroy';
}

footer ul li {
    list-style: none;
    padding: 6px 0;
}

footer ul {
    padding: 0;
}

footer .footer_1 {

}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1600px;
    width: 100%;
    padding: 0 100px;
    box-sizing: border-box;
    gap:20px;
}

.footer-help-btn a {
    padding: 25px 60px;
    margin-top: 10px;
    background: #ffffff;
    color: #1D65C9;
    font-size: 21px;
    border-radius: 40px;
    display: block;
    box-sizing: border-box;
}

.footer-help-btn a:hover {
    background-color: rgba(255,255,255,0.9);
}


.footer-help-btn span {
    display: block;
}

.nofound {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.nofound--404 {
    font-size: 180px!important;
    line-height: 100%!important;
    color: #1d65c9!important;
    font-family: GilroyExtraBold;
    height: 180px;
}
.nofound--title {
    font-size: 28px;
    line-height: 30px;
    color: #444444;
}
.nofound--more {

}
.footer-help-btn {
    display:flex;
    margin-top: 50px;
    font-size: 16px;
    flex-direction: column;
    align-items: center;
}


.stat-block {
    font-size: 21px;
    color: #444444;
    line-height: 150%;
    border-left: 2px solid #444;
    padding-left: 25px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 80px;
}
.stat-btn {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 25px 60px;
    white-space: nowrap;
    background: #1D65C9;
    border-radius: 40px;
    font-size: 21px;
    line-height: 80%;
    box-sizing: border-box;
    height: 65px;
    margin-left: 50px;
}
.stat-btn:hover {
    opacity: 0.9;
}

.white-btn-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.white-btn-block a {
    display: block;
    color: #444444;
    text-decoration: none;
    white-space: nowrap;
    background: #ffffff;
    border-radius: 25px;
    padding: 20px 40px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.white-btn-block a span {
    color: #000000;
    font-size: 24px;
    text-decoration: none;
    font-family: Gilroy;
    font-weight: 600;
}

.main span, .main div, .main p, .main ul li{
    font-size: 21px;
    color: #444444;
    line-height: 150%;
}

.secondpage .main h2 {
    color: #000000;
}

.bluebtn {
    background: #1D65C9;
    color: #ffffff;
    text-decoration: none;
    padding: 25px 60px;
    font-weight: 400;
    font-size: 21px;
    border-radius: 40px;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    line-height: 90%;
}

.bluebtn:hover {
    opacity: 0.9;
}


@media (max-width: 1024px) {
    .header {
        padding: 0 25px;
    }
    .secondpage .main {
        padding: 0 25px;
    }
    .footer-wrapper {
        padding: 0 25px;
    }
    .stat-block {
        flex-wrap: wrap;
        border-left: 0;
        padding-left: 0;
        font-size: 14px;
        margin-bottom: 40px;
    }
    .stat-block div {
        width: 100%;
    }
    .stat-btn {
        width: 100%;
        margin-left: 0;
        font-size: 14px;
        text-align: center;
        margin-top: 10px;
    }
    .mp-prazdn-list {
        margin-bottom: 10px;
    }
}
/* Медиазапрос для мобильной версии */
@media (max-width: 768px) {
    .header {
        padding: 0 25px;
    }
    .header-menu {
        align-items: flex-start;
        flex-direction: column;
    }
    .header-nologo .knopka {
        display: none;
    }
    .mobile-menu .knopka {
        display: block;
        margin: 25px;
        height: 60px;
        text-align: center;
        font-size: 16px;
        line-height: 60px;
        padding: 0;
    }
    .main-title {
        white-space: nowrap;
        font-size: 16px;
    }
    .header {
        align-items: center;
    }
    .menu-container {
        padding: 0;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    footer footer_1 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .main-title {
        font-size: 28px!important;
    }

    .footer-help-btn a {
        font-size: 18px;
        width: 100%;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-help-btn {
        margin-top: 25px;
    }
    footer {
        padding-top: 60px;
    }

    footer ul li a {
        font-size: 14px;
    }

    footer ul {
        margin: 0;
    }
    footer h3 {
        line-height: 21px;
        margin-bottom: 2px;
        margin-bottom: 18px;
    }

    .breadcrumbs {
        display: none;
    }
    .main h1, .mainpage .main h1, .secondpage .main h1  {
        font-size: 24px;
        line-height: 120%;
    }
    .main h2, .mainpage .main h2, .secondpage .main h2  {
        font-size: 20px;
        line-height: 120%;
    }
    .main span, .main div, .main p, .main ul li {
        font-size: 14px;
    }
    .white-btn-block a {
        width: 100%;
        padding: 25px;
    }
    .white-btn-block a span {
        font-size: 16px!important;
        display: block;
    }
}
/* End */
/* /local/templates/fond2025/fonts/gilroy/gilroy.css?17470404571411 */
/* /local/templates/fond2025/components/bitrix/menu/horizontal_multilevel/style.css?17476571612901 */
/* /local/templates/fond2025/components/bitrix/breadcrumb/city/style.css?1751462580644 */
/* /local/templates/fond2025/styles.css?174584218055 */
/* /local/templates/fond2025/template_styles.css?17477299908293 */
