@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local(Roboto),local(Roboto-Regular),url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local(Roboto),local(Roboto-Regular),url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local(Roboto),local(Roboto-Regular),url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local(Roboto),local(Roboto-Regular),url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local(Roboto),local(Roboto-Regular),url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local(Roboto),local(Roboto-Regular),url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format("woff2");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local(Roboto),local(Roboto-Regular),url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
html {
	box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
	outline: none;
}
body {
    position: relative;
    padding: 60px 0 48px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1;
}
img {
	box-sizing: content-box;
	width: auto;
	max-width: 100%;
	height: auto;
    max-height: 100%;
	border: none;
}
a {
	color: inherit;
	border: none;
}
input, textarea, option, select, button {
	border: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
button {
	user-select: none;
	cursor: pointer;
}
.container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}
.clearfix::before,
.clearfix::after {
	content: '';
	display: table;
}
.clearfix::after {
	clear: both;
}

.title {}

.button {
	display: block;
	margin: 0;
	padding: 16px;
    border: none;
    border-radius: 0;
	font-size: 22px;
	line-height: 16px;
	white-space: nowrap;
	color: #fff;
	text-align: center;
	text-decoration: none;
	user-select: none;
	background: #1E5DFE;
	cursor: pointer;
	transition: .3s;
}
.button:hover {

}

.zoom {
    position: relative;
}
.zoom::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #000;
    opacity: 0;
    transition: .3s;
}
.zoom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: url(/usertpl/i/zoom.svg) no-repeat center / 40px;
    opacity: .4;
    transform: translate(-50%, -50%);
    transition: .3s;
}
.zoom:hover::before {
    opacity: .3;
}
.zoom:hover::after {
    opacity: 1;
}

@media (min-width: 768px) {
    body {
        padding: 60px 0 0;
    }
}
@media (min-width: 768px) {
    body {
        padding: 0;
    }
}

/*================================================================================= FORMS */
.form {}
.form input, .form textarea {
    display: block;
    width: 100%;
    height: 30px;
    padding: 5px 10px;
    border: 1px solid #000;
}
.form textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 250px;
}
.form input:focus, .form textarea:focus {
    border-color: #ccc;
}

.form input[type="radio"], .form input[type="checkbox"] {
    display: inline-block;
    width: auto;
}

.form input:focus {}
.form input:disabled {}

.form_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.form_group {
    width: 100%;
    margin: 0 0 15px;
}
.form_group_2 {
    width: calc((100% - 15px)/2);
    margin: 0 15px 15px 0;
}
.form_group_2:nth-child(2n) {
    margin: 0 0 15px;
}
.form_button {
    padding: 8px 10px;
    font-size: 16px;
    line-height: 16px;
}

/*========================================================================= MODAL / POPUP */
.modal {
    position: relative;
    z-index: 9999;
    display: none;
}
.modal_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    display: flex;
    overflow: auto;
    background: rgba(255,255,255,.5);
}
.modal_block {
    display: none;
    width: 100%;
    max-width: 520px;
    margin: auto;
    padding: 30px 15px;
}
.modal_loading {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9;
    display: none;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border: 1px solid #828383;
    background: #fff;
}

.modal_head {
    position: relative;
    padding: 20px 60px 20px 20px;
    background: #000;
}
.modal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    width: 20px;
    height: 20px;
    padding: 2px;
    background: transparent;
}
.modal_body {
    padding: 20px;
    background: #fff;
}

.modal_title {
    min-height: 20px;
    margin: 0;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
}
.modal_text {
    margin: 0;
    text-align: center;
}

/*================================================================================= NODES */
.node {}

.node_title {}

.data_content {}

.image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.image img {
    flex: 0 0 auto;
    display: block;
    max-height: 100%;
}

.image_big {
    margin: 0 0 8px;
}
.image_big_item {
    display: none;
    width: 100%;
    height: 360px;
    padding: 15px;
    border: 1px solid #f7f5f5;
    background: #fff;
}
.image_big_item--active {
    display: flex;
}
.image_small {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.image_small_item {
    width: calc(25% - 6px);
    margin: 0 8px 0 0;
    height: 90px;
    padding: 10px;
    border: 1px solid #f7f5f5;
    background: #fff;
    transition: .3s;
}
.image_small_item:nth-child(4) {
    margin: 0;
}
.image_small_item:hover,
.image_small_item--active {
    border: 1px solid #0375a5;
}


.article_node {}
.news_node {}
.gallery_node {}
.file_node {}
.catalog_node {}

@media (min-width: 480px) {}
@media (min-width: 480px) and (max-width: 767px) {}
@media (min-width: 768px) {}
@media (min-width: 768px) and (max-width: 1023px) {}
@media (min-width: 1024px) {}
@media (min-width: 1024px) and (max-width: 1200px) {}
@media (min-width: 1200px) {}

/*================================================================================ HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 10px 0;
    background: rgba(0,0,0,1);
}
.header_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.header_logo {
    order: 1;
}
.header_menu {
    order: 3;
}
.header_support {
    order: 2;
}

.logo {
    width: 120px;
    margin: 0;
}
.logo img {
    display: block;
}

.menu_toggle {
    padding: 0;
    width: 40px;
    height: 40px;
    padding: 7px;
    background: transparent;
}
.menu_list {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    display: none;
    width: 100%;
    background: #000;
}
.menu_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu_item {
    width: 100%;
    margin: 10px 15px;
    text-align: center;
}
.menu_link {
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    text-decoration: none;
}
.menu_link:hover {
    border-bottom: 1px dashed;
}

.support {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.support p {
    margin: 0;
    font-size: 10px;
    line-height: 20px;
}
.support a {
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .header {
        padding: 12px 0;
        background: rgba(0,0,0,.5);
    }
    .header_logo {
        order: 1;
    }
    .header_menu {
        order: 2;
    }
    .header_support {
        order: 3;
    }

    .logo {
        width: auto;
    }

    .menu_toggle {
        display: none;
    }
    .menu_list {
        position: static;
        display: block;
        width: auto;
        background: none;
    }
    .menu_item {
        width: auto;
    }

    .support p {
        font-size: 13px;
    }
}

@media (min-width: 1200px) {
    .menu_item {
        margin: 10px 35px;
    }
}

/*================================================================================== MAIN */
.section {
    position: relative;
}
.section img {
    display: block;
    width: 100%;
}
.section_button {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;
}

.side {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 10;
    display: none;
    margin: -140px 0 0 0;
    transform-origin: right bottom;
    transform: rotate(-90deg);
}
.side_link {
    display: block;
    width: 280px;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: #1E5DFE;
}

@media (min-width: 768px) {
    .section_button {
        position: absolute;
        bottom: 50%;
        left: 0;
        right: 0;
        max-width: 310px;
        margin: 0 auto;
        border-radius: 23px;
    }

    .side {
        display: block;
    }
}

/*================================================================================ FOOTER */

/*============================================================================== SECTIONS */

/*=========================================================================== WAY, PAGING */
