/*Commons*/
/*COMMONS*/
/*CSS RESET*/
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video
{margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
text-decoration: none;
color: inherit;
box-sizing: border-box;}

.grecaptcha-badge
{visibility: hidden;}

body
{line-height: 160%;}

ol, ul
{list-style: none;}

blockquote, q
{quotes: none;}

blockquote:before, blockquote:after,
q:before, q:after
{content: '';
content: none;}

table
{border-collapse: collapse;
border-spacing: 0;}

figure
{display: flex;
flex-direction: column;}

input, button, textarea
{-webkit-appearance: none;
border: none;
background: none;}






/*FONT FAMILIES*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');

.font-family-main
{font-family: 'Inter', sans-serif;
font-weight: 300;}

.font-family-mainbold
{font-family: 'Inter', sans-serif;
font-weight: 700;}

.font-family-mainitalic
{font-family: 'Inter', sans-serif;
font-style: 700;}

.font-family-sub
{font-family: 'Oswald', sans-serif;
font-weight: 700;
line-height: 130%;}

.font-family-subbold
{font-family: 'Oswald', sans-serif;
font-weight: 700;}

.font-family-subitalic
{font-family: 'Oswald', sans-serif;
font-style: 700;}



/*FONT SIZES*/
@font-size-large-5: 60px;
@font-size-large-45: 50px;
@font-size-large-4: 40px;
@font-size-large-35: 34px;
@font-size-large-3: 28px;
@font-size-large-25: 24px;
@font-size-large-2: 20px;
@font-size-large-1: 18px;
@font-size-normal: 16px;
@font-size-small-1: 12px;
@font-size-small-2: 10px;
@font-size-small-3: 8px;






/*MARGINS*/
@margin-6: 130px;
@margin-5: 80px;
@margin-4: 40px;
@margin-3: 20px;
@margin-2: 10px;
@margin-1: 5px;






/*COLORS*/
@color-1: rgb(51,51,51); //gray (text color)
@color-1-opaque: rgba(51,51,51,0.6);
@color-1-light: rgb(85,85,85);

@color-2: rgb(240,66,61); //red
@color-2-opaque: rgba(240,66,61,0.3);
@color-2-light: rgb(240,66,61);

@color-3: rgb(25,74,138); //blue
@color-3-opaque: rgba(25,74,138,0.6);
@color-3-light: rgb(25,74,138);

@color-border: rgb(51,51,51); //light-gray
@color-background: rgb(230,230,230);
@color-shadow: rgb(180,180,180);

@color-warned: rgb(225,91,91); //red
@color-warned-light: rgb(255,224,224); //light-red
@color-good: rgb(91,225,91); //green

@color-menu-buttons-background-0: rgb(255,255,255);
@color-menu-buttons-background-1: rgb(255,255,255);

@hover-color: rgba(173,143,119,0.1);

@color-facebook: rgb(59,89,152);
@color-instagram: rgb(150,104,66);
@color-twitter: rgb(0,132,180);
@color-googleplus: rgb(212,63,58);

.coloraddition_facebook
{color: @color-facebook;}

.coloraddition_instagram
{color: @color-instagram;}

.coloraddition_twitter
{color: @color-twitter;}

.coloraddition_googleplus
{color: @color-googleplus;}






/*BORDERS*/
@border-solid: solid 1px @color-border;
@border-dotted: dotted 1px @color-border;
@border-light: 1px solid #dcdcdc;;
@border-warned: solid 1px @color-warned;






/*SHADOWS*/
@shadow-1: 0px 0px 4px @color-shadow;
@shadow-2: 0px 0px 5px @color-shadow;






/*Saturations*/
.saturation
{background-color: rgba(0, 0, 0, 0.5);
background-blend-mode: soft-light;}






/*BACKGROUNDS*/
.background-cover-top
{background-position: 50% 0%;
background-size: cover;
background-repeat: no-repeat;}

.background-cover-center
{background-position: 50%;
background-size: cover;
background-repeat: no-repeat;}

.background-cover-bottom
{background-position: 50% 100%;
background-size: cover;
background-repeat: no-repeat;}

.background-contain-top
{background-position: 0% 50%;
background-size: contain;
background-repeat: no-repeat;}

.background-contain-center
{background-position: 50% 50%;
background-size: contain;
background-repeat: no-repeat;}

.background-contain-bottom
{background-position: 0% 100%;
background-size: contain;
background-repeat: no-repeat;}






/*FLEX*/
.div-flex
{display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;}

.direction-row
{-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;}

.direction-row-reverse
{-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-direction: row-reverse;
-moz-box-orient: horizontal;
-moz-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;}

.direction-column
{-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-moz-box-orient: vertical;
-moz-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;}

.direction-column-reverse
{-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-webkit-flex-direction: column-reverse;
-moz-box-orient: vertical;
-moz-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;}

.flex-nowrap
{-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;}

.flex-wrap
{-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;}

.flex-wrap-reverse
{-webkit-flex-wrap: wrap-reverse;
-ms-flex-wrap: wrap-reverse;
flex-wrap: wrap-reverse;}

.justify-start
{-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-moz-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;}

.justify-center
{-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;}

.justify-end
{-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;}

.justify-space-around
{-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around;}

.justify-space-between
{-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;}

.justify-stretch
{-webkit-box-pack: justify;
-webkit-justify-content: stretch;
-moz-box-pack: justify;
-ms-flex-pack: justify;
justify-content: stretch;}

.align-items-start
{-webkit-box-align: start;
-webkit-align-items: flex-start;
-moz-box-align: start;
-ms-flex-align: start;
align-items: flex-start;}

.align-items-center
{-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;}

.align-items-end
{-webkit-box-align: end;
-webkit-align-items: flex-end;
-moz-box-align: end;
-ms-flex-align: end;
align-items: flex-end;}

.align-items-stretch
{-webkit-box-align: stretch;
-webkit-align-items: stretch;
-moz-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;}

.align-items-baseline
{-webkit-box-align: baseline;
-webkit-align-items: baseline;
-moz-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline;}

.align-content-start
{-webkit-align-content: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start;}

.align-content-center
{-webkit-align-content: center;
-ms-flex-line-pack: center;
align-content: center;}

.align-content-end
{-webkit-align-content: flex-end;
-ms-flex-line-pack: end;
align-content: flex-end;}

.align-content-space-around
{-webkit-align-content: space-around;
-ms-flex-line-pack: distribute;
align-content: space-around;}

.align-content-space-between
{-webkit-align-content: space-between;
-ms-flex-line-pack: justify;
align-content: space-between;}

.align-content-stretch
{-webkit-align-content: stretch;
-ms-flex-line-pack: stretch;
align-content: stretch;}

.flex-shrink-0
{-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;}






/*BODIES*/
html
{.font-family-main;
font-size: @font-size-normal;
color: @color-1;}

@site-width: 1440px;
@read-width: 930px;

body
{-webkit-text-size-adjust: 100%;
-webkit-appearance: none;
-moz-appearance: none;
.div-flex;
.direction-column;
.align-items-center;
width: 100%;
min-height: 100vh;}

header
{.div-flex;
.direction-column;
.align-items-center;
width: 100%;}

.preloader
{position: fixed;
left: 0;
top: 0;
right:0;
bottom:0;
background: rgba(0, 0, 0, 0.5);
z-index: 10;
.div-flex;
.justify-center;
.align-items-center;
width: 100%;}

.preloaderabsolute
{.preloader;
position: absolute;}

.preloader i
{font-size: 40px;
color: white;}

.preloader svg
{height: 2em;
color: @color-2;}



/*Content*/
.content
{.div-flex;
.direction-column;
.align-items-center;
flex-grow: 2;
width: 100%;
margin-top: 70px;}

.contentsinglecolumn
{.content;}

.contentmultiplecolumn
{.content;
.direction-row;
.align-items-stretch;}

.contentcentered
{.justify-center;}

.contentlefted
{.justify-start;
.align-items-start;}

.contentsidemenu
{position: relative;}



/*Sections*/
.section
{}

.sectionfull
{width: 100%;
box-sizing: border-box;
.div-flex;}

.sectionwidth
{.sectionfull;
max-width: @site-width;}

.sectionfullrow
{.sectionfull;
.direction-row;
.flex-wrap;}

.sectionfullcolumn
{.sectionfull;
.direction-column;
.align-items-center;}

.sectionwidthrow
{.sectionwidth;
.direction-row;
.flex-wrap;}

.sectionwidthcolumn
{.sectionwidth;
.direction-column;
.align-items-center;}

.sectionpart
{box-sizing: border-box;
.div-flex;
.direction-column;
overflow: hidden;}

.contentsidemenu .sectionpart:nth-of-type(1)
{.flex-shrink-0;
width: 20%;
position: relative;}

.section + .section
{margin-top: @margin-5;}

#fullpage .section + .section
{margin-top: 0px;}

.sectionmain
{width: 70%;
box-sizing: border-box;}

.sectionside
{width: 30%;
box-sizing: border-box;}

@media all and (max-width: 1440px)
{
.contentsidemenu .sectionpart:nth-of-type(1){width: 25%;}
}

@media all and (max-width: 1024px)
{
.contentsidemenu .sectionpart:nth-of-type(1){width: 30%;}
}

@media all and (max-width: 768px)
{
.contentsidemenu{.direction-column;}
.contentsidemenu .sectionpart:nth-of-type(1){position: fixed; width: 100%; z-index: 4; overflow: scroll;}
.content{margin-top: 50px;}
}



/*Commons*/
.grown
{flex-grow: 2;}

.sidepadding
{padding: 0px @margin-3;}

.toppadding
{padding-top: @margin-3;}

.topbottompadding
{padding: @margin-3 0px;}

.fullpadding
{padding: @margin-3;}

.nopadding
{padding: 0px;}

.colored
{background-color: @color-background;}

.coloreddark
{background-color: @color-1;}

.nomargin_top
{margin-top: 0px;}

.nomargin_bottom
{margin-bottom: 0px;}

.widthlimited
{max-width: 500px;}

.disabled
{opacity: 0.5;}






/*TEXT*/
.bold
{font-weight: bold;}

.italic
{font-style: italic;}

.warned
{color: @color-warned;}

.good
{color: @color-good;}

.h1
{.font-family-subbold;
font-size: @font-size-large-3;
margin: 0px;
width: 100%;
text-align: center;}

.h1divider
{width: 100px;
height: 4px;
background-color: @color-2;
margin: @margin-3 auto;}

.h2
{font-size: @font-size-large-4;
.font-family-sub;
margin-bottom: @margin-3;
color: @color-1;
text-align: center;}

.h3
{.font-family-subbold;
font-size: @font-size-large-1;
margin: 0px;
width: 100%;
text-align: center;}

.headerchapter
{width: 100%;
margin: @margin-6 0px @margin-4 0px;
border-bottom: @border-solid;
padding: 0px 100px @margin-4 0px;
font-size: @font-size-large-5;
.font-family-sub;
background-image: url(css_images/flower.svg);
background-position: 100% 35%;
background-repeat: no-repeat;
background-size: 86px;}

.headerchaptersmall
{width: 100%;
margin: @margin-6 0px @margin-4 0px;
font-size: @font-size-large-4;
.font-family-sub;
text-align: center;}

.headerchaptertiny
{width: 100%;
margin: @margin-4 0px @margin-3 0px;
font-size: @font-size-large-25;
.font-family-sub;
text-align: center;}

@media all and (max-width: 1440px)
{
.headerchapter{font-size: @font-size-large-45; margin: 100px 0px @margin-3 0px; padding: 0px 100px @margin-3 0px;}
.h2{font-size: @font-size-large-3;}
}

@media all and (max-width: 768px)
{
.headerchapter{font-size: @font-size-large-4; background-size: 75px; background-position: 100% 8px;}
}

@media all and (max-width: 500px)
{
.headerchapter{font-size: @font-size-large-35;padding: 0px 80px @margin-3 0px; background-size: 62px;}
.headerchaptertiny{margin-top: @margin-3;}
}






/*COMMON ELEMENTS*/
.modalbutton
{position: fixed;
z-index: 3;
bottom: 30px;
width: 50px;
height: 50px;
border-radius: 50px;
line-height: 50px;
cursor: pointer;
background-color: @color-2;
color: white;
font-size: 40px;
text-align: center;
.div-flex;
.align-items-center;
.justify-center;}

.totop
{.modalbutton;
right: 30px;}

.mailbutton
{.modalbutton;
left: 30px;}

.mailbutton_image
{color: white;
font-size: 25px;
line-height: 50px;}

.button
{.div-flex;
.align-items-center;
cursor: pointer;}

.button_title
{.font-family-mainbold;}

.button_arrow
{width: 30px;
height: 30px;
border-radius: 30px;
.div-flex;
.justify-center;
.align-items-center;
background-color: @color-2;
margin-left: @margin-3;}

.button_arrow_i
{color: white;}

.button:hover .button_title
{color: @color-2;}

.overlay
{z-index: 6; /* пoдлoжкa дoлжнa быть выше слoев элементoв сaйтa, нo ниже слoя мoдaльнoгo oкнa */
position: fixed;
background-color: rgba(0,0,0,0.85);
width: 100%;
height: 100%; /* рaзмерoм вo весь экрaн */
top:0; /* сверху и слевa 0, oбязaтельные свoйствa! */
left:0;
cursor:pointer;
.div-flex;
.align-items-center;}

.overlay_close
{width: 40px;
height: 40px;
border-radius: 40px;
color: white;
border: solid 1px white;
.div-flex;
.justify-center;
.align-items-center;
position: absolute;
top: 10px;
right: 10px;}

.overlay_close:hover
{color: @color-2;
border: solid 1px @color-2;}

.overlay_close_i
{font-size: 25px;}

@media all and (max-width: 768px)
{
.totop{bottom: 10px; right: 10px;}
}

@media all and (min-width: 768px)
{
.totop:hover {background-color: @color-1;}
}






/*PARALLAXIMAGE*/
.parallaximage
{width: 100%;
margin: auto;}

.parallaximage_image
{.saturation;
height: 400px;
width: 100%;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: 100% auto;
position:relative;
display: flex;
justify-content: center;
align-items: center;}

.parallaximage_image_content
{width: 100%;
.div-flex;
.align-items-center;
.justify-center;
padding: @margin-4 @margin-3;}

.parallaximage_image_content_text
{.div-flex;
.align-items-center;
color: white;
margin-right: 150px;
text-align: center;}

.parallaximage_image_content_text_title
{.font-family-mainbold;
font-size: @font-size-large-3;
padding: 0px @margin-3 0px 0px;
border-right: solid 1px white;
margin: 0px @margin-3 0px 0px;}

.parallaximage_image_content_text_text
{font-size: @font-size-large-1;}

@media all and (max-width: 800px)
{
.parallaximage_image{background-attachment: initial;}
}






/*STATS*/
.stats
{.div-flex;}

.stats + .article_body
{margin-top: @margin-3;}

.articles_item_content_readmore + .stats
{margin-top: @margin-3;}

.stats_item
{.div-flex;
.align-items-center;}

.stats_item + .stats_item
{margin-left: @margin-3;}

.stats_item_i
{color: @color-2;
margin-right: @margin-1;
font-size: 150%;}

.stats_item_ibutton
{cursor: pointer;}

.stats_item_ibutton:hover
{opacity: 0.5;}

.stats_item_idone
{color: @color-warned;
cursor: default;}

.stats_item_idone:hover
{opacity: 1;}

.stats_item_digits
{}







/*Contactstop*/
.contactstop
{width: 100%;
.div-flex;
.justify-center;
.align-items-center;
.direction-column;
z-index: 5;
background: white;
position: fixed;
// box-shadow: @shadow-1;
border-bottom: @border-light;}

.contactstop_content
{width: 100%;
max-width: @site-width;
padding: 0px @margin-3;
box-sizing: border-box;
.div-flex;
.justify-space-between;
.direction-column;}

.contactstop_contentsinglechild
{.justify-center;}

.contactstop_content_row
{.div-flex;
.justify-space-between;
width: 100%;}

.contactstop_content_row_block
{.div-flex;
.justify-center;
.align-items-center;
color: white;}

.contactstop_content_row_blockonly
{.justify-space-between;
width: 100%;}

.contactstop_content_row_block:nth-of-type(4){flex-grow: 2; max-width: 350px;}

.contactstop_content_row_block_item
{.div-flex;
.align-items-center;}

.contactstop_content_row_block_item + .contactstop_content_row_block_item
{margin-left: @margin-5;}

a.contactstop_content_row_block_item:hover
{color: @color-3;}

.contactstop_content_row_block_itemsearch
{width: 100%;
.justify-center;}

.contactstop_content_row_block_href
{cursor: pointer;}

.contactstop_content_row_block_href:hover
{color: @color-3;}

.contactstop_content_row_block_item_icon
{.div-flex;
.justify-center;
.align-items-center;}

.contactstop_content_row_block_item_icon_i
{font-size: 25px;}

.contactstop_content_row_block_item_icon + .contactstop_content_row_block_item_text
{margin-left: @margin-2;}

.contactstop_content_row_block_item_icon + .contactstop_content_row_block_item_icon
{margin-left: @margin-2;}

.contactstop_content_row_block_item_shoppingcart
{position: relative;}

.contactstop_content_row_block_item_shoppingcart_digits
{position: absolute;
right: -19px;
top: -6px;
color: white;
background-color: red;
border-radius: 20px;
text-align: center;
padding: 1px 6px;
display: block;}

.contactstop_content_row_block_item_shoppingcart_digits:empty
{display: none;}

.contactstop_content_row_block_item_text
{font-size: @font-size-normal;}

.contactstop_content_row_block_logo
{width: 240px;
height: 70px;
.background-contain-center;
cursor: pointer;
display: block;}

.contactstop_content_row_block_menusign
{width: 25px;
height: 25px;
border-radius: 30px;
line-height: 30px;
cursor: pointer;
color: @color-1;
text-align: center;
transition: 0.3s;
.div-flex;
.align-items-center;
.justify-center;
display: none;}

.contactstop_content_row_block_menusign:hover
{color: @color-1-light;}

.contactstop_content_row_block_menusign .i
{font-size: 25px;
line-height: 30px;}

.contactstop button
{color: white;}

.contactstop_searchicon
{.div-flex;
.justify-center;
.align-items-center;
color: @color-1;
cursor: pointer;
margin-top: -1px;}

.contactstop_searchiconclose
{font-size: 115%;}

.contactstop_searchicon:hover
{opacity: 0.5;}

.contactstop_searchicon i
{}

#searchblock
{width: 100%;}

@media all and (max-width: 1024px)
{
.contactstop_content_row_block_item + .contactstop_content_row_block_item{margin-left: @margin-4;}
.contactstop_content_row_block_logo{width: 180px;}
}

@media all and (max-width: 768px)
{
.contactstop_content_row_block_menusign{display: block;}
.contactstop_content_row_block_menusign:hover{color: @color-3;}
a.contactstop_content_row_block_item:hover{color: white;}
.contactstop_content_row_block_href:hover{color: white;}
.contactstop_content_row_block_logo{width: 140px; height: 50px;}
}

@media all and (max-width: 500px)
{
.contactstop_content_row_block:nth-of-type(4){max-width: initial; padding: 0px @margin-3;}
.contactstop_content_row_block_item + .contactstop_content_row_block_item{margin-left: @margin-3;}
}






/*Flags*/
.flags
{.div-flex;
.direction-row;}

.flags_selector
{.div-flex;
.direction-column;
position: absolute;
display: none;}

.flags_flagwords
{.div-flex;
.justify-center;
.align-items-center;
.background-cover-center;
width: 25px;
height: 25px;
border-radius: 25px;
line-height: 21px;
text-align: center;
color: @color-1;
cursor: pointer;
display: block;
border: solid 1px white;}

.flags_flagwords:hover
{opacity: 0.5;}

.flags .flags_flagwords + .flags_flagwords
{margin: 0px 0px 0px @margin-1;}

.flags_selector .flags_flagwords + .flags_flagwords
{margin: @margin-1 0px 0px 0px;}

.flags_flagopaque
{color: @color-2;
cursor: default;}

.flags_flagopaque:hover
{opacity: 1;}






/*Menutop*/
.menutop
{.div-flex;
.justify-start;
.align-items-center;
.direction-column;
.flex-shrink-0;
background-color: @color-menu-buttons-background-0;
left: 0%;
z-index: 5;}

.menutop .simplebar-mask
{overflow: visible;}

.menutop .simplebar-content-wrapper
{overflow: visible;}

.menutop_sign
{width: 30px;
height: 30px;
border-radius: 30px;
line-height: 30px;
cursor: pointer;
color: @color-3;
text-align: center;
transition: 0.3s;
margin: 0px @margin-1;
display: none;
.align-items-center;
.justify-center;}

.menutop_sign:hover
{color: @color-3-light;}

.menutop_sign_i
{font-size: 25px;
line-height: 30px;}

/*Кнопки меню*/
.menutop_buttons
{.div-flex;
.justify-center;
.align-items-stretch;
box-sizing: border-box;}

.menutop_buttons_button
{.div-flex;
.align-items-stretch;
.justify-space-between;
.flex-shrink-0;
position: relative;}

.menutop_buttons_button + .menutop_buttons_button
{margin-left: @margin-4;}

.menutop_buttons_button_a
{height: 40px;
color: @color-1;
text-align: left;
box-sizing: border-box;
.div-flex;
.align-items-center;
.justify-space-between;
.flex-shrink-0;
cursor: pointer;
background-color: @color-menu-buttons-background-0;}

.menutop_buttons_button_a:hover
{opacity: 0.5;}

.menutop_buttons_button_a:active
{color: @color-2;}

.menutop_buttons_button_a.active
{color: @color-2;}

.menutop_buttons_button_a_this
{.menutop_buttons_button_a;
color: @color-2;}

.menutop_buttons_button_a_info
{.div-flex;
.align-items-center;}

.menutop_buttons_button_a_info_icon
{width: 25px;
height: 25px;
border-radius: 25px;
line-height: 25px;
cursor: pointer;
text-align: center;
margin: 0px @margin-1 0px 0px;
.div-flex;
.align-items-center;
.justify-center;
.flex-shrink-0;
display: none;}

.menutop_buttons_button_a_info_icon_i
{font-size: 20px;
line-height: 25px;}

.menutop_buttons_button_a_info_text
{}

.menutop_buttons_button_a_arrow
{margin: 0px 0px 0px @margin-2;
display: none;}

.menutop_buttons_button_a_arrow_i
{}

/*Выпадающее подменю*/
.menutop_buttons_dropdown
{width: 100%;
box-sizing: border-box;
.flex-shrink-0;
.direction-column;
display: none;
position: absolute;
top: 40px;
left: 0px;
max-height: 70vh;
width: 600px;
z-index: 1;}

.menutop_buttons_dropdownaside
{width: 100%;
box-sizing: border-box;
.flex-shrink-0;
.direction-column;
/*display: none;*/
position: absolute;
max-height: 70vh;
position: absolute;
right: -100%;
top: 0px;
display: none;}

.menutop_buttons_dropdown_button
{box-sizing: border-box;
.div-flex;
.align-items-center;
.flex-shrink-0;
.justify-start;
cursor: pointer;
position: relative;
width: 300px;
.flex-shrink-0;}

.menutop_buttons_dropdown_button_a
{.div-flex;
width: 300px;
padding: @margin-2;
background-color: @color-menu-buttons-background-1;
text-align: left;
box-sizing: border-box;
color: @color-1;}

.menutop_buttons_dropdown_button_a:hover
{color: white;
background-color: @color-3-light;}

.menutop_buttons_dropdown_button_a:active
{color: white;
background-color: @color-3-light;}

.menutop_buttons_dropdown_button_a_this
{.menutop_buttons_dropdown_button_a;
color: white;
background-color: @color-3;}

.menutop_buttons_dropdown_button_a_icon
{width: 25px;
height: 25px;
border-radius: 25px;
line-height: 25px;
cursor: pointer;
text-align: center;
.div-flex;
.align-items-center;
.justify-center;
.flex-shrink-0;
margin: 0px @margin-1 0px 0px;
display: none;}

.menutop_buttons_dropdown_button_a_icon_i
{font-size: 20px;
line-height: 25px;}

.menutop_buttons_dropdown_button_a_text
{}

.menutop_buttons_dropdown_button_a_arrow
{margin: 0px 0px 0px @margin-2;
display: none;
position: absolute;
right: 10px;}

.menutop_buttons_dropdown_button_a_arrow i
{}

.menutop_buttons_dropdown_button_this
{box-sizing: border-box;
.div-flex;
.align-items-center;
.flex-shrink-0;
.justify-start;
cursor: pointer;
position: relative;
width: 300px;
.flex-shrink-0;}

.menutop_buttons_dropdown_button_this .menutop_buttons_dropdown_button_a
{color: white;
background-color: @color-3-light;}

.menutop_buttons_dropdown_button_this .menutop_buttons_dropdownaside .menutop_buttons_dropdown_button_a
{background-color: @color-menu-buttons-background-1;
color: @color-1;}

.menutop_buttons_dropdown_button_this .menutop_buttons_dropdownaside .menutop_buttons_dropdown_button_a:hover
{color: white;
background-color: @color-3-light;}

/*Меню для < 800px*/
.menutop_buttonslistcarrier
{display: none;
width: 100%;}

.menutop_buttonslist
{.div-flex;
.justify-center;
.align-items-center;
.direction-column;
width: 100%;
box-sizing: border-box;
display: none;}

.menutop_buttonslist_button
{width: 100%;
.div-flex;
.align-items-center;
.justify-space-between;
.flex-shrink-0;
.direction-column;
position: relative;}

.menutop_buttonslist_button_a
{color: @color-1;
text-align: left;
width: 100%;
box-sizing: border-box;
.div-flex;
.align-items-center;
.justify-space-between;
.flex-shrink-0;
background-color: @color-menu-buttons-background-0;}

.menutop_buttonslist_button_a:hover
{color: white;
background-color: @color-3-light;}

.menutop_buttonslist_button_a:active
{color: white;
background-color: @color-3-light;}

.menutop_buttonslist_button_a.active
{color: white;
background-color: @color-3-light;}

.menutop_buttonslist_button_a_this
{.menutop_buttonslist_button_a;
color: white;
background-color: @color-3;}

.menutop_buttonslist_button_a_info
{.div-flex;
.align-items-center;
width: 100%;
padding: @margin-2;
box-sizing: border-box;}

.menutop_buttonslist_button_a_info_icon
{width: 25px;
height: 25px;
border-radius: 25px;
line-height: 25px;
cursor: pointer;
text-align: center;
.flex-shrink-0;}

.menutop_buttonslist_button_a_info_icon_i
{font-size: 20px;
line-height: 25px;}

.menutop_buttonslist_button_a_info_text
{margin: 0px 0px 0px @margin-1;}

.menutop_buttonslist_button_a_arrow
{padding: @margin-2;
width: 16px;
height: 16px;
.div-flex;
.justify-center;
.align-items-center;
cursor: pointer;
display: none;}

.menutop_buttonslist_button_a_arrow_image
{}

.menutop_buttonslist_dropdown
{width: 100%;
box-sizing: border-box;
.flex-shrink-0;
.direction-column;
display: none;}

.menutop_buttonslist_dropdown_button
{box-sizing: border-box;
.div-flex;
.direction-column;
position: relative;}

.menutop_buttonslist_dropdown_button_a
{background-color: @color-menu-buttons-background-1;
text-align: left;
box-sizing: border-box;
.div-flex;
.align-items-center;
.flex-shrink-0;
.justify-start;
color: @color-1;
cursor: pointer;
width: 100%;}

.menutop_buttonslist_dropdown_button_a:hover
{color: white;
background-color: @color-3-light;}

.menutop_buttonslist_dropdown_button_a:active
{color: white;
background-color: @color-3-light;}

.menutop_buttonslist_dropdown_button_a_this
{.menutop_buttonslist_dropdown_button;
color: white;
background-color: @color-3;}

.menutop_buttonslist_dropdown_button_a_info
{padding: @margin-2 @margin-2 @margin-2 @margin-4;
flex-grow: 2;}

.menutop_buttonslist_dropdown_button .menutop_buttonslist_dropdown_button .menutop_buttonslist_dropdown_button_a_info
{padding: @margin-2 @margin-2 @margin-2 60px;}

.menutop_buttonslist_dropdown_button_a_info_icon
{width: 25px;
height: 25px;
border-radius: 25px;
line-height: 25px;
cursor: pointer;
text-align: center;
.div-flex;
.align-items-center;
.justify-center;
.flex-shrink-0;
margin: 0px @margin-1 0px 0px;}

.menutop_buttonslist_dropdown_button_a_info_icon_i
{font-size: 20px;
line-height: 25px;}

.menutop_buttonslist_dropdown_button_a_info_text
{}

.menutop_buttonslist_dropdown_button_a_arrow
{padding: @margin-2;
width: 16px;
height: 16px;
.div-flex;
.justify-center;
.align-items-center;
cursor: pointer;
display: none;}

@media all and (max-width: 1024px)
{
.menutop_buttons_button + .menutop_buttons_button{margin-left: @margin-3;}
}

@media all and (max-width: 768px)
{
.menutop{width: 100vw; position: absolute;}
.menutop_buttonslistcarrier{display: block;}
.menutop_sign{.div-flex;}
.menutop_logo_dummy{display: none;}
.menutop_buttons{display: none;}
}







/*Menutop*/
.menufull
{.div-flex;
.justify-center;
.align-items-center;
.direction-column;
.flex-shrink-0;
background-color: @color-menu-buttons-background-0;
width: 100vw;
height: 100vh;
z-index: -1;
top: 0px;
left: 0px;
display: none;
position: absolute;}

.menufullcontent
{.div-flex;
.justify-center;
.align-items-center;
.direction-column;
.flex-shrink-0;
background-color: @color-menu-buttons-background-0;
width: 100vw;
height: 100%;}

.menufull_block
{.div-flex;
.justify-center;
.align-items-center;
.direction-column;
.flex-shrink-0;
padding: @margin-3;
box-sizing: border-box;
width: 100%;}

.menufull_block_menusign
{width: 25px;
height: 25px;
border-radius: 30px;
line-height: 30px;
cursor: pointer;
color: @color-1;
text-align: center;
transition: 0.3s;
.div-flex;
.align-items-center;
.justify-center;}

.menufull_block_menusign:hover
{color: @color-1-light;}

.menufull_block_menusign .i
{font-size: 25px;
line-height: 30px;}

.menufull_block_menu
{width: 100%;
max-height: 70vh;
max-width: 500px;}

.menufull_block_menu_buttonslist
{.div-flex;
.justify-center;
.align-items-center;
.direction-column;
width: 100%;
box-sizing: border-box;}

.menufull_block_menu_buttonslist_button
{width: 100%;
.div-flex;
.align-items-center;
.justify-space-between;
.flex-shrink-0;
.direction-column;
position: relative;}

.menufull_block_menu_buttonslist_button_a
{color: @color-1;
text-align: left;
width: 100%;
box-sizing: border-box;
.div-flex;
.align-items-center;
.justify-space-between;
.flex-shrink-0;
background-color: @color-menu-buttons-background-0;}

.menufull_block_menu_buttonslist_button_a:hover
{color: @color-2;}

.menufull_block_menu_buttonslist_button_a:active
{color: @color-2;}

.menufull_block_menu_buttonslist_button_a.active
{color: @color-2;}

.menufull_block_menu_buttonslist_button_a_this
{.menufull_block_menu_buttonslist_button_a;
color: @color-2;}

.menufull_block_menu_buttonslist_button_a_info
{.div-flex;
.align-items-center;
.justify-center;
width: 100%;
padding: @margin-2;
box-sizing: border-box;}

.menufull_block_menu_buttonslist_button_a_info_icon
{width: 25px;
height: 25px;
border-radius: 25px;
line-height: 25px;
cursor: pointer;
text-align: center;
.flex-shrink-0;}

.menufull_block_menu_buttonslist_button_a_info_icon_i
{font-size: 20px;
line-height: 25px;}

.menufull_block_menu_buttonslist_button_a_info_text
{margin: 0px;}

.menufull_block_menu_buttonslist_button_a_arrow
{padding: @margin-2;
width: 16px;
height: 16px;
.div-flex;
.justify-center;
.align-items-center;
cursor: pointer;
display: none;}

.menufull_block_menu_buttonslist_button_a_arrow_image
{}

.menufull_block_menu_buttonslist_dropdown
{width: 100%;
box-sizing: border-box;
.flex-shrink-0;
.direction-column;
display: none;}

.menufull_block_menu_buttonslist_dropdown_button
{box-sizing: border-box;
.div-flex;
.direction-column;
position: relative;}

.menufull_block_menu_buttonslist_dropdown_button_a
{background-color: @color-menu-buttons-background-1;
text-align: left;
box-sizing: border-box;
.div-flex;
.align-items-center;
.flex-shrink-0;
.justify-start;
color: @color-1;
cursor: pointer;
width: 100%;}

.menufull_block_menu_buttonslist_dropdown_button_this .menufull_block_menu_buttonslist_dropdown_button_a
{color: white;
background-color: @color-3-light;}

.menufull_block_menu_buttonslist_dropdown_button_a:hover
{color: white;
background-color: @color-3-light;}

.menufull_block_menu_buttonslist_dropdown_button_a:active
{color: white;
background-color: @color-3-light;}

.menufull_block_menu_buttonslist_dropdown_button_a_this
{.menufull_block_menu_buttonslist_dropdown_button;
color: white;
background-color: @color-3;}

.menufull_block_menu_buttonslist_dropdown_button_a_info
{padding: @margin-2 @margin-2 @margin-2 @margin-4;
flex-grow: 2;}

.menufull_block_menu_buttonslist_dropdown_button .menufull_block_menu_buttonslist_dropdown_button .menufull_block_menu_buttonslist_dropdown_button_a_info
{padding: @margin-2 @margin-2 @margin-2 60px;}

.menufull_block_menu_buttonslist_dropdown_button_a_info_icon
{width: 25px;
height: 25px;
border-radius: 25px;
line-height: 25px;
cursor: pointer;
text-align: center;
.div-flex;
.align-items-center;
.justify-center;
.flex-shrink-0;
margin: 0px @margin-1 0px 0px;}

.menufull_block_menu_buttonslist_dropdown_button_a_info_icon_i
{font-size: 20px;
line-height: 25px;}

.menufull_block_menu_buttonslist_dropdown_button_a_info_text
{}

.menufull_block_menu_buttonslist_dropdown_button_a_arrow
{padding: @margin-2;
width: 16px;
height: 16px;
.div-flex;
.justify-center;
.align-items-center;
cursor: pointer;
display: none;}

@media all and (max-width: 768px)
{
.menusidenav{min-height: initial; width: 100%;}
.menusideall{width: 100%; border-right: none; border-bottom: @border-solid;}
.menusidewide{width: 100%; min-height: initial;}
.menusidesmall{width: 100%; min-height: initial; border-top: none;}
.menuside_buttonssmall{display: none;}
.menuside_headsmall_logo{display: block;}
}


/*Breadcrumbs*/
.breadcrumbs
{width: 100%;
box-sizing: border-box;
.div-flex;
.flex-wrap;
color: @color-1-light;
padding: @margin-4 0px;
white-space: nowrap;}

.breadcrumbs_item
{}

.breadcrumbs_itembefore
{}

a.breadcrumbs_item
{color: @color-1;}

a.breadcrumbs_itemlast
{color: @color-2;}

a.breadcrumbs_item:hover
{color: @color-2;}

.breadcrumbs_itemlast
{color: @color-2;
pointer-events: none;
cursor: default;}

.breadcrumbs_itemlast:hover
{color: @color-1-light;}

@media all and (max-width: 768px)
{
.breadcrumbs{padding: @margin-3 0px;}
}








/*Mainimage*/
.mainimage
{.div-flex;
width: 100%;}

.mainimage1
{.mainimage;}

.mainimage1 .mainimage_content
{width: 50%;
padding: @margin-3 @margin-4 0px @margin-3;}

.mainimage1 .mainimage_images
{width: 50%;
.flex-wrap;
padding: 0px 0px 0px @margin-4;}

.mainimage1 .mainimage_images_img
{width: 50%;
.flex-wrap;
object-fit: cover;}

.mainimage1 .mainimage_images_img
{width: 50%;
.flex-wrap;
object-fit: cover;}

.mainimage2
{.mainimage;
margin-top: @margin-3;
padding: 0px @margin-3;}

.mainimage2 .mainimage_content
{width: 50%;
padding: @margin-3 0px 0px 0px;}

.mainimage2 .mainimage_images
{width: 50%;
.flex-wrap;
padding: 0px;
.align-items-start;
position: relative;
margin-bottom: 100px;}

.mainimage2 .mainimage_images_image
{.background-cover-center;}

.mainimage2 .mainimage_images_image:nth-of-type(1)
{width: calc(~'50% - 20px');
height: 320px;
margin: 0px 20px 20px 0px;
.flex-wrap;}

.mainimage2 .mainimage_images_image:nth-of-type(2)
{width: 50%;
height: 220px;
.flex-wrap;}

.mainimage2 .mainimage_images_image:nth-of-type(3)
{width: 37%;
height: 200px;
left: 50%;
top: 240px;
.flex-wrap;
position: absolute;}

.mainimage_content
{.div-flex;
.direction-column;
.justify-center;
.flex-shrink-0;}

.mainimage_content_title
{.font-family-sub;
font-size: @font-size-large-5;}

.mainimage2 .mainimage_content_title
{margin-top: -20%;
padding-right: 40px;
display: flex;}

.mainimage_content_flower
{width: 86px;
height: 66px;
margin-left: @margin-4;
background-image: url(css_images/flower.svg);
background-position: 100% 100%;
background-repeat: no-repeat;
background-size: contain;
display: inline-block;}

.mainimage_content_text
{color: @color-1-light;}

.mainimage_content_title + .mainimage_content_text
{margin-top: @margin-5;}

.mainimage_content_controls
{}

.mainimage_content_text + .mainimage_content_controls
{margin-top: @margin-5;}

.mainimage_images
{.div-flex;
.flex-shrink-0;}

.mainimage_images_item
{}

@media all and (max-width: 1440px)
{
.mainimage_content_title{font-size: @font-size-large-45;}
.mainimage1 .mainimage_content{padding: @margin-3 @margin-3 0px @margin-3;}
.mainimage1 .mainimage_images{padding: 0px 0px 0px @margin-3;}
.mainimage_content_title + .mainimage_content_text{margin-top: @margin-4;}
.mainimage_content_text + .mainimage_content_controls{margin-top: @margin-4;}
.mainimage_content_flower{width: 86px; height: 56px;}
.mainimage2 .mainimage_images_image:nth-of-type(1){height: 260px;}
.mainimage2 .mainimage_images_image:nth-of-type(3){height: 140px;}
}

@media all and (max-width: 1024px)
{
.mainimage1{.direction-column-reverse;}
.mainimage1 .mainimage_images{padding: 0px; width: 100%;}
.mainimage1 .mainimage_images_img{width: 25%; height: 15vh;}
.mainimage1 .mainimage_content{width: 100%; padding: @margin-3 @margin-3 0px @margin-3;}
.mainimage2{.direction-column-reverse; padding: 0px; margin: 0px;}
.mainimage2 .mainimage_content{padding: @margin-3;}
.mainimage2 .mainimage_images{padding: 0px; width: 100%; margin-bottom: 0px;}
.mainimage2 .mainimage_content{width: 100%; padding: @margin-3 @margin-3 0px @margin-3;}
.mainimage2 .mainimage_content_title{margin-top: 0px; .div-flex; .justify-space-between; padding: 0px;}
.mainimage2 .mainimage_images_image:nth-of-type(1){width: 33.3333%; height: 15vh; margin: 0px;}
.mainimage2 .mainimage_images_image:nth-of-type(2){width: 33.3333%; height: 15vh; margin: 0px;}
.mainimage2 .mainimage_images_image:nth-of-type(3){width: 33.3333%; height: 15vh; margin: 0px; position: relative; left: 0px; top: 0px;}
}

@media all and (max-width: 768px)
{
.mainimage_content_title{font-size: @font-size-large-4;}
.mainimage_content_title + .mainimage_content_text{margin-top: @margin-3;}
.mainimage_content_text + .mainimage_content_controls{margin-top: @margin-3;}
.mainimage_content_flower{width: 75px; height: 44px;}
}

@media all and (max-width: 500px)
{
.mainimage1 .mainimage_images_img{width: 50%;}
.mainimage_content_title{font-size: @font-size-large-35;}
.mainimage_content_flower{width: 62px; height: 40px;}
}






.ouractivity
{width: 100%;
.div-flex;
.direction-column;}

.ouractivity_item
{width: 100%;
.div-flex;
.direction-column;}

.ouractivity_item + .ouractivity_item
{margin-top: @margin-5;}

.ouractivity_item_title
{font-size: @font-size-large-4;
.font-family-sub;
margin-bottom: @margin-3;}

.ouractivity_item_content
{width: 100%;
.div-flex;}

.ouractivity_item_content_data
{width: 50%;
.div-flex;
.direction-column;
.flex-shrink-0;
padding-right: @margin-4;}

.ouractivity_item_content_data_subtitle
{font-size: @font-size-large-3;
.font-family-sub;
margin-bottom: @margin-4;
color: @color-1-light;}

.ouractivity_item_content_data_subtitle strong
{color: @color-3;}

.ouractivity_item_content_data_images
{width: 100%;
.div-flex;
.justify-space-between;}

.ouractivity_item_content_data_images_item
{width: calc(~'50% - 20px');
padding-bottom: 25%;
position: relative;}

.ouractivity_item_content_data_images_item img
{position: absolute;
width: 100%;
height: 100%;
object-fit: cover;}

.ouractivity_item_content_text
{width: 50%;
.div-flex;
.direction-column;
.flex-shrink-0;
.justify-start;
padding-left: @margin-4;}

.ouractivity_item_content_text_text
{}

.ouractivity_item_content_text_text + .button
{margin-top: @margin-3;}

@media all and (max-width: 1250px)
{
.ouractivity_item_content_data{padding-right: @margin-3;}
.ouractivity_item_content_text{padding-left: @margin-3;}
}

@media all and (max-width: 1024px)
{
.ouractivity_item_content_data_images{margin: 0px;}
.ouractivity_item_content_data_images_item{width: calc(~'50% - 10px');}
}

@media all and (max-width: 768px)
{
.ouractivity_item_content{.direction-column;}
.ouractivity_item_content_text{padding-left: @margin-3;}
.ouractivity_item_content_data{width: 100%; padding-right: 0px;}
.ouractivity_item_content_text{width: 100%; padding-left: 0px;}
.ouractivity_item_content_data_images{margin: 0px 0px @margin-3 0px;}
.ouractivity_item_title{font-size: @font-size-large-3;}
.ouractivity_item_content_data_subtitle{font-size: @font-size-large-2; margin-bottom: @margin-3;}
}







/*Form*/
.form
{.div-flex;
.direction-column;
.align-items-center;
width: 100%;
box-sizing: border-box;
position: relative;}

/*Элементы формы*/
.form_title
{.h2;
width: 100%;
text-align: center;}

.form_row
{.div-flex;
.justify-start;
.align-items-center;
.flex-wrap;
width: 100%;
box-sizing: border-box;}

.form_row + .form_row
{margin-top: @margin-3;}

.form_rowempty
{margin-top: 0px;}

.form_row_field
{.div-flex;
.direction-column;
.flex-shrink-0;
.justify-center;
flex-grow: 2;
box-sizing: border-box;
position: relative;
max-width: 100%;}

.form_row_field_title
{.div-flex;
.flex-shrink-0;
font-size: @font-size-small-1;
margin: 0px 0px @margin-1 0px;
display: none;}

.form_row_field_title_warned
{color: @color-warned;}

.form_row_field_title:empty
{margin-bottom: 0px;}

.form_row_field_input
{.div-flex;
padding: @margin-1;
border-bottom: @border-solid;
.font-family-main;
width: 100%;
font-size: @font-size-normal;
.flex-shrink-0;
border-radius: 0px;
text-overflow: ellipsis;
color: @color-1;
outline: none;
background-color: white;
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;}

.form_row_field_input::placeholder
{color: @color-1-opaque;}

.form_row_field_input:focus::placeholder
{opacity: 0;
transition: opacity 0.3s ease;}

.form_row_field_input_warned
{border-bottom: @border-warned;}

.form_row_field_input_warned::placeholder
{color: @color-warned;}

.form_row_field_input_warned:focus::placeholder
{opacity: 0;
transition: opacity 0.3s ease;}

.form_row_field_inputmultiple
{.div-flex;
.direction-row;
.align-items-start;
.flex-wrap;
.font-family-main;
width: 100%;
font-size: @font-size-large-1;
.flex-shrink-0;
border-radius: 5px;
text-overflow: ellipsis;
color: @color-1;
outline: none;
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
margin-top: -@margin-3;}

.form_row_field_inputmultiple_item
{.div-flex;
margin: @margin-3 @margin-4 0px 0px;}

.form_row_button
{.button;
margin: auto;}

.form_row_button:hover
{background-color: @color-3;
transition: all 0.3s;}

.form_row_field + .form_row_button
{margin-left: @margin-2;}

i + .form_row_button
{margin-left: @margin-2;}

.form_row_warning
{width: 100%;
text-align: center;
box-sizing: border-box;
font-size: @font-size-small-1;}




/*Специальные инпуты*/
/*Select*/
.form_row_field_inputselect
{.form_row_field_input;
background-image: url(css_images/select_down_arrow.png);
background-position: 100% 50%;
background-repeat: no-repeat;
background-size: contain;
cursor: pointer;}

.form_row_field_inputselect:hover
{background-image: url(css_images/select_down_arrow_opaque.png);}



/*Checkbox*/
/* Cначала обозначаем стили для IE8 и более старых версий т.е. здесь мы немного облагораживаем стандартный чекбокс. */
.form_row_field_inputcheckbox
{vertical-align: top;
width: 17px;
height: 17px;
outline: none;}

/* Это для всех браузеров, кроме совсем старых, которые не поддерживают селекторы с плюсом. Показываем, что label кликабелен. */
.form_row_field_inputcheckbox + label
{cursor: pointer;
outline: none;}

/* Далее идет оформление чекбокса в современных браузерах, а также IE9 и выше.
Благодаря тому, что старые браузеры не поддерживают селекторы :not и :checked,
в них все нижеследующие стили не сработают. */

/* Прячем оригинальный чекбокс. */
.form_row_field_inputcheckbox:not(checked)
{position: absolute;
opacity: 0;
outline: none;}

.form_row_field_inputcheckbox:not(checked) + label
{position: relative; /* будем позиционировать псевдочекбокс относительно label */
padding: 0 0 0 60px;
outline: none;}/* оставляем слева от label место под псевдочекбокс */

/* Оформление первой части чекбокса в выключенном состоянии (фон). */
.form_row_field_inputcheckbox:not(checked) + label:before
{content: '';
position: absolute;
top: -2px;
left: 0;
width: 45px;
height: 22px;
border-radius: 13px;
background: #CDD1DA;
box-shadow: inset 0 2px 3px rgba(0,0,0,.2);
outline: none;}

/* Оформление второй части чекбокса в выключенном состоянии (переключатель). */
.form_row_field_inputcheckbox:not(checked) + label:after
{content: '';
position: absolute;
top: 0px;
left: 2px;
width: 18px;
height: 18px;
border-radius: 10px;
background: #FFF;
box-shadow: 0 2px 5px rgba(0,0,0,.3);
outline: none;
transition: all .2s;} /* анимация, чтобы чекбокс переключался плавно */

/* Меняем фон чекбокса, когда он включен. */
.form_row_field_inputcheckbox:checked + label:before
{background: #9FD468;}

/* Сдвигаем переключатель чекбокса, когда он включен. */
.form_row_field_inputcheckbox:checked + label:after
{left: 25px;}

/* Показываем получение фокуса. */
/*.form_row_field_inputcheckbox:focus + label:before
{box-shadow: 0 0 0 3px rgba(255,255,0,.5);}*/



/*Radio*/
.form_row_field_inputradio
{vertical-align: top;
width: 17px;
height: 17px;}

.form_row_field_inputradio + label
{cursor: pointer;}

.form_row_field_inputradio:not(checked)
{position: absolute;
opacity: 0;}

.form_row_field_inputradio:not(checked) + label
{position: relative;
padding: 0 0 0 35px;}

.form_row_field_inputradio:not(checked) + label:before
{content: '';
position: absolute;
top: -2px;
left: 0px;
width: 18px;
height: 18px;
border: 1px solid #CDD1DA;
border-radius: 50%;
background: #FFF;}

.form_row_field_inputradio:not(checked) + label:after
{content: '';
position: absolute;
top: 1px;
left: 3px;
width: 14px;
height: 14px;
border-radius: 50%;
background: #9FD468;
box-shadow: inset 0 1px 1px rgba(0,0,0,.5);
opacity: 0;
transition: all .2s;}

.form_row_field_inputradio:checked + label:after
{opacity: 1;}



/*Rnage*/
.form_row_field_inputrange
{border: 0;
background: none;
font-size: @font-size-normal;
text-align: center;
width: 100%;
outline: none;}

.form_row_field_inputrange_amount
{.font-family-main;
text-align: center;
width: 100%;}

.slider-range .ui-widget-header
{background: @color-2;}

.slider-range
{margin: 0px 10px 0px 10px;}

.ui-state-default, .ui-widget-content .ui-state-default
{outline: none;
border: none;}

.ui-state-hover, .ui-widget-content .ui-state-hover
{outline: none;
border: none;}

.ui-state-focus, .ui-widget-content .ui-state-focus
{outline: none;
border: none;}

.ui-state-active, .ui-widget-content .ui-state-active
{outline: none;
border: none;
background: #d67373;}

.ui-widget-content
{outline: none;
border: none;
background: rgb(107,107,107);}

.ui-slider .ui-slider-handle
{width: 1.1em;
height: 1.1em;}

.ui-slider-horizontal .ui-slider-handle
{top: -.2em;}



/*File*/
.form_row_field_inputfile
{opacity: 0;
position: absolute;
width: 0px;
height: 0px;
padding: 0px;
margin: 0px;
border: none;}

.form_row_field_inputfilelabel
{.form_row_field_input;
overflow: hidden;
cursor: pointer;
color: @color-1-opaque;}

.form_row_field_inputfilelabel:hover
{background: @color-3;
border: solid @color-3 1px;
color: white;}

.form_row_field_inputfilelabelloaded
{color: @color-1;}

.form_row_field_inputfilelabelloaded:hover
{background: @color-3;
color: white;}

.form_row_field_inputimagelabel
{.form_row_field_input;
.justify-center;
.align-items-center;
min-height: 40vh;
overflow: hidden;
cursor: pointer;
color: @color-1-opaque;
.background-contain-center;}

.form_row_field_inputimagelabel:hover
{background-color: @color-3;
border: solid @color-3 1px;
color: white;}

.form_row_field_inputimagelabelloaded
{color: @color-1;}

.form_row_field_inputimagelabelloaded:hover
{background-color: @color-background;
color: white;}

.form_row_field_inputimagelabel svg
{height: 2em;}



/*Выпадающий список*/
.form_row_field_list
{box-sizing: border-box;
border: @border-solid;
.font-family-main;
font-size: @font-size-normal;
border-radius: 0px;
text-overflow: ellipsis;
max-height:30vh;
overflow-y:auto;
display:none;
position: absolute;
top: 29px;
color: @color-1;
outline: none;
background-color: white;
width: 100%;}

.form_row_field_list li
{list-style: none;
padding: @margin-1 @margin-2;
margin: 0px;
color: @color-1;
cursor: pointer;
white-space: normal;}

.form_row_field_list li:hover
{background-color: @hover-color;}

.form_row_field_list_textsearched
{color: @color-2;}



/*Особенности специальных форм*/
.formsearch
{margin: 0px @margin-3;}

.formsearch .form_row_button
{.button;
background-color: @color-3;
border: solid @color-3 1px;
padding: @margin-1 0px;
margin-left: -35px;
width: 35px;
z-index: 2;
background: none;
border: solid 1px rgba(0,0,0,0);}

.formsearch_icon
{position: absolute;
z-index: 1;
right: 10px;
color: @color-1;}

.formsearch .form_row_button:hover
{transition: all 0.3s;}

.formsearch  .form_row_field_list li
{white-space: nowrap;}

#search_result
{z-index: 6;}

.fieldsize25
{width: calc(~'25% - 15px');
flex-grow: 0;
margin-right: @margin-3;}
.fieldsize25:nth-of-type(4n+4){margin-right: 0px;}
.fieldsize25:nth-of-type(n+5){margin-top: @margin-3;}

.fieldsize33
{width: calc(~'33.3333% - 14px');
flex-grow: 0;
margin-right: @margin-3;}
.fieldsize33:nth-of-type(4n+4){margin-right: @margin-3;}
.fieldsize33:nth-of-type(3n+3){margin-right: 0px;}
.fieldsize33:nth-of-type(n+4){margin-top: @margin-3;}

.fieldsize50
{width: calc(~'50% - 10px');
flex-grow: 0;
margin-right: @margin-3;}
.fieldsize50:nth-of-type(4n+4){margin-right: @margin-3;}
.fieldsize50:nth-of-type(3n+3){margin-right: @margin-3;}
.fieldsize50:nth-of-type(2n+2){margin-right: 0px;}
.fieldsize50:nth-of-type(n+3){margin-top: @margin-3;}



/*Daterangepicker*/
.daterangepicker .applyBtn
{background-color: @color-2;
border-radius: 5px;
cursor: pointer;}

.daterangepicker .applyBtn:hover
{background-color: @color-3;
color: white;}

.daterangepicker .cancelBtn
{background-color: @color-1-light;
border-radius: 5px;
cursor: pointer;}

.daterangepicker .cancelBtn:hover
{background-color: @color-3;
color: white;}



@media all and (max-width: 800px)
{
.fieldsize50{width: 100%;}
.fieldsize50:nth-of-type(n+2){margin-top: @margin-3;}
.fieldsize25{width: calc(~'50% - 10px'); margin-right: @margin-3;}
.fieldsize25:nth-of-type(2n+2){margin-right: 0px;}
.fieldsize25:nth-of-type(n+3){margin-top: @margin-3;}
}

@media all and (max-width: 768px)
{
.formsearch i{display: block;}
.formsearch .form_row_button{color: transparent; width: 25px; height: 25px; padding: 0px; color: transparent; background: none; border: none; margin-left: -30px; z-index: 5;}
.formsearch .form_row_field_input{padding-right: 30px;}
}

@media all and (max-width: 600px)
{
.fieldsize50{width: 100%;}
.fieldsize33{width: 100%;}
.fieldsize33:nth-of-type(n+2){margin-top: @margin-3;}
.fieldsize25{width: 100%;}
.fieldsize25:nth-of-type(n+2){margin-top: @margin-3;}
}






/*Footer*/
.footer
{.div-flex;
.direction-column;
.align-items-center;
width: 100%;
margin-top: @margin-6;
padding: 0px @margin-3;}

.footer_data
{width: 100%;
max-width: @site-width;
padding: @margin-4 0px @margin-4 0px;
box-sizing: border-box;
border-top: @border-solid;
.div-flex;
.direction-row;
.flex-wrap;
.flex-shrink-0;}

.footer_data_chapter
{width: 33.3333%;
box-sizing: border-box;
.div-flex;
.direction-column;
.flex-shrink-0;}

.footer_data_chapter1
{.footer_data_chapter;
padding: 0px @margin-3 0px 0px;
width: 30%;}

.footer_data_chapter2
{.footer_data_chapter;
padding: 0px @margin-3;
width: 30%;}

.footer_data_chapter3
{.footer_data_chapter;
padding-left: 0px 0px 0px @margin-3;
width: 40%;}

.footer_data_chapter_logo
{width: 240px;
height: 70px;
.background-contain-center;
cursor: pointer;
display: block;
margin-bottom: @margin-3;}

.footer_data_chapter_header
{.font-family-sub;
font-size: @font-size-large-3;
margin-bottom: @margin-4;}

.footer_data_chapter_info
{.div-flex;
margin: 0px 0px @margin-3 0px;}

.footer_data_chapter_items
{.div-flex;
.direction-column;
.align-items-start;}

.footer_data_chapter_items_item
{.div-flex;
.direction-column;}

.footer_data_chapter_items_item + .footer_data_chapter_items_item
{margin: @margin-3 0px 0px 0px;}

a.footer_data_chapter_items_item:hover
{color: @color-3;}

.footer_data_chapter_items_item_title
{margin: 0px 0px @margin-1 0px;
color: @color-1-light;}

.footer_data_chapter_items_item_info
{.font-family-mainbold;}

a.footer_data_chapter_items_item_info:hover
{color: @color-2;}

.footer_data_chapter_socials
{.div-flex;
.flex-wrap;}

.footer_data_chapter_socials_social
{.div-flex;
.justify-center;
.align-items-center;
.flex-shrink-0;
width: 30px;
height: 30px;
line-height: 30px;
background-color: @color-1;
text-align: center;
vertical-align: middle;
margin: 0px @margin-2 @margin-2 0px;}

a.footer_data_chapter_socials_social:hover
{background-color: @color-2;}

.footer_data_chapter_socials_social:last-of-type
{margin-left: 0px;}

.footer_data_chapter_socials_social_i
{font-size: 20px;
line-height: 30px;
color: white;
display: block;
padding: 5px;}

.footer_span
{text-decoration: underline;
cursor: pointer;}

.footer_span:hover
{color: rgba(255,255,255,1);}

.footer_authors
{width: 100%;
max-width: @site-width;
text-align: center;
padding: @margin-2 @margin-3 @margin-2 @margin-3;
box-sizing: border-box;
.div-flex;
.justify-center;
border-top: @border-light;}

.footer_authors_link
{cursor: pointer;
display: block;
width: 120px;
height: 30px;
background-image: url(css_images/logo/webion.svg);
.background-contain-center;}

@media all and (max-width: 1024px)
{
.footer_data_chapter1{width: 35%;}
.footer_data_chapter2{width: 65%; padding: 0px 0px 0px @margin-3;}
.footer_data_chapter3{width: 100%; padding: @margin-5 0px 0px 0px;}
.footer_data_chapter_items{.direction-row;}
.footer_data_chapter_header{margin-bottom: @margin-3;}
.footer_data_chapter_items_item + .footer_data_chapter_items_item{margin: 0px 0px 0px @margin-4;}
}

@media all and (max-width: 768px)
{
.footer{margin-top: @margin-5;}
.footer_data_chapter1{width: 100%; padding: 0px 0px @margin-5 0px;}
.footer_data_chapter2{width: 100%; padding: 0px 0px @margin-5 0px;}
.footer_data_chapter3{width: 100%; padding: 0px;}
.footer_data_chapter_items_item + .footer_data_chapter_items_item{margin: 0px 0px 0px @margin-3;}
}

@media all and (max-width: 768px)
{
.footer_data_chapter_items{.direction-column;}
.footer_data_chapter_items_item + .footer_data_chapter_items_item{margin: @margin-3 0px 0px 0px;}
}






/*Search*/
.searchrequest
{margin-bottom: @margin-4;
.font-family-subbold;
font-size: @font-size-large-2;}

.searchrequest_span
{color: @color-2;}

.searchresults
{width: 100%;
max-width: @read-width;
.div-flex;
.justify-start;
.flex-wrap;
margin-bottom: @margin-5;}

.searchresults_chapter
{.font-family-subbold;
font-size: @font-size-large-2;
margin-bottom: @margin-4;}

.searchresults_item
{width: 100%;
.div-flex;
.flex-shrink-0;
.justify-start;
.align-items-start;}

.searchresults_item:hover
{background: @hover-color;}

.searchresults_item + .headerlined
{margin-top: @margin-5;}

.searchresults_item + .searchresults_item
{margin-top: @margin-4;}

.searchresults_item + .searchresults_chapter
{margin-top: @margin-5;}

.searchresults_item_image
{width: 80px;
height: 80px;
margin-top: 4px;
.background-cover-center;
.flex-shrink-0;}

.searchresults_item_data
{.div-flex;
.direction-column;}

.searchresults_item_image + .searchresults_item_data
{margin-left: @margin-2;}

.searchresults_item_data_title
{.font-family-mainbold;}

.searchresults_item_data_text
{word-break: break-word;}

.searchresults_item_data_title + .searchresults_item_data_text
{margin-top: @margin-2;}

.searchresults_item_data_textsearched
{color: @color-2;}

@media all and (max-width: 768px)
{
.searchresults_chapter{margin-bottom: @margin-3;}
}






.articles
{width: 100%;
box-sizing: border-box;
.div-flex;
.direction-column;}

.articles + .button
{margin-top: @margin-4;}

.articles_item
{width: 100%;
box-sizing: border-box;
.div-flex;
.justify-space-between;}

.articles_item + .articles_item
{margin-top: @margin-4;
border-top: @border-solid;
padding-top: @margin-4;}

.articles_item:last-of-type
{border-bottom: @border-solid;
padding-bottom: @margin-4;}

.articles_item_date
{font-size: @font-size-large-3;
color: @color-1-light;
.font-family-sub;
width: 15%;
padding: 0px @margin-3 0px 0px;
.flex-shrink-0;
.div-flex;
.align-items-start;
.justify-start;}

.articles_item_image
{width: 15%;
padding: 7px @margin-3 0px 0px;
.flex-shrink-0;
.div-flex;
.align-items-start;
.justify-start;}

.articles_item_image_container
{width: 100%;
padding-bottom: 65%;
position: relative;}

.articles_item_image_container_img
{position: absolute;
width: 100%;
height: 100%;
object-fit: cover;}

.articles_item_title
{font-size: @font-size-large-3;
.font-family-sub;
padding: 0px @margin-3 0px 0px;
width: 30%;
.flex-shrink-0;
.div-flex;
.align-items-start;
.justify-start;}

.subdivisions .articles_item_title
{width: 40%; padding: 0px;}

.articles_item_title:hover
{color: @color-2;}

.articles_item_image:hover + .articles_item_title
{color: @color-2;}

.articles_item_text
{color: @color-1-light;
width: 35%;
padding: 0px @margin-3 0px 0px;
.flex-shrink-0;
.div-flex;
.align-items-start;
.justify-start;}

.subdivisions .articles_item_text
{width: 55%;}

.articles_item_arrow
{width: 5%;
.flex-shrink-0;
.div-flex;
.align-items-start;
.justify-end;
padding: 7px 0px 0px 0px;}

.articles_item_arrow a:hover
{color: @color-2;}

.articles_item_arrow_i
{font-size: 180%;}

@media all and (max-width: 1024px)
{
.articles_item{.flex-wrap;}
.articles_item_date{width: 100%; padding: 0px 0px @margin-3 0px;}
.articles_item_image{width: 20%;}
.articles_item_title{width: 35%;}
.articles_item + .articles_item{margin-top: @margin-3; padding-top: @margin-3;}
.articles_item:last-of-type{padding-bottom: @margin-3;}
}

@media all and (max-width: 768px)
{
.articles_item_date{font-size: @font-size-large-2;}
.articles_item_image{width: 50%; padding: 0px 0px @margin-3 0px;}
.articles_item_title{width: 100%; padding: 0px 0px @margin-2 0px; font-size: @font-size-large-2;}
.articles_item_text{width: 90%;}
.articles_item_arrow{width: 10%; font-size: 60%; padding: 0px; margin: 5px 0px -5px 0px;}
}

@media all and (max-width: 500px)
{
.articles_item_image{width: 100%;}
}






.subdivisionstext
{}

.subdivisionstext:first-child
{margin-top: @margin-6;}

.subdivisionstext + .articles .articles_item:first-of-type
{margin-top: @margin-4;
border-top: @border-solid;
padding-top: @margin-3;}

.articles + .subdivisionstext
{margin-top: @margin-4;}

.subdivisionssmall .articles_item_title
{width: 95%;}

.subdivisionssmall .articles_item + .articles_item
{margin-top: @margin-3;
padding-top: @margin-3;}

.subdivisionssmall .articles_item:last-of-type
{padding-bottom: @margin-3;}

.article_head + .subdivisionssmall
{padding-top: @margin-3;}

@media all and (max-width: 1440px)
{
.subdivisionstext:first-child{margin-top: @margin-4;}
}

@media all and (max-width: 1024px)
{
.subdivisionstext:first-child{margin-top: @margin-3;}
.subdivisionstext + .articles .articles_item:first-of-type{margin-top: @margin-3; padding-top: @margin-3;}
.articles + .subdivisionstext{margin-top: @margin-3;}
}

@media all and (max-width: 1024px)
{
.subdivisionssmall .articles_item_title{width: 90%;}
}

@media all and (max-width: 768px)
{
.subdivisionstext + .articles .articles_item:first-of-type{margin-top: @margin-2; padding-top: @margin-2;}
.subdivisionssmall .articles_item + .articles_item{margin-top: @margin-2; padding-top: @margin-2;}
.article_head + .subdivisionssmall{padding-top: @margin-2;}
.subdivisionssmall .articles_item:last-of-type{padding-bottom: @margin-2;}
}






.partners
{width: 100%;}

.partners_item
{.div-flex;
.direction-column;
.align-items-center;}

.partners_item_image
{width: 150px;
height: 150px;
.background-contain-center;
margin-bottom: @margin-2;}

.partners_item_title
{.font-family-mainbold;
text-align: center;}






.iframecontainer
{width: 100%;
padding-bottom: 60%;
position: relative;
margin-top: @margin-3;}

iframe
{width: 100%;
height: 100%;
position: absolute;}






.article
{width: 100%;
max-width: @read-width;
box-sizing: border-box;
.div-flex;
.direction-column;}

.article_head
{width: 100%;
box-sizing: border-box;
.div-flex;
.direction-column;
margin-bottom: @margin-3;}

.article_head + .subdivisions
{padding-top: @margin-4;
border-top: @border-solid;}

.article_head_title
{width: 100%;
margin: @margin-5 0px @margin-3 0px;
font-size: @font-size-large-5;
.font-family-sub;
text-align: center;}

.article_head_titlebreadcrumbed
{margin-top: 0px;}

.article_head_image
{width: 100%;
box-sizing: border-box;
.flex-shrink-0;
.div-flex;
.direction-column;}

.article_head_image_container
{width: 100%;
padding-bottom: 60%;
position: relative;}

.article_head_image_container_img
{width: 100%;
height: 100%;
object-fit:contain;
position: absolute;}

.article_head_content
{width: 100%;
box-sizing: border-box;
padding: @margin-3 0px;
border-bottom: @border-solid;
margin: 0px 0px @margin-3 0px;
.flex-shrink-0;
.div-flex;
.justify-center;
.align-items-center;}

.article_head_content_date
{color: @color-1-light;
margin-right: @margin-3;
.font-family-sub;
font-size: @font-size-large-1;}

.article_text
{color: @color-1-light;}

.article_body
{word-break: break-word;}

.article_body strong
{.font-family-mainbold;}

.article_body h1
{.font-family-mainbold;
font-size: @font-size-large-2;
margin-bottom: 1em;}

.article_body h2
{.h2;}

.article_body h3
{.font-family-mainbold;
margin-bottom: 0.5em;}

.article_body h4
{color: @color-1-light;
margin-bottom: 1em;
opacity: 0.5;
text-align: center;}

.article_body ul
{list-style: disc inside;}

.article_body ol
{list-style: decimal inside;}

.article_body li + li
{margin-top: 1em;}

.article_body p + p
{margin-top: 1em;}

.article_body p + table
{margin-top: 1em;}

.article_body table + p
{margin-top: 1em;}

.article_body p + ul
{margin-top: 1em;}

.article_body p + ol
{margin-top: 1em;}

.article_body ol + p
{margin-top: 1em;}

.article_body ul + p
{margin-top: 1em;}

.article_body ul + ol
{margin-top: 1em;}

.article_body ol + ul
{margin-top: 1em;}

.article_body p + h1
{margin-top: 2em;}

.article_body p + h2
{margin-top: @margin-5;}

.article_body p + h3
{margin-top: 1em;}

.article_body ul + h1
{margin-top: 2em;}

.article_body ul + h2
{margin-top: 2em;}

.article_body ul + h3
{margin-top: 1em;}

.article_body ol + h1
{margin-top: 2em;}

.article_body ol + h2
{margin-top: 2em;}

.article_body ol + h3
{margin-top: 1em;}

.article_body em
{font-style: italic;}

.article_body img
{max-width: 100%;
height: initial;
max-height: 70vh;
object-fit: contain;
.div-flex;
margin: auto;}

.article_body table
{border: @border-solid;}

.article_body table td
{border: @border-solid;}

.article_body table td
{padding: @margin-2;}

.article_body a
{color: @color-2;}

.article_body a:hover
{opacity: 0.5;}

@media all and (max-width: 1440px)
{
.article_head_title{font-size: @font-size-large-45;}
.article_body h2{font-size: @font-size-large-3;}
}

@media all and (max-width: 768px)
{
.article_head_title{font-size: @font-size-large-4; margin: @margin-4 0px @margin-3 0px;}
.article_head{margin-bottom: 0px;}
}

@media all and (max-width: 500px)
{
.article_head_title{font-size: @font-size-large-35;}
}






.articlesarchive
{width: 100%;
box-sizing: border-box;
.div-flex;
.direction-row;
.flex-wrap;
margin: @margin-6 0px @margin-4 0px;
border-bottom: @border-solid;
padding-bottom: @margin-3;}

.articlesarchive_year
{width: 150px;
.flex-shrink-0;
box-sizing: border-box;
.div-flex;
.direction-column;
margin: 0px @margin-4 @margin-3 0px;}

.articlesarchive_year_title
{width: 100%;
box-sizing: border-box;
position: relative;
.div-flex;}

.articlesarchive_year_title_textlabel
{font-size: @font-size-large-1;}

.articlesarchive_year_title_text
{font-size: @font-size-large-1;
.font-family-mainbold;}

.articlesarchive_year_title_text:hover
{opacity: 0.5;}

.articlesarchive_year_title_arrow
{font-size: 16px;
cursor: pointer;
margin: 5px 0px 0px @margin-3;}

.articlesarchive_year_title_arrow:hover
{opacity: 0.5;}

.articlesarchive_year_month
{width: 100%;
box-sizing: border-box;
.div-flex;
.direction-column;
display: none;}

.articlesarchive_year_month_title
{width: 100%;
box-sizing: border-box;
padding-left: @margin-3;
position: relative;
.div-flex;}

.articlesarchive_year_month_title_text
{font-size: @font-size-normal;
.font-family-mainbold;}

.articlesarchive_year_month_title_text:hover
{opacity: 0.5;}

.articlesarchive_year_month_title_arrow
{font-size: 16px;
cursor: pointer;
margin: 5px 0px 0px @margin-3;}

.articlesarchive_year_month_title_arrow:hover
{opacity: 0.5;}

.articlesarchive_year_month_date
{width: 100%;
box-sizing: border-box;
.div-flex;
.direction-column;}

.articlesarchive_year_month_date_title
{width: 100%;
box-sizing: border-box;
padding-left: @margin-4;
font-size: @font-size-normal;
.font-family-main;}

.articlesarchive_year_month_date_title:hover
{opacity: 0.5;}

.archivethis
{color: @color-2;}

@media all and (max-width: 1440px)
{
.articlesarchive{margin-top: @margin-4;}
}

@media all and (max-width: 1024px)
{
.articlesarchive{margin-top: @margin-3;}
}

@media all and (max-width: 1024px)
{
.articlesarchive_year{width: 140px; margin: 0px @margin-3 @margin-3 0px;}
}







.ourprinciples
{width: 100%;
.div-flex;
.flex-wrap;}

.ourprinciples_item
{.div-flex;
.align-items-center;
width: 33.3333%;
padding-right: @margin-4;}

.ourprinciples_item_icon
{width: 65px;
height: 65px;
.flex-shrink-0;
.background-contain-center;
margin: 0px @margin-3 0px 0px;}

.ourprinciples_item_title
{font-size: @font-size-large-25;
.font-family-sub;
color: @color-1-light;
text-align: left;}

@media all and (max-width: 1024px)
{
.ourprinciples_item{.direction-column;}
.ourprinciples_item_icon{margin: 0px @margin-2 0px 0px;}
.ourprinciples_item_title{text-align: center;}
}

@media all and (max-width: 768px)
{
.ourprinciples_item_title{font-size: @font-size-large-2;}
}

@media all and (max-width: 500px)
{
.ourprinciples_item{width: 100%; padding-right: 0px;}
.ourprinciples_item + .ourprinciples_item{margin-top: @margin-4;}
}






.directionsofactivity
{width: 100%;
.div-flex;}

.directionsofactivity_content
{width: 40%;
font-size: @font-size-large-25;
.font-family-sub;
color: @color-1-light;
padding: 0px @margin-4 0px 0px;}

.directionsofactivity_content li
{background: url(../../template/css/css_images/arrow_red.svg) no-repeat left 2px;
padding: 0px 0px 0px 50px;
list-style: none;
margin: 0;
background-position: 0% -2px;}

.directionsofactivity_content li + li
{margin-top: 1em;}

.directionsofactivity_images
{width: 60%;
.div-flex;
.justify-space-between;}

.directionsofactivity_images_image
{height: 100%;
position: relative;}

.directionsofactivity_images_image:nth-of-type(1)
{width: calc(~'40% - 10px');}

.directionsofactivity_images_image:nth-of-type(2)
{width: calc(~'60% - 10px');}

.directionsofactivity_images_image_img
{width: 100%;
height: 100%;
position: absolute;
object-fit: cover;}

@media all and (max-width: 1024px)
{
.directionsofactivity{.direction-column;}
.directionsofactivity_content{width: 100%; padding: 0px 0px @margin-4 0px;}
.directionsofactivity_images{width: 100%;}
.directionsofactivity_images_image{height: 0px; padding-bottom: 30%;}
}

@media all and (max-width: 1024px)
{
.directionsofactivity_content{font-size: @font-size-large-2;}
.directionsofactivity_content li{background-position: 0% 1px; background-size: 20px;}
}






.paging
{width: 100%;
.div-flex;
.flex-wrap;
.justify-center;
margin-top: @margin-3;}

.paging_item
{width: 30px;
height: 30px;
line-height: 30px;
border-radius: 30px;
.font-family-mainbold;
color: white;
background-color: @color-1;
border: solid 1px @color-1;
text-align: center;
margin: @margin-3 @margin-3 0px @margin-3;}

a.paging_item:hover
{color: @color-1;
background-color: white;}

.paging_itemthis
{background-color: @color-2;
border: solid 1px @color-2;}

@media all and (max-width: 1024px)
{
.paging_item{margin: @margin-3 @margin-2 0px @margin-2;}
}






.othernews
{.div-flex;
.flex-wrap;
.justify-start;
width: 100%;
box-sizing: border-box;}

.othernews_item
{width: calc(~'33.33333% - 27px');
box-sizing: border-box;
margin-right: @margin-4;
.div-flex;
.direction-column;
.justify-space-between;}

.othernews_item:nth-of-type(3n+3)
{margin-right: 0px;}

.othernews_item:nth-of-type(n+4)
{margin-top: @margin-4;}

.othernews_item_head
{width: 100%;
.div-flex;
.direction-column;}

.othernews_item_head_imagetitle
{width: 100%;
.div-flex;}

.othernews_item_head_imagetitle_image
{width: 45%;
padding: 0px @margin-3 0px 0px;
.flex-shrink-0;
.div-flex;
.align-items-start;
.justify-start;}

.othernews_item_head_imagetitle_image_container
{width: 100%;
padding-bottom: 65%;
position: relative;}

.othernews_item_head_imagetitle_image_container_img
{position: absolute;
width: 100%;
height: 100%;
object-fit: cover;}

.othernews_item_head_imagetitle_title
{font-size: @font-size-large-25;
.font-family-sub;
padding: 0px @margin-3 0px 0px;
width: 55%;
.flex-shrink-0;
.div-flex;
.align-items-start;
.justify-start;}

.othernews_item_head_imagetitle:hover .othernews_item_head_imagetitle_title
{color: @color-2;}

.othernews_item_head_text
{color: @color-1-light;
width: 100%;
margin: @margin-3 0px;
.flex-shrink-0;
.div-flex;
.align-items-start;
.justify-start;}

.othernews_item_footer
{width: 100%;
.div-flex;
.justify-space-between;}

.othernews_item_footer_date
{font-size: @font-size-large-1;
color: @color-1-light;
.font-family-sub;
margin-right: @margin-3;}

.othernews_item_footer_stats
{.div-flex;
.justify-space-between;}

@media all and (max-width: 1024px)
{
    .othernews_item{width: calc(~'50% - 20px'); margin-right: @margin-4;}
    .othernews_item:nth-of-type(3n+3){margin-right: @margin-4;}
    .othernews_item:nth-of-type(2n+2){margin-right: 0px;}
    .othernews_item:nth-of-type(n+3){margin-top: @margin-4;}
    .othernews_item:nth-of-type(3){display: none;}
}

@media all and (max-width: 768px)
{
    .othernews_item_head_imagetitle{.direction-column;}
    .othernews_item_head_imagetitle_image{width: 100%; padding: 0px 0px @margin-3 0px;}
    .othernews_item_head_imagetitle_title{width: 100%;}
}

@media all and (max-width: 500px)
{
    .othernews_item{width: calc(~'100% - 0px'); margin-right: 0px;}
    .othernews_item:nth-of-type(3n+3){margin-right: 0px;}
    .othernews_item:nth-of-type(2n+2){margin-right: 0px;}
    .othernews_item:nth-of-type(1n+1){margin-right: 0px;}
    .othernews_item:nth-of-type(n+2){margin-top: @margin-4;}
}






.newsprevnext
{width: 100%;
.div-flex;
.justify-space-between;
margin-top: @margin-4;
border-top: @border-solid;
padding-top: @margin-3;}

.newsprevnext_prev
{.div-flex;
.direction-column;
.align-items-start;
width: 40%;
max-width: 450px;}

.newsprevnext_prev:hover
{color: @color-2;}

.newsprevnext_prev_title
{font-size: @font-size-large-25;
.font-family-sub;
text-align: left;}

.newsprevnext_next
{.div-flex;
.direction-column;
.align-items-end;
width: 40%;
max-width: 450px;}

.newsprevnext_next:hover
{color: @color-2;}

.newsprevnext_next_title
{font-size: @font-size-large-25;
.font-family-sub;
text-align: right;}

.newsprevnext_item_label
{.div-flex;
margin-bottom: @margin-1;}

.newsprevnext_item_label_title
{}

.newsprevnext_item_label_arrow
{}

.newsprevnext_item_label_title + .newsprevnext_item_label_arrow
{margin-left: @margin-3;}

.newsprevnext_item_label_arrow + .newsprevnext_item_label_title
{margin-left: @margin-3;}

@media all and (max-width: 768px)
{
.newsprevnext_prev{width: 45%;}
.newsprevnext_next{width: 45%;}
.newsprevnext_prev_title{font-size: @font-size-large-2;}
.newsprevnext_next_title{font-size: @font-size-large-2;}
}

@media all and (max-width: 500px)
{
.newsprevnext_prev_title{font-size: @font-size-large-1;}
.newsprevnext_next_title{font-size: @font-size-large-1;}
.newsprevnext_prev .newsprevnext_item_label{.direction-column;}
.newsprevnext_next .newsprevnext_item_label{.direction-column-reverse; .align-items-end;}
.newsprevnext_next .newsprevnext_item_label_title{text-align: right;}
.newsprevnext_item_label_title + .newsprevnext_item_label_arrow{margin-left: 0px;}
.newsprevnext_item_label_arrow + .newsprevnext_item_label_title{margin-left: 0px;}
.newsprevnext{margin-top: @margin-3;}
}






.shareblock
{width: 100%;
.div-flex;
.direction-column;
.align-items-center;}

.shareblock_icons
{.div-flex;
color: white;}

.shareblock_icons_item + .shareblock_icons_item
{margin-left: @margin-2;}






.filescontainer
{.div-flex;
.flex-wrap;
.justify-start;
width: 100%;
box-sizing: border-box;
margin-top: @margin-4;}

.filescontainer_item
{width: calc(~'33.33333% - 27px');
box-sizing: border-box;
margin-right: @margin-4;
.div-flex;
.direction-column;}

.filescontainer_item_image
{width: 100;
padding-bottom: 100%;
position: relative;
margin-bottom: @margin-2;}

.filescontainer_item_image img
{width: 100%;
height: 100%;
object-fit: contain;
position: absolute;
.div-flex;;}

.filescontainer_item_title
{text-align: center;
.font-family-mainbold;}

.filescontainer_item:hover .filescontainer_item_title
{color: @color-2;}

.filescontainer_item:nth-of-type(3n+3)
{margin-right: 0px;}

.filescontainer_item:nth-of-type(n+4)
{margin-top: @margin-4;}

@media all and (max-width: 1024px)
{
    .filescontainer_item{width: calc(~'50% - 20px'); margin-right: @margin-4;}
    .filescontainer_item:nth-of-type(3n+3){margin-right: @margin-4;}
    .filescontainer_item:nth-of-type(2n+2){margin-right: 0px;}
    .filescontainer_item:nth-of-type(n+3){margin-top: @margin-4;}
}

@media all and (max-width: 768px)
{
    .filescontainer_item{width: calc(~'100% - 0px'); margin-right: 0px;}
    .filescontainer_item:nth-of-type(3n+3){margin-right: 0px;}
    .filescontainer_item:nth-of-type(2n+2){margin-right: 0px;}
    .filescontainer_item:nth-of-type(1n+1){margin-right: 0px;}
    .filescontainer_item:nth-of-type(n+2){margin-top: @margin-4;}
}
