

/* Start:/bitrix/templates/empty/styles.css?16324998747418*/
/* Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap'); */

*, *::after, *::before{
	padding: 0;
	margin: 0;
	box-sizing: border-box;

	font-family: 'Montserrat', 'Roboto', sans-serif;
}

*:hover
{
	outline: none;
}

html, body
{
	min-height: 100vh;
	min-width: 320px;
}

body
{
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;

	background-color: #F7F7FB;
}

a
{
	text-decoration: none;
}

ul
{
	list-style-type: none;
}

input[type="text"],
input[type="tel"]
{
	border: none;
	outline: none;
}

main
{
	/*padding: 0 21px;*/
	flex-grow: 1;
}

@media all and (max-width: 980px)
{
	main
	{
		padding: 0;
		width: 100%;
	}
}

button
{
	border: none;
	outline: none;
	background-color: transparent;

	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;

	padding: 13px 23px;

	transition: all .3s;
}

button:hover
{
	cursor: pointer;
}

label:hover
{
	cursor: pointer;
}

.container
{
	width: 100%;
	padding: 0 2.5%;

	max-width: 1440px;
	margin: 0 auto;
}

.container-1170
{
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
}

.page-container
{
	padding: 0 135px;
}

@media all and (max-width: 1490px)
{
	.page-container
	{
		padding: 0 80px;
	}
}

@media all and (max-width: 1370px)
{
	.page-container
	{
		padding: 0 40px;
	}
}

@media all and (max-width: 768px)
{
	.page-container
	{
		padding: 0 30px;
	}
}
@media all and (max-width: 650px) {
	main {
		padding-top: 70px;
	}
}

@media all and (max-width: 450px)
{
	.page-container
	{
		padding: 0 15px;
	}
}

.btn
{
	border-radius: 10px;
}

h1.page-title
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;

	color: #12173A;
	margin-top: 57px;

	/*text-transform: ;*/
}

h1.detail-page-title
{
	margin-top: 28.75px;
}

@media screen and (max-width: 375px)
{
	h1.page-title
	{
		font-size: 20px;
		line-height: 28px;
	}
}

span.views-counter
{
	position: relative;

	font-size: 14px;
	line-height: 24px;

	color: #333333;

	display: inline-block;

	margin-right: 42px;
	padding-left: 25px;
}

span.views-counter::before
{
	content: '';

	position: absolute;
	top: 50%;
	left: 0;

	transform: translateY(-50%);

	display: block;
	width: 20px;
	height: 12.75px;

	background-image: url('/upload/icons/views.svg');
}

a.back-to-list,
span.open-detail
{
	display: inline-block;

	border: 1px solid #A6A8B5;
	border-radius: 25px;

	color: #A6A8B5;

	transition: color .3s, background-color .3s;
}

a.back-to-list:hover,
span.open-detail:hover
{
	background-color: #A6A8B5;
	color: #fff;
}

span.open-detail
{
	padding: 5px 10px;
}

a.back-to-list
{
	padding: 5px 38px;
}

p.pub-date
{
	margin-left: auto;
}

p.pub-date time
{
	font-size: 14px;
	line-height: 24px;

	color: #333333;
}

/* Выезжающий поиск */
div.search-wrapper
{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	min-height: 0;
	max-height: 0;
	z-index: 4;

	overflow: hidden;

	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;

	background-color: #fff;

	transition: max-height .4s, min-height .4s, overflow .2s;
}

div.search-wrapper.showed
{
	max-height: 100vh;
	min-height: 100vh;
}

div.search-wrapper input
{
	border-bottom: 3px solid #444444;

	width: 97%;

	max-width: 640px;

	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

	padding-bottom: 26px;

	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	text-align: center;

	color: #000;
}

div.search-wrapper input.searched
{
	position: static;
	transform: unset;
	display: block;
	margin: 0 auto;
}

button#closeSearch
{
	position: absolute;
	top: 35px;
	right: 30px;

	display: flex;

	width: 30px;
	height: 30px;

	padding: 0;

	justify-self: flex-start;
	align-self: flex-end;
}

div.search-results-wrapper
{
	width: 100%;
	overflow-y: scroll;
}

div.results
{
	max-width: 640px;
	padding: 0 20px;
	margin: 0 auto;
}

div.goods
{
	overflow: hidden;
	max-height: 0;
	min-height: 0;

	transition: min-height .3s;
}

div.categories
{
	overflow: hidden;
	max-height: 0;
	min-height: 0;

	transition: min-height .3s;
}

div.search-error
{
	overflow: hidden;
	max-height: 0;
	min-height: 0;

	transition: min-height .3s;
}

div.goods.showed,
div.categories.showed,
div.search-error.showed
{
	max-height: max-content;
	min-height: max-content;

	overflow: visible;
}

div.goods.showed
{
	margin-top: 34px;
}

div.categories.showed
{
	margin-top: 41px;
}

div.search-error.showed
{
	margin-top: 28px;
}

p.search-error__message
{
	position: relative;

	font-weight: bold;
	font-size: 14px;
	line-height: 17px;

	color: rgba(51, 51, 51, 0.5);

	padding-left: calc(37px + 19px);
}

p.search-error__message::before
{
	content: '';

	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;

	width: 37px;
	height: 37px;

	background-image: url('/upload/icons/search-alert.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

p.results-name
{
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;

	text-transform: uppercase;

	color: #000000;

	margin-bottom: 9px;
}

div.results-list
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 7px;
}

@media screen and (max-width: 580px)
{
	div.results-list
	{
		grid-template-columns: repeat(2, 1fr);
		justify-items: center;
	}
}

@media screen and (max-width: 440px)
{
	div.results-list
	{
		grid-template-columns: 1fr;
	}
}

a.result-item
{
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;

	background: #FFFFFF;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
	border-radius: 10px;

	max-width: 195px;

	padding: 13px 15px;
}

@media screen and (max-width: 440px)
{
	a.result-item
	{
		min-width: 280px;
	}
}

p.result-item__name
{
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	text-decoration-line: underline;

	color: #000000;
}
/* Выезжающий поиск */

/* Мобильное выезжающее меню */
div.burger-menu-wrapper
{
	width: 100%;

	/* height: calc(100vh - 67.42px);
	top: 67.42px; */
	height: calc(100vh - 60px);
	top: 60px;

	visibility: hidden;

	position: fixed;
	overflow: hidden;

	z-index: 2;

	left: 0;

	background-color: transparent;

	transition: background-color .3s, visibility .3s;
}

div.burger-menu-wrapper.showed
{
	visibility: visible;
	background-color: rgba(18, 23, 58, 0.4);
}

div.burger-menu-wrapper.showed div.burger-menu
{
	right: 0;
}

div.burger-menu {
	width: 233px;
	height: 100%;

	background-color: #fff;

	position: absolute;
	z-index: 3;
	right: -800px;

	transition: right .3s;
}

nav.burger-header-navigation {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}

nav.burger-header-navigation a {
	display: block;
	width: 100%;

	padding: 30px 0 30px 20px;

	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 27px;
	line-height: 33px;

	color: #12173A;

	border-bottom: 1px solid #DADADA;
}
/* Мобильное выезжающее меню */

.grecaptcha-badge
{
	display: none !important;
}

/* Общие стили элементов */
ul.standart, ol.standart {
	padding-left: 20px;
}
:is(ul.standart, ol.standart) > li {
	margin-bottom: 10px;
}
ul.standart {
	list-style-type: disc;
}
ol.standart {
	list-style-type: decimal;
}

/* End */


/* Start:/bitrix/templates/main_page/assets/css/header.css?16176264655031*/
div.container-1440
{
	max-width: 1470px;
	padding: 0 15px;
}

@media all and (max-width: 650px) {
	div.header-container {
		border-bottom: 1px solid #DADADA;
	}
}

header {
	width: 100%;

	position: fixed;
	top: 0;
	z-index: 3;

	padding-top: 48px;

	background-color: transparent;

	transition: background-color .3s, padding .6s;
}

header.scrolled
{
	background-color: #F7F7FB;
}

header.desktop.scrolled
{
	padding-top: 25px;
	padding-bottom: 25px;
}

header.mobile.scrolled
{
	padding-top: 0;
	padding-bottom: 0;
}

header div.container-1440
{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;

	width: max-content;
	margin: 0 auto;
}

@media all and (max-width: 1298px)
{
	header div.container-1440
	{
		flex-flow: column nowrap;
	}
}

@media all and (max-width: 650px)
{
	header
	{
		padding-top: 0;
	}

	header div.container-1440
	{
		flex-flow: row wrap;
		justify-content: space-between;
		align-items: center;
		padding: 20px 20px 19px 20px;

		width: 100%;

		border-bottom: 1px solid #DADADA;
	}
}

div.logo-nav-wrapper,
div.search-contacts-wrapper
{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

div.logo-nav-wrapper
{
	margin-right: 255px;
}

@media all and (max-width: 1298px)
{
	div.logo-nav-wrapper
	{
		order: 2;
		margin-right: 0;
	}
}
@media all and (max-width: 650px)
{
	div.logo-nav-wrapper
	{
		order: 1;
	}
}

@media all and (max-width: 1298px)
{
	div.search-contacts-wrapper
	{
		order: 1;
		margin-bottom: 25px;
	}
}

header a.logo
{
	margin-right: 92px;
}

@media all and (max-width: 650px)
{
	header a.logo {
		margin-right: unset;
	}
}

a.logo
{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;

	position: relative;

	padding-left: calc(37.2px + 10px);
}

a.logo::before
{
	content: '';

	position: absolute;
	left: 0;
	width: 37.2px;
	height: 27.3px;

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('/upload/icons/logo-icon.svg');
}

a.logo span svg path
{
	fill: #fff;
	transition: fill .3s;
}

a.logo span.black-letters svg path
{
	fill: #000;
}

nav.header-navigation
{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;

	margin-right: 0;

	color: #fff;
}

nav.header-navigation.black-letters
{
	color: #000;
}

nav.header-navigation a
{
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 19px;
	font-weight: 400;
	margin-right: 27px;
	color: inherit;
}

nav.header-navigation a:last-child
{
	margin-right: unset;
}

@media all and (max-width: 650px) {

	nav.header-navigation
	{
		display: none;
	}
}

@media all and (max-width: 650px)
{
	div.search-contacts-wrapper
	{
		display: none;
	}
}

form.search
{
	margin-right: 68px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
}

form.search:hover
{
	cursor: pointer;
}

label[for="search-btn"] svg path
{
	fill: #fff;
}

label[for="search-btn"].black-search svg path
{
	fill: #000;
}

form.search input[type="submit"]
{
	display: none;
}

p.search-text
{
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;

	margin-left: 5px;
	transition: color .3s;
}

p.search-text.black-placeholder
{
	color: #000;
}

div.contacts a
{
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
}

div.contacts a.black-letters
{
	color: #000;
}

button.burger-navigation
{
	display: none;
	padding: unset;
	order: 1;
	width: 30px;
	height: 20px;

	background-image: url("/upload/icons/burger_menu-white.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;

	transition: background-image .3s;
}

button.burger-navigation.black
{
	background-image: url("/upload/icons/burger_menu.svg");
}

button.burger-navigation.opened
{
	background-image: url("/upload/icons/close-burger-white.svg");
}

button.burger-navigation.black.opened
{
	background-image: url("/upload/icons/close-burger-black.svg");
}

@media all and (max-width: 650px)
{
	button.burger-navigation
	{
		display: block;
	}
}

div.scrolling-nav
{
	display: none;

	width: 100%;

	padding: 17px 0;

	position: sticky;
	top: 60.42px;
	left: 0;
	z-index: 2;

	background-color: transparent;

	box-shadow: 0 2px 16px rgba(0 0 0 0.07);

	transition: background-color .3s;
}

div.scrolling-nav.scrolled
{
	background-color: #F7F7FB;
}

@media all and (max-width: 650px)
{
	div.scrolling-nav
	{
		display: flex;
		position: fixed;
		background-color: transparent;
	}
}

div.scrolling-nav nav
{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;

	width: 100%;
	overflow-x: scroll;
	overflow-y: hidden;

	padding-left: 15px;
}

div.scrolling-nav nav a
{
	margin-right: 8px;
	padding: 8px 10px;

	background-color: #fff;

	color: #000;
	font-size: 16px;
	line-height: 19px;

	border-radius: 8px;

	min-width: max-content;
}

/* End */


/* Start:/upload/slick/slick.css?15070529691776*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* End */


/* Start:/upload/slick/slick-theme.css?15070529693145*/
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('/upload/slick/./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('/upload/slick/./fonts/slick.eot');
    src: url('/upload/slick/./fonts/slick.eot?#iefix') format('embedded-opentype'), url('/upload/slick/./fonts/slick.woff') format('woff'), url('/upload/slick/./fonts/slick.ttf') format('truetype'), url('/upload/slick/./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* End */


/* Start:/bitrix/templates/main_page/assets/css/main_page.css?164251657810224*/
div.container-1440-main-page
{
	position: relative;
	background-color: #000;
	min-height: 320px;
}

@media screen and (max-width: 650px)
{
	div.container-1440-main-page
	{
		background-image: url('/upload/images/main-page/microscopia.png');
	}
}

div.background-block
{
	position: absolute;
	left: 0;
	top: 0;

	opacity: 0;

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

	min-height: 100vh;
	min-width: 100%;

	transition: opacity 1s;
}

div.background-block.active
{
	opacity: 1 !important;
}

div#microscopia
{
	background-image: url('/upload/images/main-page/microscopia.png');
}

div#gistology
{
	background-image: url('/upload/images/main-page/gistology.png');
}

div#materials
{
	background-image: url('/upload/images/main-page/materials.png');
}

div#electronics
{
	background-image: url('/upload/images/main-page/electronics.png');
}

div.first-block
{
	height: 100vh;
	min-height: 320px;

	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: flex-start;

	position: relative;

	width: calc(100vw - 50px);
	max-width: 1920px;
	margin: 0 auto;
}

@media screen and (max-width: 650px)
{
	div.first-block
	{
		padding-top: 0;
		display: none;
	}
}

div.section
{
	width: calc(100% / 4);
	min-height: 100%;

	border-left: 1px solid rgba(255, 255, 255, 0.5);
	border-right: 1px solid rgba(255, 255, 255, 0.5);

	display: flex;
	align-items: center;
	justify-content: center;

	transition: border .3s, width .3s;

	margin-left: -1px;
}

div.section:first-child
{
	border-left: none;
	border-right: 1px solid transparent;
}

div.section:last-child
{
	border-right: none;
	border-left: 1px solid transparent;
}

div.section:first-child:hover
{
	border-right: 1px solid rgb(255, 255, 255);
	border-left: none;
}

div.section:last-child:hover
{
	border-left: 1px solid rgb(255, 255, 255);
	border-right: none;
}

div.section:hover
{
	border-left: 1px solid rgb(255, 255, 255);
	border-right: 1px solid rgb(255, 255, 255);

	width: calc(100% / 3);
}

div.section:hover a.section-name
{
	font-weight: 800;
	font-size: 1.7vw;
	line-height: 54px;

	color: #FFFFFF;

	cursor: pointer;
}

@media screen and (max-width: 650px)
{
	div.section
	{
		display: none;
	}
}

a.section-name
{
	display: block;
	text-align: center;

	text-transform: uppercase;

	font-weight: 600;
	font-size: 1.4vw;
	line-height: 40px;
	letter-spacing: 0.13em;

	color: rgba(255, 255, 255, 0.4);

	transition: font-weight .3s,
				font-size .3s,
				line-height .3s,
				color .3s;
}

@media screen and (min-width: 1920px)
{
	a.section-name
	{
		font-size: 24px;
		line-height: 29px;
	}

	div.section:hover a.section-name
	{
		font-size: 36px;
		line-height: 44px;
	}
}

@media screen and (max-width: 1000px)
{
	a.section-name
	{
		line-height: 20px;
	}

	div.section:hover a.section-name
	{
		line-height: 32px;
	}

}

div.bottom-block
{
	position: absolute;

	top: unset;
	bottom: 54px;
	left: 50%;
	transform: translateX(-50%);

	width: 100%;
	max-width: 1271px;

	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-end;
}

@media screen and (max-width: 1325px)
{
	div.bottom-block
	{
		padding: 15px;
	}
}

@media screen and (max-width: 771px)
{
	div.bottom-block
	{
		bottom: 20px;
	}
}

@media screen and (max-width: 650px)
{
	.container-1440-main-page div.bottom-block
	{
		position: relative;
		left: 0;
		transform: translateX(0);

		flex-flow: column nowrap;
		justify-content: flex-end;
		align-items: flex-start;

		height: 100vh;
		min-height: 200px;

		padding-bottom: 0;
		bottom: 101px;
	}
}

@media screen and (max-height: 540px)
{
	.container-1440-main-page div.bottom-block
	{
		bottom: 10px;
	}
}

@media screen and (max-width: 771px) and (max-height: 440px)
{
	div.bottom-block
	{
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}
}

div.bottom-block .bottom-text
{
	max-width: 854px;

	font-weight: 500;
	font-size: 36px;
	line-height: 55px;

	color: #fff;

	margin-bottom: 44px;
}

@media screen and (max-width: 1026px)
{
	div.bottom-block .bottom-text
	{
		font-size: 25px;
		line-height: 38px;

		max-width: 600px;
	}
}

@media screen and (max-width: 771px)
{
	div.bottom-block .bottom-text
	{
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 650px)
{
	div.bottom-block .bottom-text
	{
		position: absolute;
		top: 300px;

		line-height: 35px;

		margin-bottom: 0;
	}
}

@media screen and (max-height: 540px)
{
	div.bottom-block .bottom-text
	{
		margin-bottom: 0;
	}
}

@media screen and (max-height: 430px)
{
	div.bottom-block .bottom-text
	{
		font-size: 24px;
		line-height: 43px;
		top: 55vh;
	}
}

@media screen and (max-width: 771px) and (max-height: 440px)
{
	div.bottom-block .bottom-text
	{
		font-size: 23px;
		line-height: 35px;
		max-width: 550px;
	}
}

div.bottom-contacts
{
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: flex-end;

	margin-left: auto;
}

@media screen and (max-width: 771px)
{
	div.bottom-contacts
	{
		margin-left: 0;
	}
}

@media screen and (max-width: 650px)
{
	div.bottom-contacts
	{
		width: 100%;

		flex-flow: row-reverse wrap;
		justify-content: space-between;
		align-items: flex-end;
	}
}

div.callback-wrapper
{
	position: relative;
}

button.bottom-contact
{
	border: 1px solid #A6A8B5;
	border-radius: 25px;

	padding: 3px 21px;

	font-size: 12px;
	line-height: 15px;

	color: #FFFFFF;

	margin-bottom: 30px;
}

@media screen and (max-width: 650px)
{
	button.bottom-contact
	{
		margin-bottom: 0;
	}
}

button#bottom-contact-btn:hover + div.social-hover
{
	display: block;
}

div.social-hover
{
	display: none;

	position: absolute;
	bottom: 46px;
	right: 0;
}

@media screen and (max-width: 650px)
{
	div.social-hover
	{
		bottom: 13px;
	}
}

div.social-hover:hover
{
	display: block;
}

div.social
{
	padding: 11px 19px;

	background-color: #C4C4C4;

	border-radius: 6px;

	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: center;

	margin-bottom: 20px;
}

div.social::after
{
	content: '';
	position: absolute;
	bottom: 14px;
	right: 14px;
	height: 13px;
	width: 13px;

	transform: rotate(-45deg);

	background-color: #c4c4c4;
}

div.social-wrapper
{
	display: grid;
	grid-template-columns: repeat(2, minmax(min-content, max-content));
	grid-gap:  4px 33px;
}

.ask-call
{
	font-size: 13px;
	line-height: 24px;

	color: #333333;

	font-weight: normal;
	padding: 0;
}

a.bottom-email
{
	font-size: 14px;
	line-height: 24px;

	color: #FFFFFF;
}

div.mobile-sections
{
	display: none;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;

	margin: 46px 0 64px;

	padding: 0 15px;
}

@media screen and (max-width: 650px)
{
	div.mobile-sections
	{
		display: flex;
	}
}

a.mobile-section
{
	margin-bottom: 28px;

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

	padding: 36px 27px 66px 24px;

	border-radius: 20px;
}

a.mobile-section:last-child
{
	margin-bottom: 0;
}

span.mobile-section-name
{
	display: block;

	font-weight: bold;
	font-size: 20px;
	line-height: 24px;

	color: #12173A;

	margin-bottom: 21px;
}

p.mobile-section-desc
{
	font-size: 14px;
	line-height: 17px;

	color: #333333;
}

.container-1200
{
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
}

article.about-us
{
	 padding: 57px 83px;
}

@media screen and (max-width: 1360px)
{
	article.about-us
	{
		padding: 57px 40px;
	}
}

@media screen and (max-width: 768px)
{
	article.about-us
	{
		padding: 57px 20px;
	}
}

@media screen and (max-width: 650px)
{
	article.about-us
	{
		padding: 60px 5px;
	}
}

h2.about-us-title
{
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: 0.03em;

	color: #12173A;
}

@media screen and (max-width: 650px)
{
	h2.about-us-title
	{
		font-size: 20px;
		line-height: 24px;
	}
}

div.partner-list
{
	margin: 62px 0 106px;

	/*background-color: #333;*/
}

div.slick-track
{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
}

.slick-initialized .slick-slide
{
	display: flex;
}

@media screen and (max-width: 650px)
{
	div.partner-list
	{
		margin: 36px 0 42px;
	}
}

a.partner-item
{
	margin-right: 30px;

	background-color: #fff;
	border-radius: 10px;
	border: 2px solid transparent;

	padding: 10px;

	overflow: hidden;

	min-height: 180px;
	display: flex;
	justify-content: center;
	align-items: center;

	transition: border .3s;
}

a.partner-item:hover
{
	border: 2px solid #4EA1D3;
}

a.partner-item img
{
	display: block;
	max-width: 140px;
	margin: 0 auto;
}

@media screen and (max-width: 650px)
{
	a.partner-item img
	{
		max-width: 200px;
		max-height: 52px;
	}
}

@media (max-width: 400px) {
	a.partner-item {
		margin: 0 15px;
	}
}

div.short-about-us
{
	margin: 0 auto;

	background-image: url('/upload/images/main-page/about-us.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

	border-radius: 60px;

	padding: 43px 241px 56px;
}

@media screen and (max-width: 1360px)
{
	div.short-about-us
	{
		padding: 40px 80px;
	}
}

@media screen and (max-width: 768px)
{
	div.short-about-us
	{
		padding: 33px 40px;
		border-radius: 30px;
	}
}

@media screen and (max-width: 475px)
{
	div.short-about-us
	{
		padding: 33px 15px;
	}
}

h2.short-about-us
{
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;

	letter-spacing: 0.03em;

	color: #FFFFFF;

	margin-bottom: 32px;
}

@media screen and (max-width: 768px)
{
	h2.short-about-us
	{
		text-align: center;
	}
}

@media screen and (max-width: 650px)
{
	h2.short-about-us
	{
		font-size: 20px;
		line-height: 24px;
	}
}

p.about-us-text
{
	font-size: 18px;
	line-height: 24px;

	color: #FFFFFF;

	margin-bottom: 34px;
}

@media screen and (max-width: 650px)
{
	p.about-us-text
	{
		font-size: 14px;
		line-height: 20px;

		color: #FFFFFF;

		margin-bottom: 34px;
	}
}

div.short-about-us p.about-us-text:last-child
{
	margin-bottom: 0;
}

.about-us--link
{
	margin-top: 20px;

	color: #fff;
	display: block;
	max-width: max-content;

	font-size: 18px;
	line-height: 24px;

	transition: color .3s;
}

@media screen and (min-width: 760px)
{
	.about-us--link:hover
	{
		color: #4EA1D3;
	}
}
/* End */


/* Start:/bitrix/templates/.default/components/bitrix/menu/top_menu/style.min.css?1617108031490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/bitrix/templates/.default/components/bitrix/menu/top_menu/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/bitrix/templates/empty/assets/css/footer.css?16201365479547*/
/* Стили для всего футера */
footer {
	background-color: #12173a;
	padding: 60px 138px 48px 105px;
	max-width: 100%;
}
@media all and (max-width: 1080px) {
	footer {
		padding: 40px 20px;
	}
}
@media all and (max-width: 450px) {
	footer {
		padding: 24px 20px 89px 20px;
	}
}
/* Стили для всего футера */

/* Обертка верхнего и нижнего отдела футера */
div.footer__inner-wrapper {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}
/* Обертка верхнего и нижнего отдела футера */

/* Верхняя часть футреа, в ней: логотип, карта сайта, контакты */
div.up-footer {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
	transition: all 0.3s;
}

@media all and (max-width: 1336px) {
	div.up-footer {
		margin-bottom: 20px;
	}
}

@media all and (max-width: 1080px) {
	div.up-footer {
		display: flex;
		flex-flow: column nowrap;
		justify-content: flex-start;
		align-items: center;
	}
}

/* Крашу логотип в белый */
div.up-footer a.logo span svg path
{
	fill: #fff;
}

@media all and (max-width: 1080px) {
	div.up-footer a.logo
	{
		margin-bottom: 25px;
	}
}

@media all and (max-width: 450px) {
	div.up-footer a.logo
	{
		display: none;
	}
}

/* Общий блок карты сайта - левого и правого списков */
div.sitemap {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}

@media all and (max-width: 1080px) {
	div.sitemap {
		flex-flow: column nowrap;
	}
}

@media all and (max-width: 450px) {
	div.sitemap {
		margin-right: 0;
		margin-bottom: 25px;
	}
}

/* Общие стили для  */
nav.left-sitemap, nav.right-sitemap {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}

@media all and (max-width: 1080px) {
	nav.left-sitemap, nav.right-sitemap {
		flex-flow: row wrap;

		margin-bottom: 25px;
	}
}

/* Левый список карты сайта */
nav.left-sitemap {
	max-width: 200px;
	margin-right: 117.59px;
	transition: all 0.3s;
}

@media all and (max-width: 1336px)
{
	nav.left-sitemap {
		margin-right: 80px;
	}
}

@media all and (max-width: 1210px) {
	nav.left-sitemap {
		margin-right: 50px;
	}
}
@media all and (max-width: 1080px) {
	nav.left-sitemap {
		max-width: unset;
		margin-right: unset;
	}
}
@media all and (max-width: 450px) {
	nav.left-sitemap {
		width: 100%;
		margin-bottom: unset;
	}
}

@media all and (max-width: 450px) {
	nav.left-sitemap {
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
		align-items: flex-start;
	}
}
/* Левый список карты сайта */

/* Ссылки в карте сайта */
nav.left-sitemap a, nav.right-sitemap a {
	color: #FFFFFF;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 19px;
}

nav.left-sitemap a:last-child, nav.right-sitemap a:last-child {
	margin-bottom: unset;
}

@media all and (max-width: 1080px) {
	nav.left-sitemap a, nav.right-sitemap a {
		margin-right: 15px;
	}
	nav.left-sitemap a:last-child, nav.right-sitemap a:last-child {
		margin-right: unset;
	}
}

@media all and (max-width: 450px)
{
	/* Ссылки левого списка становятся белыми */
	nav.left-sitemap a {
		padding: 8px 10px;
		background-color: #fff;
		color: rgb(68, 68, 68);
		font-size: 16px;
		line-height: 19px;
		border-radius: 8px;
		margin-bottom: 8px;
		margin-right: 8px;

		text-align: center;
	}
}
/* Ссылки в карте сайта */

/* Правый список карты сайта */
@media all and (max-width: 1080px) {
	nav.right-sitemap {
		margin-bottom: unset;
	}
}
@media all and (max-width: 450px) {
	nav.right-sitemap {
		display: none;
	}
}
/* Правый список карты сайта */
/* Общий блок карты сайта - левого и правого списков */

/* Блок с контактами для мобильных устройств */
div.mobile-contacts {
	display: none;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;

	width: 100%;

	position: relative;
}

@media all and (max-width: 450px) {
	div.mobile-contacts {
		display: flex;
	}
}

div.mobile-contacts::before
{
	position: absolute;
	content: '';
	display: block;

	height: 1px;
	width: 100vw;

	top: calc(100% + 15px);

	background-color: rgba(255, 255, 255, 0.4);
}

div.mobile-contacts a.mobile-contacts__item {
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	line-height: 13px;
	color: #FFFFFF;
}
div.mobile-contacts a.mobile-contacts__item.contacts-tel {
	margin-right: 25px;
}
div.mobile-contacts a.mobile-contacts__item.contacts-email {
	-webkit-text-decoration-line: underline;
	        text-decoration-line: underline;
}
/* Блок с контактами для мобильных устройств */

/* Блок с контактами для широких экранов устройств */
footer div.contacts {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: flex-end;
}
footer div.contacts a.logo {
	display: none;
}
footer div.contacts a.logo svg.logo-svg {
	width: 32.73px;
	height: 24px;
	margin-right: 8.73px;
}
footer div.contacts a.logo span svg {
	width: 134.36px;
	height: 10.25px;
}
@media all and (max-width: 450px) {
	footer div.contacts a.logo {
		display: flex;
		margin-right: 25px;
	}
}
footer div.contacts a {
	color: #fff;
	font-family: 'Roboto', sans-serif;
}
@media all and (max-width: 450px) {
	footer div.contacts a {
		display: none;
	}
}
footer div.contacts a.contacts-tel {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 40px;
}
@media all and (max-width: 1080px) {
	footer div.contacts a.contacts-tel {
		margin-bottom: 20px;
	}
}
@media all and (max-width: 450px) {
	footer div.contacts a.contacts-tel {
		display: none;
	}
}
footer div.contacts div.mail-wrapper {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: flex-start;

	position: relative;
}

@media all and (max-width: 1080px) {
	footer div.contacts div.mail-wrapper,
	footer div.contacts,
	footer div.sitemap
	{
		align-items: center;
	}

	nav.left-sitemap,
	nav.right-sitemap
	{
		justify-content: center;
	}

	nav.left-sitemap
	{
		order: 2;
	}

	nav.right-sitemap
	{
		order: 1;
	}
}

footer div.contacts div.mail-wrapper a.contacts-email {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	-webkit-text-decoration-line: underline;
	        text-decoration-line: underline;
	margin-bottom: 14px;
}

footer div.contacts div.mail-wrapper button.footer-btn {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	color: #fff;
	border: 1px solid #A6A8B5;
	border-radius: 25px;
	padding: 3px 21px;
}

/*@media all and (max-width: 450px) {*/
/*	footer div.contacts div.mail-wrapper button {*/
/*		max-width: 100px;*/
/*	}*/
/*}*/

@media all and (max-width: 450px) {
	footer div.contacts {
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
		align-items: flex-start;
		width: 100%;
		margin-top: 25px;
	}
}

button#contactWithUs:hover + div.social-hover
{
	display: block;
}

div.mail-wrapper div.social-hover
{
	bottom: 12px;
	right: 39px;

	position: absolute;
	display: none;
}

@media screen and (max-width: 650px)
{
	div.mail-wrapper div.social-hover
	{
		bottom: 13px;
	}
}

div.mail-wrapper div.social-hover:hover
{
	display: block;
}

div.social
{
	padding: 11px 19px;

	background-color: #C4C4C4;

	border-radius: 6px;

	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: center;

	margin-bottom: 20px;
}

div.social::after
{
	content: '';
	position: absolute;
	bottom: 14px;
	right: 14px;
	height: 13px;
	width: 13px;

	transform: rotate(-45deg);

	background-color: #c4c4c4;
}

div.social-wrapper
{
	display: grid;
	grid-template-columns: repeat(2, minmax(min-content, max-content));
	grid-gap:  4px 33px;
}

div.contacts div.social-wrapper a
{
	display: block;
}

.ask-call
{
	font-size: 13px;
	line-height: 24px;

	color: #333333;

	font-weight: normal;
	padding: 0;
}

/* Блок с контактами для широких экранов устройств */
/* Верхняя часть футреа, в ней: логотип, карта сайта, контакты */

/* Нижняя часть футера, в ней копирайт */
div.copyright
{
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-end;
}

@media all and (max-width: 450px)
{
	div.copyright {
		display: flex;
		flex-flow: column nowrap;
		justify-content: flex-start;
		align-items: center;
	}
}

div.copyright a, div.copyright span, div.copyright p
{
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: rgba(255, 255, 255, 0.5);
}

@media all and (max-width: 450px)
{
	div.copyright a, div.copyright span, div.copyright p
	{
		text-align: center;
	}
}

div.copyright a
{
	transition: all 0.3s;
}

div.copyright a:hover
{
	color: #fff;
}

div.copyright div.copyright__left a
{
	display: block;
	margin-bottom: 15px;
}

@media all and (max-width: 560px)
{
	div.copyright__left p.dates
	{
		margin-bottom: 5px;
	}
}

/* Нижняя часть футера, в ней копирайт */

/* End */


/* Start:/bitrix/templates/main_page/styles.css?163249988421*/
main
{
	padding: 0;
}
/* End */
/* /bitrix/templates/empty/styles.css?16324998747418 */
/* /bitrix/templates/main_page/assets/css/header.css?16176264655031 */
/* /upload/slick/slick.css?15070529691776 */
/* /upload/slick/slick-theme.css?15070529693145 */
/* /bitrix/templates/main_page/assets/css/main_page.css?164251657810224 */
/* /bitrix/templates/.default/components/bitrix/menu/top_menu/style.min.css?1617108031490 */
/* /bitrix/templates/empty/assets/css/footer.css?16201365479547 */
/* /bitrix/templates/main_page/styles.css?163249988421 */
