

/* Start:/local/templates/pravo/components/bitrix/search.form/transparent/style.css?1701956378729*/
.search_form_transparent {
    width: 100%;
    height: 100%;
    position: relative;
}
.search_form_transparent input[type="text"] {
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 5px 40px 5px 20px;
    outline: none;
    border: 1px solid var(--color-local-grey, #C7C8C8);
    border-radius: 20px;
}
.search_form_transparent input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: var(--color-secondary, #1690C1);
    background-image: url(/local/templates/pravo/components/bitrix/search.form/transparent/svg/search.svg);
    background-repeat: no-repeat;
    background-position: center calc(50% + 2px);
    border: none;
    outline: none;
    padding: 18px;
    border-radius: 50%;
    cursor: pointer;
}




/* End */


/* Start:/local/templates/pravo/components/bitrix/menu/horizontal_multilevel_top/style.css?17799158501554*/
.multilevel_horizontal {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.multilevel_horizontal li {
	display: inline-block;
	margin: 20px 20px;
	margin: 10px 20px 10px 0;
}

.multilevel_horizontal li a {
	font-weight: bold;
	color: var(--color-primary);
	position: relative;
	padding-bottom: 8px;
}

.multilevel_horizontal li a.root-item-selected:after {
	content: "";
	position: absolute;
	background: var(--color-secondary);
	bottom: -2px;
	left: 35%;
	width: 30%;
	height: 2px;
}

/*Sub-menu box*/
.multilevel_horizontal li ul {
	position: absolute;
	top: inherit;
	left: 0;
	bottom: inherit;
	display: none;
	margin: 0 15px;
	padding: 20px;
	padding-left: 20px !important;
	text-align: left;
	height: auto;
	width: calc(100% - 30px);
	background: var(--white);
	border: 1px solid var(--color-secondary, #1690C1);
	box-shadow: 0px 3px 5px rgba(80, 100, 108, 0.15);
	z-index: 500;
	margin-top: 8px;
}

/*Sub-menu item box*/
.multilevel_horizontal li li {
	margin: 0 0 10px;
}

.multilevel_horizontal li li a {
	font-size: 16px;
	font-weight: 600;
}

@media (max-width: 768px) {
	.multilevel_horizontal {
		text-align: left;
		display: block;
	}

	.multilevel_horizontal li ul {
		position: relative;
		border: none;
		box-shadow: none;
		margin: 0;
		padding-left: 0 !important;
		width: 100%;
	}

	.multilevel_horizontal li {
		display: block;
	}
}

#multilevel_horizontal li i.fa {
	font-size: small !important;
	cursor: pointer;
}

/* End */


/* Start:/local/templates/pravo/components/modern/news.calendar/ajax_propdate/style.css?17799640543022*/
/* border-spacing: 10px; */.news_calendar {
    background: var(--white);
    border: 1px solid var(--color-secondary);
    height: calc(100% - 30px);
}
.current_month_container {
    background: var(--color-secondary);
    color: var(--white);
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.month_title {

}
.month_prev,
.month_next {
    background: var(--white);
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.month_prev {
    -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 50%);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 50%);
}
.month_next {
    -webkit-clip-path: polygon(0 0, 100% 50%, 100% 50%, 0 100%);
    clip-path: polygon(0 0, 100% 50%, 100% 50%, 0 100%);
}
.current_date_container {
    position: relative;
    padding: 15px;
}
.current_date_container table {
    width: 100%;
    --col-size: calc(100% / 7);
	border-spacing: 0.9em;
	table-layout:fixed;
}
.current_date_container thead tr {

}
.current_date_container thead tr td {
    width: var(--col-size);
    font-weight: 900;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: var(--color-local-middle-grey);
    text-transform: uppercase;
}
.current_date_container tbody tr {

}
.current_date_container tbody tr td {
    width: var(--col-size);
    font-size: 12px;
    line-height: 14px;
    text-align: center;
}
.events_title {
    padding: 10px;
    display: inline-block;
    min-height: 35px;
    min-width: 35px;
}
.events_container {
    position: absolute;
    max-height: 40%;
    left: 15px;
    right: 15px;
    background: var(--color-local-light-grey);
    border: 1px solid var(--color-local-grey);
    box-sizing: border-box;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 18px;
    overflow: auto;
}
.event_title {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-secondary);
    display: block;
    margin: 0 0 10px;
    text-align: left;
}

.NewsCalOtherMonth {
    color: var(--color-local-grey);
}
.NewsCalWeekend {
    color: red;
}
.NewsCalDefault {

}
.NewsCalToday {
    color: var(--color-secondary);
    font-weight: 900;
}
.td_events .events_title {
    background: var(--color-local-light-grey);
    cursor: pointer;
}
.td_events .events_title:hover {
    background: var(--color-secondary);
    color: var(--white);
}


.td_events .events_container {
    display: none;
}
.td_events:hover .events_container {
    display: block;
}

.events_container::-webkit-scrollbar-track {
    background: rgba(50,50,50,0.6);
}
.events_container::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: linear-gradient(to bottom, #4c4c4c 0%, #2d2d2d 85%, #313131 90%);
}
.events_container::-webkit-scrollbar-thumb:hover{
    background: var(--color-secondary);
}
.events_container::-webkit-scrollbar{
    width: 8px;
}

.current_month_container button,
.current_month_container button:focus {
    border: none !important;
    outline: none !important;
}
/* End */


/* Start:/local/templates/pravo/components/bitrix/breadcrumb/slash/style.css?17019563781100*/
.breadcrumb_slash {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	flex-wrap: inherit;
}
.breadcrumb_item {
	white-space: nowrap;
}
.breadcrumb_item:last-child {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: inherit;
}
.breadcrumb_item_link {
	color: var(--color-local-middle-grey);
}
.breadcrumb_item_text {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 23px;
	letter-spacing: -0.02em;
	color: var(--color-local-dark);
}
.breadcrumb_item_link .breadcrumb_item_text {
	color: var(--color-local-middle-grey);
}
.breadcrumb_item_link:hover .breadcrumb_item_text {
	color: var(--color-secondary);
}
.breadcrumb_item_slash {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 23px;
	letter-spacing: -0.02em;
	color: var(--color-local-middle-grey);
	margin: 0 5px;
}
/* End */


/* Start:/local/templates/pravo/components/bitrix/menu/footer_vertical/style.css?1701956378547*/
.footer_menu {
	margin-top: 30px;
}
.footer_menu li {
	margin: 0 0 5px;
}
.footer_menu li a {
	color: var(--white);
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0.3px;
}
.footer_menu li a.selected {

}
.footer_menu li a:hover {
	color: var(--color-secondary);
}


@media (max-width: 768px) {
	.block_title.block_title_menu {
		font-weight: bold;
		font-size: 18px;
		line-height: 24px;
		text-align: center;
	}
	.footer_menu {
		text-align: center;
		margin-bottom: 60px;
	}
	.footer_menu li {
		margin: 0 0 10px;
	}
}
/* End */


/* Start:/local/templates/pravo/components/bitrix/system.auth.form/modal/style.css?17019563783761*/
.form_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    overflow-y: auto !important;
    white-space: normal;
    z-index: 200;
}
.form_modal.active {
    display: grid;
}

.form_container {
    position: relative;
    width: 90%;
    margin: auto;
    max-width: 100%;
    background: var(--white);
    box-shadow: 0px 3px 5px rgba(80, 100, 108, 0.15);
    overflow: hidden;
}

.form_left_col {
    background: url(/local/templates/pravo/components/bitrix/system.auth.form/modal/images/form_bg_full.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    text-align: left;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.form_left_col:before {
    content: "";
    background: rgba(22, 144, 193, 0.44);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.form_left_col_top {
    display: flex;
    position: relative;
}
.form_left_col_top .company_logo {
    margin: 0 7px 0 0;
}
.form_left_col_top .company_logo svg {
    max-width: 50px;
    height: auto;
}
.form_left_col_top .company_logo path {
    fill: white;
    fill-opacity: 1;
}
.form_left_col_top .company_slogan {
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}
.form_left_col_middle {
    flex: 1;
}
.form_left_col_bottom {
    position: relative;
}
.form_left_col_bottom .social_sidebar_group ul li,
.form_left_col_bottom .social_sidebar_group ul li a {
    color: var(--white);
}
.form_left_col_bottom .social_sidebar_group ul li a path {
    fill: var(--white);
}
.form_left_col_bottom .modal_view {
    background: var(--white);
}
.form_left_col_bottom .modal_view path {
    fill: #8ABFD5;
}

.form_right_col {
    text-align: left;
    padding: 0 0 30px;
}
.form_close_container {
    text-align: right;
    padding: 17px 17px 0 0;
    margin-bottom: 37px;
}
.form_close {
    display: inline-flex;
    cursor: pointer;
}
.form_title {
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    text-align: left;
    text-transform: capitalize;
    margin: 0 0 48px;
    padding: 0 30px 0 0;
}
.form_right_col form {
    padding: 0 30px 0 0;
    text-align: left;
}
.form_field {

}
.form_field label {
    font-size: 14px;
    line-height: 19px;
    display: flex;
    margin: 0 0 8px;
}
.form_field input {
    padding: 7px 8px 7px 16px;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--color-local-grey);
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 20px;
}
.form_remember {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 50px;
}
.form_button_container {
    margin: 0 0 50px;
}
.form_button_container .btn {
    text-transform: uppercase;
}
.form_button_container input[type=submit] {
    border: 1px solid var(--color-secondary);
}
.form_button_container input[type=submit]:disabled {
    opacity: 1;
    background: var(--color-local-grey) !important;
}

.form_forgot {
    //display: none;
}
.form_registration_link {

}
.form_registration_link a {
    font-size: 14px;
    line-height: 20px;
    text-decoration-line: underline;
}
.form_registration_text {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-local-stroke-grey);
    display: inline-block;
    margin: 0 16px 0 0;
}



.form_modal::-webkit-scrollbar {
    width: 8px;
}
.form_modal::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: linear-gradient(to bottom, #4c4c4c 0%, #2d2d2d 85%, #313131 90%);
}
.form_modal::-webkit-scrollbar-track {
    background: rgba(50,50,50,0.6);
}
/* End */


/* Start:/local/templates/pravo/components/bitrix/socserv.auth.form/modal/style.css?1701956378496*/
.bx-auth-title {
    font-size: initial !important;
    border-top: solid 2px #E3E3E3;
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
}

div.bx-auth-line {
    border-bottom: 2px solid #E3E3E3;
    padding-bottom: 0 !important;
}

div.bx-auth-services div {
    margin: 0 !important;
}

div.bx-auth-services a:hover {
    margin: 1px !important;
    border: none !important;
}

div.bx-auth-services a.bx-ss-selected {
    margin: 1px !important;
    border: none !important;
}
/* End */


/* Start:/local/templates/pravo/components/bitrix/main.register/modal/style.css?17019563784208*/
.form_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    overflow-y: auto !important;
    white-space: normal;
    z-index: 200;
}
.form_modal.active {
    display: grid;
}

.form_container {
    position: relative;
    width: 90%;
    margin: auto;
    max-width: 100%;
    background: var(--white);
    box-shadow: 0px 3px 5px rgba(80, 100, 108, 0.15);
    overflow: hidden;
}
.form_left_col {
    background: url(/local/templates/pravo/components/bitrix/main.register/modal/images/form_bg_full.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    text-align: left;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.form_left_col:before {
    content: "";
    background: rgba(22, 144, 193, 0.44);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.form_left_col_top {
    display: flex;
    position: relative;
}
.form_left_col_top .company_logo {
    margin: 0 7px 0 0;
}
.form_left_col_top .company_logo svg {
    max-width: 50px;
    height: auto;
}
.form_left_col_top .company_logo path {
    fill: white;
    fill-opacity: 1;
}
.form_left_col_top .company_slogan {
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}
.form_left_col_middle {
    flex: 1;
}
.form_left_col_bottom {
    position: relative;
}
.form_left_col_bottom .social_sidebar_group ul li,
.form_left_col_bottom .social_sidebar_group ul li a {
    color: var(--white);
}
.form_left_col_bottom .social_sidebar_group ul li a path {
    fill: var(--white);
}
.form_left_col_bottom .modal_view {
    background: var(--white);
}
.form_left_col_bottom .modal_view path {
    fill: #8ABFD5;
}

.form_right_col {
    text-align: left;
    padding: 0 0 30px;
}
.form_close_container {
    text-align: right;
    padding: 17px 17px 0 0;
    margin-bottom: 37px;
}
.form_close {
    display: inline-flex;
    cursor: pointer;
}
.form_title {
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    text-align: left;
    text-transform: capitalize;
    margin: 0 0 48px;
    padding: 0 30px 0 0;
}
#bx_register_error_wrap {
    color: var(--color-local-error);
}

.form_right_col form {
    padding: 0 30px 0 0;
    text-align: left;
}
.form_field {

}
.form_field label {
    font-size: 14px;
    line-height: 19px;
    display: flex;
    margin: 0 0 8px;
}
.form_field label.required {
    position: relative;
    display: inline-block;
}
.form_field label.required:after {
    content: "*";
    position: absolute;
    right: -15px;
    top: 0;
    color: var(--color-secondary);
}
.form_field input {
    padding: 7px 8px 7px 16px;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--color-local-grey);
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 20px;
}

.form_button_container .btn {
    text-transform: uppercase;
}
.form_button_container input[type=submit] {
    border: 1px solid var(--color-secondary);
}
.form_button_container input[type=submit]:disabled {
    opacity: 1;
    background: var(--color-local-grey) !important;
}

.main-user-consent-request {
    margin: 0 0 28px;
}
.field_info_text {
    font-size: 14px;
    line-height: 19px;
}
.field_info_text span {
    color: var(--color-secondary);
}
.form_button_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 0 50px;
}
.form_footer {
    padding: 0 30px 0 0;
    text-align: left;
}
.form_footer_text {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-local-stroke-grey);
    display: inline-block;
    margin: 0 16px 0 0;
}
.form_footer a {
    font-size: 14px;
    line-height: 20px;
    text-decoration-line: underline;
}


.form_modal::-webkit-scrollbar {
    width: 8px;
}
.form_modal::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: linear-gradient(to bottom, #4c4c4c 0%, #2d2d2d 85%, #313131 90%);
}
.form_modal::-webkit-scrollbar-track {
    background: rgba(50,50,50,0.6);
}
/* End */


/* Start:/local/templates/pravo/components/modern/modern.socnet.links/.default/style.css?1701956378884*/
.social_sidebar {
	text-align: center;
	display: inline-block;
}
.social_sidebar_group {

}
.social_sidebar_group ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social_sidebar_group ul li {
	--ico-size: 36px;
	display: inline-block;
	height: var(--ico-size);
	width: var(--ico-size);
	border: 2px solid;
	border-radius: 50%;
	margin-right: 15px;
}
.social_sidebar_group ul li:hover {
	color: var(--color-secondary);
}
.social_sidebar_group ul li a {
	--this-font-size: 20px;
	font-size: var(--this-font-size);
	color: var(--color-primary);
	background: transparent;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.social_sidebar_group ul li a:hover {
	color: var(--color-secondary);
	background: transparent;
}
.social_sidebar_group ul li a:hover path {
	fill: var(--color-secondary);
}
/* End */


/* Start:/local/templates/pravo/components/bitrix/news.list/partners/style.css?17019563781618*/
.partner_container {

}
.partner_item {

}
.partner_item_image {
    padding-top: 58%;
    background: transparent;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 15px;
}

.partner_container {
    --size: 0px;
}
.partner_container .slick-list {
    width: calc(100% - 2 * var(--size));
    margin: auto;
}
.partner_container .slick_prev,
.partner_container .slick_next {
    position: absolute;
    top: 0;
    width: var(--size);
    height: 100%;
    background: var(--color-primary);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.partner_container .slick_prev {
    left: 0;
    background-image: url(/local/templates/pravo/components/bitrix/news.list/partners/svg/arrow_left.svg);
}
.partner_container .slick_next {
    right: 0;
    background-image: url(/local/templates/pravo/components/bitrix/news.list/partners/svg/arrow_right.svg);
}

.slick_dots {
    --size: 18px;
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
    text-align: center;
}
.slick_dots li {
    position: relative;
    display: inline-block;
    width: var(--size);
    height: var(--size);
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
    overflow: hidden;
}
.slick_dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: var(--size);
    height: var(--size);
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick_dots li.slick-active {
    background: var(--color-secondary);
}
/* End */


/* Start:/local/templates/pravo/styles.css?1779916262440*/
.thumb-wrap {
  position: relative;
  padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
  height: 0;
  overflow: hidden;
}
.thumb-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}
.multilevel_horizontal {
display: list-item;
}
.multilevel_horizontal li {
    padding-left: 20px;
}
/* End */


/* Start:/local/templates/pravo/template_styles.css?177963181531546*/
/*

*/

/*--------------------------------------------------------------
0.1 - Fonts
------------------------
100 Ultra Light
200 Thin
300 Light
400 Regular, Normal
500 Roman, Medium
600 Medium, SemiBold
700 Bold
800 Heavy, ExtraBold
900 Black
--------------------------------------------------------------*/
/*-------------------------
0.1.2 - Open Sans
-------------------------*/
@font-face {
    font-family: 'Open Sans';
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-Light.eot');
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-Light.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-Light.woff') format('woff'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-LightItalic.eot');
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-LightItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-LightItalic.woff') format('woff'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-Regular.eot');
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-Regular.woff') format('woff'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-Italic.eot');
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-Italic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-Italic.woff') format('woff'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-SemiBold.eot');
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-SemiBold.woff') format('woff'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-SemiBoldItalic.eot');
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-SemiBoldItalic.woff') format('woff'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-Bold.eot');
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-Bold.woff') format('woff'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-BoldItalic.eot');
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-BoldItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-BoldItalic.woff') format('woff'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-ExtraBold.eot');
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-ExtraBold.woff') format('woff'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-ExtraBoldItalic.eot');
    src: url('/local/templates/pravo/fonts/OpenSans/OpenSans-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-ExtraBoldItalic.woff') format('woff'),
    url('/local/templates/pravo/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}


/*--------------------------------------------------------------
0.2 - Arguments for this theme
--------------------------------------------------------------*/
:root {
    --color-local-blue: #1690C1;
    --color-local-blue-hover: #40ACD8;
    --color-local-blue-active: #1380AC;
    --color-local--light-blue: #F0F6FB;

    --color-local-dark: #333333;
    --color-local-light-black: #2E2F2E;

    --color-local-grey: #C3C4C5;
    --color-local-stroke-grey: #AFAFAF;
    --color-local-light-grey: #F0EEEE;
    --color-local-middle-grey: #787878;

    --color-local-green: #3ABE3B;
    --color-local-error: #E16F6F;

    --color-primary: var(--color-local-dark);
    --color-secondary: var(--color-local-blue);
    --color-tertiary: var(--color-local-grey);

    --theme-link: var(--color-local-blue);
    --theme-link-hover: var(--color-local-blue-hover);

    --font-primary: 'Open Sans';

}

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/

html {
    overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
    /*font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */

    -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: inherit;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
}
*,
*:before,
*:after {
    /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
    -webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
    -moz-box-sizing: border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
    box-sizing: border-box;
}
body {
    background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}
ol,
ul {
    list-style: none;
}
table {
    border-spacing: 0;
    /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
}
caption,
th,
td {
    font-weight: normal;
    text-align: left;
}
blockquote:before,
blockquote:after {
    content: "";
}
blockquote {
    quotes: "" "";
}
q {
    quotes: "“" "”" "‘" "’";
}
q:before {
    content: open-quote;
}
q:after {
    content: close-quote;
}
a:focus {
    text-decoration:none;
    outline: none !important;
}
a:hover,
a:active {
    outline: 0;
    text-decoration:none;
    outline: none !important;
}
a,
a img {
    border: 0;
    text-decoration:none;
    outline: none !important;
}
.btn:focus,
.btn.focus {
    outline: 0;
    box-shadow: none !important;
}
body {
    overflow-x: hidden;
    font-family: var(--font-primary) !important;
    font-size: 18px;
    font-weight: normal;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: var(--color-local-dark);
}

/* Internet Explorer 10 in Windows 8 and Windows Phone 8 Bug fix */
@-webkit-viewport {
    width: device-width;
}
@-moz-viewport {
    width: device-width;
}
@-ms-viewport {
    width: device-width;
}
@-o-viewport {
    width: device-width;
}
@viewport {
    width: device-width;
}

/* Other fixes*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
}
i {
    vertical-align: middle;
}
ul,
ol {
    padding-left: 0 !important;
}

a {
    -webkit-transition: all 700ms;
    transition: all 700ms;
}
a,
a:hover {
    text-decoration: none;
}
p {
    margin: 0 0 20px;
}
.full-width {
    width: 100%;
    margin: auto;
}
img {
    max-width: 100%; /* Adhere to container width. */
    height: auto; /* Make sure images are scaled correctly. */
}
pre {
    text-align: left !important;
}

/*--------------------------------------------------------------
1.2 fix container local
--------------------------------------------------------------*/
@media (min-width: 1024px) {
    .container {
        max-width: 984px;
        width: 984px;
    }
}
@media (min-width: 1280px) {
    .container {
        max-width: 1228px;
        width: 1228px;
    }
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
/*---------------------------------------
 **   2.1 Links				 -----
-----------------------------------------*/
a {
    color: var(--theme-link);
}
a:visited {

}
a:hover,
a:focus,
a:active {
    color: var(--theme-link-hover);
}
a:active {
    color: var(--color-local-blue-active, --theme-link-hover);
}
/*--------------------------------------------------------------
2.2 titles h1-h6
--------------------------------------------------------------*/
h1 {
    font-weight: normal;
    font-size: 32px !important;
    line-height: 49px;
    color: var(--black);
    margin: 20px 0 40px;
}
h2 {
    font-weight: 600 !important;
    font-size: 24px !important;
    color: var(--color-primary);
    margin: 0 0 20px;
}
h3 {
    font-weight: normal;
    font-size: 20px !important;
    color: var(--color-secondary);
    margin: 0 0 20px;
}
h4 {
    font-weight: normal;
    font-size: 18px !important;
    line-height: 18px;
    color: var(--black);
    margin: 0 0 20px;
}
h5 {

}
h6 {

}

/*--------------------------------------------------------------
2.3 ol ul li
--------------------------------------------------------------*/
ol {
    list-style-type: decimal;
    list-style-position: inside;
    margin: 5px 0 10px 10px;
}

/*--------------------------------------------------------------
3.0 common site
--------------------------------------------------------------*/
.common_container {
    overflow: hidden;
    position: relative;
}
.site-content {

}
.border_top {
    border-top: 1px solid var(--color-secondary);
    padding-top: 20px;
}
h1 {
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    align-items: center;
    margin: 20px 0 40px;
    color: var(--color-primary);
}
.double_h {
    padding-top: calc(50% + 15px) !important;
}
.color-primary {
    color: var(--color-primary);
}
.color-secondary {
    color: var(--color-secondary);
}
.white_layer {
    background: var(--white);
}
.primary_layer {
    position: relative;
}

/*--------------------------------------------------------------
3.1 common site mobile menu
--------------------------------------------------------------*/
.mobile_menu {
    display: none;
}

/*--------------------------------------------------------------
3.2 common site buttons
--------------------------------------------------------------*/
.button_container {
    margin: 20px 0;
    text-align: center;
}
a:not([href]).custom-button,
.custom-button {
    --line-height: 18px;

    display: inline-block !important;
    margin: 0;
    padding: 10px 19px;
    vertical-align: middle;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    line-height: var(--line-height);
    text-align: center;
    background: var(--color-local-blue);
    color: var(--white);
    border-radius: 0;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-transform: uppercase;
}
a:not([href]).custom-button:hover,
.custom-button:hover,
a:not([href]).custom-button:focus,
.custom-button:focus {
    background: var(--color-primary);
    color: var(--white);
}

.custom-button .svg_ico {
    vertical-align: bottom;
    margin: 0 10px 0 0;
}
.custom-button .svg_ico svg {
    height: var(--line-height);
    width: auto;
}

/*--------------------------------------------------------------
3.2.1 button primary
--------------------------------------------------------------*/
.primary-btn {
    background: var(--color-primary) !important;
}
.primary-btn:hover {
    background: var(--color-local-dark) !important;
}
.primary-btn:active {

}
/*--------------------------------------------------------------
3.2.2 button secondary
--------------------------------------------------------------*/
.secondary-btn {
    background: var(--color-secondary) !important;
}
.secondary-btn:hover {
    background: var(--color-local-blue-hover) !important;
}
.secondary-btn:active {
    background: var(--color-local-blue-active) !important;
}
/*--------------------------------------------------------------
3.2.3 button transparent
--------------------------------------------------------------*/
.transparent-btn {
    background: transparent !important;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    box-shadow: none;
}
.transparent-btn:hover {
    background: transparent !important;
    color: var(--color-local-blue-hover);
    border-color: var(--color-local-blue-hover);
}
.transparent-btn:active {
    background: transparent !important;
    color: var(--color-local-blue-active);
    border-color: var(--color-local-blue-active);
}
.transparent-btn:focus {
    color: var(--color-secondary);
}

/*--------------------------------------------------------------
3.3 common single texts
--------------------------------------------------------------*/
.single_text {
    padding: 0 0 30px 0;
}
.single_text a {
    color: var(--color-secondary);
    text-decoration: underline;
}
.single_text a:hover {
    text-decoration: none;
}
.single_text p {
    font-size: 16px;
    line-height: 24px;
}
.single_text img {
    margin: 0 0 30px;
}
.single_text ul {
    margin: 0 0 48px;
}
.single_text li {
    position: relative;
    align-items: center;
    display: flex;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 8px;
    padding: 0 0 0 30px;
}
.single_text li:before {
    content: "";
    background: var(--color-primary);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    position: absolute;
    top: 10px;
    left: 0;
}

/*--------------------------------------------------------------
3.4 common styling text blocks
--------------------------------------------------------------*/
.build_text_left_border {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    border-left: 2px solid var(--color-secondary);
    padding-left: 16px;
}
.build_text_background {
    position: relative;
    font-style: italic;
    font-size: 16px;
    line-height: 20px;
    padding: 24px 28px 24px 56px;
    margin: 0 0 12px;
    background: var(--color-local--light-blue);
}
.build_text_background:before {
    content: "";
    position: absolute;
    top: 29px;
    left: 19px;
    background: url(/local/templates/pravo/svg/quote_right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 18px;
    height: 14px;
}
.build_text_right {
    font-style: italic;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    color: var(--color-local-middle-grey);
}
.build_text_right span {
    color: initial;
}
.build_text_horizontal_border {
    font-size: 22px;
    line-height: 30px;
    border-top: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    padding: 20px 0;
}
/*--------------------------------------------------------------
3.5 error 404
--------------------------------------------------------------*/
.page_404_image {
    width: 100%;
    object-fit: cover;
    height: 650px;
}
@media (max-width: 576px) {
    .page_404_image {
        height: 460px;
    }
}
.page_404_container {
    background: url(/local/templates/pravo/images/404.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 173px 0;
    text-align: center;
}
.page_404_title {
    --height-line: 32px;
    position: relative;
    font-weight: bold;
    font-size: 300px;
    line-height: 409px;
    color: var(--white);
}
.page_404_title:after {
    content: "";
    height: var(--height-line);
    width: 100%;
    background: var(--color-secondary);
    position: absolute;
    top: calc(50% - var(--height-line) / 2);
    left: 0;
}
.page_404_title span {
    position: relative;
    z-index: 4;
}
.page_404_subtitle {
    font-weight: bold;
    font-size: 43px;
    line-height: 59px;
    color: var(--white);
    text-shadow: 0px 1px 3px var(--color-local-dark);
}
.events_spisok {
    margin-left: 20px;
    position: relative;
    font-family: Open Sans;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 16px;
    line-height: 24px;
}
.events_spisok p{
    margin-left: 40px;
}
.events_spisok_number {
    font-family: Open Sans;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
}

.events_spisok_number > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.events_spisok_number > .row > span {
    margin-right: 30px;
}

@media (max-width: 992px) {
    .page_404_title {
        font-size: 250px;
        line-height: 340px;
    }
    .page_404_subtitle {
        font-size: 35px;
        line-height: 48px;
    }
}
@media (max-width: 576px) {
    .page_404_title {
        --height-line: 22px;
        font-size: 130px;
        line-height: 177px;
    }
    .page_404_subtitle {
        font-size: 20px;
        line-height: 27px;
    }
}

/*--------------------------------------------------------------
4.0 header
--------------------------------------------------------------*/
.common_header {
    background: transparent;
}
.common_header_section {
    background: var(--white);
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.common_header_section .company_slogan {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
}
.common_header_section .company_slogan a {
    color: var(--color-primary);
}

.header_ico {
    --ico-size: 36px;
    display: block;
    height: var(--ico-size);
    width: var(--ico-size);
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
}
.header_ico .svg_ico {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.header_personal_name {
    margin: 0 20px 0 0;
}
.header_personal {
    background: var(--color-local-grey);
    margin-right: 15px;
    position: relative;
    overflow: unset;
}
.header_personal.color {
    background: var(--color-secondary);
}
.header_personal_menu_container {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    padding: 10px 0 0 0;
    background: transparent;
}
.header_personal:hover .header_personal_menu_container {
    display: block;
}
.header_personal_menu {
    background: var(--white);
    border: 1px solid var(--color-secondary);
    box-shadow: 0px 3px 5px rgba(80, 100, 108, 0.15);
}
.header_view {
    background: var(--color-local-dark);
    margin-right: 15px;
}


/*--------------------------------------------------------------
4.1 header top
--------------------------------------------------------------*/
.common_header_section_top {
    background: transparent;
}


/*--------------------------------------------------------------
4.2 header middle
--------------------------------------------------------------*/
.common_header_section_middle {
    display: none;
}

/*--------------------------------------------------------------
4.3 header bottom
--------------------------------------------------------------*/
.common_header_section_bottom {
    display: none;
}



/*--------------------------------------------------------------
5.0 footer
--------------------------------------------------------------*/
.common_footer {
    background: var(--color-local-light-black);
    color: var(--white);
    padding: 65px 0 60px;
    position: relative;
    margin-top: 30px;
}
.common_footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: var(--color-secondary);
}
.common_footer_section {

}

.common_footer_section_top {
    margin: 0 0 50px;
}
.block_title {
    font-weight: 700;
    margin: 0 0 13px;
}
.mt-60 {
    margin-top: 60px;
}
.company_contacts {
    font-size: 16px;
}


.common_footer_section_middle {
    display: none;
}

.common_footer_section_bottom {

}
.company_copyright {
    font-size: 18px;
    line-height: 21px;
}
.common_footer .social_sidebar_group ul li {
    color: var(--white);
}
.common_footer .social_sidebar_group ul li:hover {
    color: var(--color-secondary);
}
.common_footer .social_sidebar_group ul li path {
    fill: var(--white);
}
.common_footer .social_sidebar_group ul li:hover path {
    fill: var(--color-secondary);
}
.edit_text {
    color: var(--color-secondary);
}

/*--------------------------------------------------------------
5.1 upbutton up_button up button
--------------------------------------------------------------*/
#upbutton {
    content: "";
    bottom: 46px;
    right: 90px;
    cursor: pointer;
    display: none;
    position: fixed;
    z-index: 999;
    overflow: hidden;
    padding: 0;
    background: transparent;
}


/*--------------------------------------------------------------
7 sections
--------------------------------------------------------------*/
.section_title_container {
    margin: 0 0 60px;
}
.section_title {
    position: relative;
    display: inline-block;
    font-weight: bold;
    font-size: 32px;
    line-height: 44px;
    text-transform: uppercase;
    color: var(--black);
    margin-right: 20px;
}
.section_title_elements {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.section_title h2 {
    position: relative;
    display: inline-block;
    font-size: 47px;
    line-height: 54px;
}
.section_subtitle {

}
.section_elements {
    position: relative;
}
.section_element {
    position: relative;
}
.section_element_image {
    padding-top: 58%;
    background: transparent;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.section_element_image.image_bg {
    background: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: unset;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.section_element_title {
    font-size: 25px;
    line-height: 26px;
    text-align: center;
    margin: 16px;
}
.section_element_text {
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    letter-spacing: -0.02em;
    margin: 16px;
}
.section_footer {
    text-align: center;
}


/*--------------------------------------------------------------
7.1 main sections
--------------------------------------------------------------*/
.section_main {
    position: relative;
    background: transparent;
    background-color: transparent;
    background-image: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: unset;
    background-size: cover;
    padding: 50px 0;
    min-height: 200px;
}

/*--------------------------------------------------------------
7.2 other sections
--------------------------------------------------------------*/
.section_other {
    position: relative;
    background: transparent;
    background-color: transparent;
    background-image: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: unset;
    background-size: cover;
    padding: 20px 0 50px;
    min-height: 200px;
}


/*--------------------------------------------------------------
8.0 Main page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
8.1 main section section_main_slider
--------------------------------------------------------------*/
.section_main_slider {
    background: transparent;
    color: var(--black);
    padding: 0;
}

/*--------------------------------------------------------------
8.2 main section section_main_links
--------------------------------------------------------------*/
.section_main_links {
    background: var(--color-secondary);
    padding: 0;
    min-height: unset;
}

/*--------------------------------------------------------------
8.3 main section section_main_news
--------------------------------------------------------------*/
.section_main_news {

}

/*--------------------------------------------------------------
8.4 main section section_main_preview
--------------------------------------------------------------*/
.section_main_preview {
    background: var(--color-local-light-grey);
    padding: 0;
    min-height: initial;
}

/*--------------------------------------------------------------
8.5 main section section_main_law
--------------------------------------------------------------*/
.section_main_law {

}

/*--------------------------------------------------------------
8.6 main section section_main_banner
--------------------------------------------------------------*/
.section_main_banner {
    padding: 0;
    min-height: unset;
    background: rgba(51, 51, 51, 0.7);
    background: url(/local/templates/pravo/images/banner_bg_full.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
}
.section_main_banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(51, 51, 51, 0.7);*/
}
.section_main_banner .section_elements {
    padding: 40px 0;
    text-align: center;
    display: flex;
    justify-content: center;
}
.section_main_banner .section_element_text {
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: inherit;
    margin: 0 30px 0 0;
}
.section_element_buttons {
    display: inline-block;
}
.section_main_banner .section_element_text span {
    color: var(--color-secondary);
}

/*--------------------------------------------------------------
8.7 main section section_main_about
--------------------------------------------------------------*/
.section_main_about {

}
.section_main_about .section_elements {

}
/*--------------------------------------------------------------
8.8 main section section_partners
--------------------------------------------------------------*/
.section_partners {
    padding: 100px 0;
    min-height: unset;
}
.section_other.section_partners {
    padding: 60px 0;
}

/*--------------------------------------------------------------
8.9 main section section_gos
--------------------------------------------------------------*/
.section_gos {
    padding: inherit;
}
.events_spisok:before {
    content: "";
    position: absolute;
    top: 8px;
    height: 8px;
    width: 8px;
    background: #1690C1;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}


/*--------------------------------------------------------------
9.1 sidebars
--------------------------------------------------------------*/
.sidebar_left_banner {
    width: 100%;
}
.sidebar_left_banner img {
    width: 100%;
}

/*--------------------------------------------------------------
10.0.0 responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1.0 responsive default bootstrap size checkpoint
--------------------------------------------------------------*/
@media (max-width: 1200px) {

}
@media (max-width: 992px) {

}
@media (max-width: 768px) {

    h1 {
        font-size: 20px;
        line-height: 27px;
    }
    h2 {
        font-size: 18px;
        line-height: 25px;
    }
    h3 {
        font-size: 17px;
        line-height: 23px;
    }
    h4 {
        font-size: 16px;
        line-height: 21px;
    }
    p {
        font-size: 16px;
        line-height: 24px;
    }


    .fixed_header_mobile {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        z-index: 999;
        overflow: auto;
    }
    .common_header_section {
        padding: 12px 15px;
    }
    .fix_col_sm {
        padding-left: 5px;
        padding-right: 5px;
    }
    .mobile_hidden {
        display: none;
    }
    .mobile_hidden_search {
        display: none;
    }
    .company_logo svg {
        width: 100%;
        height: auto;
    }
    .common_header_section .company_slogan {
        font-size: 8px;
        line-height: 9px;
        letter-spacing: 0.3px;
    }

    .js_move_start .js_move_body {
        margin-bottom: 0 !important;
    }
    .header_personal_name {
        margin: 0 10px 0 0;
        font-size: 13px;
        line-height: 24px;
    }
    .header_personal {
        margin-right: 10px;
    }
    .social_sidebar_group ul li {
        margin-right: 10px;
    }
    .header_view {
        margin-right: 10px;
    }


    .section_title_elements {
        display: block;
    }
    .section_title_container {
        margin: 0 0 40px;
    }
    .section_title {
        font-size: 20px;
        line-height: 27px;
        margin: 0 0 15px;
        width: 100%;
    }


    .slider_main {
        height: 320px;
    }
    .section_main_news {
        padding-bottom: 0;
    }

    .section_main_banner .section_elements {
        display: block;
    }
    .section_main_banner .section_element_text {
        text-align: left;
        margin: 0 0 40px;
    }

    .section_main_about .btn {
        margin: 0 0 40px;
    }

    .block_title {
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 26px;
    }
    .company_contacts {
        margin-bottom: 26px;
    }
    .common_footer_section_bottom .social_sidebar {
        display: flex;
        justify-content: flex-end;
    }



    .sidebar_left_banner {
        display: none;
    }

}
@media (max-width: 576px) {

}
@media (max-width: 400px) {

}
/*--------------------------------------------------------------
10.1.1 responsive default theme size checkpoint
--------------------------------------------------------------*/


/*--------------------------------------------------------------
10.2.1 responsive 768px
--------------------------------------------------------------*/
@media (min-width: 768px) {

}

/*--------------------------------------------------------------
10.2.2 responsive 1024px
--------------------------------------------------------------*/
@media (min-width: 1024px) {

}

/*--------------------------------------------------------------
10.2.3 responsive 1280px
--------------------------------------------------------------*/
@media (min-width: 1280px) {

}
.js_auth_close button {
    border: none;
    background: transparent;
    cursor: pointer;
}

/* End */
/* /local/templates/pravo/components/bitrix/search.form/transparent/style.css?1701956378729 */
/* /local/templates/pravo/components/bitrix/menu/horizontal_multilevel_top/style.css?17799158501554 */
/* /local/templates/pravo/components/modern/news.calendar/ajax_propdate/style.css?17799640543022 */
/* /local/templates/pravo/components/bitrix/breadcrumb/slash/style.css?17019563781100 */
/* /local/templates/pravo/components/bitrix/menu/footer_vertical/style.css?1701956378547 */
/* /local/templates/pravo/components/bitrix/system.auth.form/modal/style.css?17019563783761 */
/* /local/templates/pravo/components/bitrix/socserv.auth.form/modal/style.css?1701956378496 */
/* /local/templates/pravo/components/bitrix/main.register/modal/style.css?17019563784208 */
/* /local/templates/pravo/components/modern/modern.socnet.links/.default/style.css?1701956378884 */
/* /local/templates/pravo/components/bitrix/news.list/partners/style.css?17019563781618 */
/* /local/templates/pravo/styles.css?1779916262440 */
/* /local/templates/pravo/template_styles.css?177963181531546 */
