* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
    transition: 0.3s;
    text-decoration: none;
    color: #226b34;
}

a:hover {
   text-decoration: underline;
}
:root {
    --item-width: 1170px;
}

::placeholder {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	line-height: 28px;
}

h1 {
    display: block;
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: 1em;
    color: rgb(34, 107, 52);
    padding-bottom: 1em;
    width: 100%;
    text-align: center;
}

p { 
    margin: 15px 0;
    width: 100%;
}

ul {
    list-style-position: inside;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

html {
	scroll-behavior: smooth;
    scroll-padding-top: 125px;
}
body {
	font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(34,107,52,0.85);
    height: 8em;
    padding: 2.3em 0;
    position: relative;
}

.menu__icon {display: none;}

.header a, .site-footer a {color: #fff}

.main {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: var(--item-width);
}
.header .main {
    flex-direction: row;
    align-items: center;
}

header.header.scroll {
    position: fixed;
    width: 100%;
    height: 70px;
    z-index: 20;
}

.spath {
    position: absolute;
    bottom: 6px;
    color: #fff;
}
header.header.scroll .spath {display: none;}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    border-bottom: 1px solid #FFF;
    border-top: 1px solid #FFF;
    border-radius: 9%;
    padding: 5px 0;
}

.img_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
}

.img_logo img {
	width: 100%;
}

.logo .text_logo {
	font-size: 24px;
	margin: 0px 0px 0px 10px;
	color: #fff;
	text-decoration: none;

}

ul.menu-list {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

li.menu-link {
    list-style: none;
    border-bottom: 1px solid #FFF;
    border-top: 1px solid #FFF;
    border-radius: 16%;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

li.menu-link:first-child {
    padding-right: 20px;
}
li.menu-link a {
    padding: 20px 15px;
}
li.menu-link:hover {
	color: #fff;
    background: rgba(57, 116, 75, 0.49);
    border-color: inherit;
    text-decoration: none !important;
}
ul.menu-list_2 {
    position: absolute;
    top: 70px;
    height: 270px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(34,107,52,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
    width: max-content;
    z-index: 10;
}

body._pc li.menu-link:hover ul.menu-list_2 {
    pointer-events: all;
    opacity: 1;
    top: 60px;
}

body._touch li.menu-link:hover ul.menu-list_2._active {
    pointer-events: all;
    opacity: 1;
    top: 60px;
}

li.menu-link_2 {
    list-style: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

li.menu-link_2 a {
    border-bottom: 1px solid #FFF;
    border-top: 1px solid #FFF;
    border-radius: 13%;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
}

li.menu-link_2 a:hover {
	color: #fff;
    background: rgba(57, 116, 75, 0.49);
}

li.menu-link:first-child .arrow {
    width: 30px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: 0.3s;
}

body._pc li.menu-link:hover .arrow {
    transform: rotateX(180deg);
}

body._touch ul.menu-list_2._active ~ .arrow {
    transform: rotate(180deg);
}

li.menu-link:first-child .arrow:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    color: #fff;
}

section.content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxes_news {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1%;
    width: 100%;
    margin: 40px 0;
    grid-auto-rows: 0.8fr;
}

.box_news {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box_news a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}
.box_news img {transform: scale(0.8); transition: 0.3s; height: 125%;}
.box_news:hover img {transform: scale(1.2);}

.date_new {
    position: absolute;
    top: 0;
    transition: all 0.25s ease-in-out;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: rgb(34,107,52);
    opacity: 0.8;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: #FFF;
    text-align: center;
    font-weight: 300;
    transition: 0.3s;
    z-index: 1;
    margin: 0px;
}

.title_new {
    position: absolute;
    bottom: 0;
    transition: all 0.25s ease-in-out;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em;
    font-size: 20px;
    color: #226b34;
    text-align: center;
    font-weight: 300;
    transition: 0.3s;
    margin: 0px;
}

.box_news:hover .title_new {bottom: 20px;}

#pages a {
    color: #226b34;
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 15px;
    border: 1px solid #DDD;    
}

#pages a:hover {
    text-decoration: none !important;
    background: #EEE;
}

#pages a.curpage {
    color: #FFF;
    background: #226b34;
}

#pages {margin: 10px 0;}



.content .main {
    background: #fcfdfd;
    padding: 0 10px;
    display: block;
}



.site-footer {
    background-color: #226b34;
    background: #226b34;
    background: -moz-linear-gradient(-45deg,#226b34 0%,#cc2344 100%);
    background: -webkit-gradient(linear,left top,right bottom,color-stop(0%,#226b34),color-stop(100%,#cc2344));
    background: -webkit-linear-gradient(-45deg,#226b34 0%,#cc2344 100%);
    background: -o-linear-gradient(-45deg,#226b34 0%,#cc2344 100%);
    background: -ms-linear-gradient(-45deg,#226b34 0%,#cc2344 100%);
    background: linear-gradient(45deg,#226b34 0%,#cc2344 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#226b34,endColorstr=#cc2344,GradientType=1);
    padding-top: 2em;
    padding-bottom: 2em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.site-footer .main {
 align-items: center;
}

.site-footer .social {
    text-align: center;
    color: #FFFFFF;
    margin-top: 90px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.site-footer .social a {
    border: 1px solid #ffffff;
    color: #FFF;
}

.site-footer .social a:hover {
    opacity: 1;
    background: #fff;
    color: #cc2344;
}

.site-footer .social a:hover .fa-vk svg,
.site-footer .social a:hover .fa-odnoklassniki svg,
.site-footer .social a:hover .fa-facebook svg
{
	fill: #cc2344;
}

.site-footer .social a {
    margin: 0 4px;
    padding: 7px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 6px;
    display: inline-block;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    width: 40px;
    height: 40px;
    opacity: 1;
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul.list_footer {
    display: flex;
    list-style: none;
    letter-spacing: 0.2px;
    margin: 30px 0 40px 0;
    padding-top: 20px;
    border-top: 1px solid #555;
    border-color: rgba(255, 255, 255, 0.15);
    width: 100%;
    justify-content: center;
}

li.link_footer {
    padding: 10px;
}

li.link_footer a:hover {
	transition: 0.3s;
}

li.link_footer a:hover {
	text-decoration: underline;
}

.text_footer {
    text-align: center;
}

/*----------------Объекты-------------*/

.objects .object {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.objects .object a {
}

.objects .object a:hover {text-decoration: underline;}

.objects .object p {
    text-align: center;
}

.objects .object .name {font-weight: 700;}


/*----------------Объекты-------------*/

.managers {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.manager {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.manager p {
    background: #387a49;
    padding: 0.5em;
    color: #fff;
    margin: 0px;
    text-align: center;
}

.manager .position {
    height: 110px;
}

.manager .name {
    font-weight: 700;
}

.manager img {
    width: 100%;
}

.title_assoc {
    text-align: center;
}


.main_item_slider .slick-slide {
    height: 700px !important;
}

 .slick-next {
    right: 15px !important;
}

 .slick-prev {
    left: 15px !important;
    z-index: 1;
}

.slick-prev, .slick-next {
    width: 40px !important;
    height: 40px !important;
}

.slick-prev:before, .slick-next:before {font-size: 40px !important;}
.main_item_slider .slick-prev:before, 
.main_item_slider .slick-next:before {
    color: #226b34 !important;
}

.nav_for_item_slider {
    text-align: center;
    float: none;
    height: 200px;
    margin-top: 1.2em;
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    border-top: 4px solid #397a49;
    border-bottom: 4px solid #397a49;
    margin-left: -15px;
    margin-right: -15px;
}


.nav_for_item_slider .slick-slide {
    height: 150px !important;
    width: 235px !important;
}

.slick-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.nav_for_item_slider .slick-slide img {
    display: block;
    object-fit: cover;
    height: 220px !important;
    width: -webkit-fill-available;
}

.slick-initialized .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    background: rgba(57,122,73,0.32);
    height: -webkit-fill-available;
}

