.flex-center-x {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-center-y {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    align-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
}
.flex-space-b {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.no-wrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.flex {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
html, body {
	height: 100%;
}
body {
    background: #fff;
    margin: 0;
    font-family: 'Roboto';
    color: #000;
    font-size: 14px;
    overflow-x: hidden;
}
.clearfix:before,
.clearfix:after {
    clear: both;
    display: block;
    content: '';
}
a:focus {
    outline: none;
}
a {
    transition: 0.5s all ease;
    text-decoration: none;
    color: #003590;
}
a:hover {
    color: #FFD759;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent !important;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    color: transparent !important;
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder{
    color: transparent !important;
}
input:focus,
textarea:focus,
button:focus{
    outline: none;
}
p {
    margin: 0 0 15px;
    line-height: 19px;
}
p:last-child {
    margin: 0;
}
p a {
    text-decoration: underline;
}
p a:hover {
    text-decoration: none;
}
* {
    font-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
-webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
      box-sizing: border-box;
    text-size-adjust: none;
}
button {
    border: none;
    cursor: pointer;
    transition: 0.5s all ease;
}
button:hover {
    cursor: pointer;
}
.wrapper {
    position: relative;
    min-height: 100%;
}
/* header */
.logo {
    height: auto;
    z-index: 1;
    position: relative;
}
.logo-img {
    margin-right: 30px;
    display: block;
    position: relative;
    z-index: 1;
    animation: mill 25s infinite linear;
    -webkit-animation-fill-mode:none!important;
    animation-fill-mode:none!important
}
.logo img {
    display: block;
}
.header {
    position: relative;
    padding: 7px 0;
    z-index: 100;
}
.container {
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
}
.container:after,
.container:before {
    content: '';
    display: block;
    clear: both;
}
.header {
    padding: 10px 0 0 0;
}
.header-phone-box {
    padding: 0 0 0 46px;
    margin-right: 50px;
    background: url(images/phone.svg) no-repeat;
    background-size: 32px 32px;
}
.header-phone {
    font-size: 35px;
    color: #000000;
    line-height: 32px;
    display: block;
}
.header-phone-text {
    display: block;
    text-align: right;
    width: 100%;
    margin-top: 4px;
    font-size: 12px;
    color: #808184;
}
.lang-list {
    position: absolute;
    /*width: calc(100% + 20px);*/
    background: #e2ded3;
    top: calc(100% + 5px);
    right: 0;
    padding: 10px;
    display: none;
    -webkit-box-shadow: 0 0 10px 1px rgba(0,53,144,0.5);
    -moz-box-shadow: 0 0 10px 1px rgba(0,53,144,0.5);
    box-shadow: 0 0 10px 1px rgba(0,53,144,0.5);
}
.lang-list li {
    margin: 10px 0 0;
    font-size: 14px;
}
.lang-list li:first-child {
    margin: 0;
}
.lang-list li a {
    display: block;
    color: #007a33;
}
.lang-list li a:hover {
    color: #000;
}
.lang {
    font-size: 12px;
    display: block;
    color: #003590;
    background: url(images/arrow-down.svg) no-repeat 100% 50%;
    padding-right: 16px;
    transition: 0.5s all ease;
}
.lang:hover {
    cursor: pointer;
    color: #FFD759;
    background: url(images/arrow-down-h.svg) no-repeat 100% 50%;
}
.soc-lang-holder {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    align-content: flex-end;
    max-width: 80px;
    width: 80px;
}
.header-soc {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    align-content: center;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.header-soc li {
    margin: 0 0 0 7px;
}
.header-lang {
    position: relative;
    z-index: 101;
}
.header-bot.active {
    z-index: 300;
}
.header-soc li a {
    display: block;
}
.header-soc svg {
    display: block;
}
.header-soc path {
    fill: #003590;
    transition: 0.5s all ease;
}
.header-soc li a:hover path {
    fill: #FFD759;
}
.header-bot {
    margin-top: 20px;
    height: 40px;
    position: relative;
    z-index: 100;
    background-color: #e2ded3;
}
.header-bot .container {
    height: 100%;
}
.header-nav li {
    margin-right: 25px;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    position: relative;
    text-transform: uppercase;
}
.header-nav li.current-menu-item:after,
.header-nav li.current_page_item:after{
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #007a33;
    animation-duration: 2s;
    animation-name: animWidth;
}
.header-nav li a {
    color: #003590;
}
.header-nav li a:hover {
    color: #007a33;
}
.header-search {
    width: 75px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.search-form-box {

}
.searchform {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    align-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.search-input {
    background: none;
    border: none;
    font-size: 14px;
    color: #8c857d;
    width: calc(100% - 16px);
    padding-right: 10px;
}
.search-bt {
    background: url(images/search-ico.svg) no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    text-indent: -9999px;
    border: none;
}
.search-bt:hover {
    cursor: pointer;
}
.main-head {
    background: url(images/main-bg-day.svg) no-repeat 50% 100%;
    background-size: cover;
    padding: 50px 0 209px;
    position: relative;
    overflow: hidden;
    max-height: 420px;
    min-height: 320px;
    /*min-height: 535px;*/
}
.main-head.night {
    background: url(images/main-bg-night.svg) no-repeat 50% 100%;
    background-size: cover;
}
.mill-box {
    width: 40px;
    height: 66px;
    position: absolute;
    bottom: 79px;
    left: 20%;
    z-index: 2;
}
.mill-box img {
    display: block;
}
.mill-door {
    position: absolute;
    left: calc(50% - 10px);
    bottom: 0;
}
.mill-circle {
    position: absolute;
    left: calc(50% - 29px);
    top: -20px;
    transform: rotate(5deg);
    animation: mill 15s infinite linear;
}
.main-head .cloud {
    position: absolute;
    left: -100px;
    top: 5%;
    animation: clouds 45s infinite linear;
}
.main-head .cloud:nth-child(2) {
    top: 10%;
    animation-delay: 5s;
}
.main-head .cloud:nth-child(3) {
    top: 15%;
    animation-delay: 13s;
}
.main-head .cloud:nth-child(4) {
    top: 20%;
    animation-delay: 16s;
}
.main-head .cloud:nth-child(5) {
    top: 13%;
    animation-delay: 22s;
}
.main-head .cloud:nth-child(6) {
    top: 25%;
    animation-delay: 30s;
}
.main-head .cloud:nth-child(7) {
    top: 22%;
    animation-delay: 10s;
}
.main-head .cloud:nth-child(8) {
    top: 7%;
    animation-delay: 27s;
}
.main-head .cloud:nth-child(9) {
    top: 4%;
    animation-delay: 14s;
}
.main-head .cloud:nth-child(10) {
    top: 25%;
    animation-delay: 11s;
}
.main-head .cloud:nth-child(11) {
    top: 5%;
    animation-delay: 3s;
}
.main-head.night .stars {
    display: block;
}
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: none;
}
.star {
    position: absolute;
    border-radius: 100%;
    width: 1px;
    height: 1px;
    box-shadow: 0 0 10px 2px #FFD759;
    background-color: #ffffff;
    animation: star 15s infinite linear;
    opacity: 0;
    transform: scale(1);
}
.star:nth-child(1) {top: 3%;left: 5%;}
.star:nth-child(2) {top: 7%;left: 25%;animation-delay: 10s;}
.star:nth-child(3) {top: 4%;left: 76%;animation-delay: 5s;}
.star:nth-child(4) {top: 10%;left: 8%;animation-delay: 22s;}
.star:nth-child(5) {top: 20%;left: 20%;animation-delay: 30s;}
.star:nth-child(6) {top: 25%;left: 44%;animation-delay: 5s;}
.star:nth-child(7) {top: 18%;left: 90%;animation-delay: 10s;}
.star:nth-child(8) {top: 6%;left: 85%;animation-delay: 9s;}
.star:nth-child(9) {top: 30%;left: 12%;animation-delay: 41s;}
.star:nth-child(10) {top: 28%;left: 78%;animation-delay: 35s;}
.star:nth-child(11) {top: 15%;left: 80%;animation-delay: 21s;}
.star:nth-child(12) {top: 9%;left: 33%;animation-delay: 3s;}
.star:nth-child(13) {top: 33%;left: 66%;}
.star:nth-child(14) {top: 11%;left: 16%;animation-delay: 14s;}
.star:nth-child(15) {top: 16%;left: 55%;animation-delay: 2s;}
.star:nth-child(16) {top: 38.5%;left: 70%;animation-delay: 8s;}
.star:nth-child(17) {top: 14.5%;left: 65%;animation-delay: 16s;}
.star:nth-child(18) {top: 22.5%;left: 68%;animation-delay: 30s;}
.star:nth-child(19) {top: 13.5%;left: 41%;animation-delay: 42s;}
.star:nth-child(20) {top: 15.5%;left: 95%;animation-delay: 4s;}
.star:nth-child(21) {top: 35.5%;left: 99%;animation-delay: 17s;}
.star:nth-child(22) {top: 5.5%;left: 94%;animation-delay: 26s;}
.star:nth-child(23) {top: 25%;left: 2%;animation-delay: 19s;}
.star:nth-child(24) {top: 5%;left: 52%;animation-delay: 16s;}
.star:nth-child(25) {top: 17.5%;left: 63%;animation-delay: 8s;}
.star:nth-child(26) {top: 19.5%;left: 38%;animation-delay: 16s;}
.star:nth-child(27) {top: 29.5%;left: 16%;animation-delay: 30s;}
.star:nth-child(28) {top: 32.5%;left: 71%;animation-delay: 42s;}
.star:nth-child(29) {top: 6.5%;left: 47%;animation-delay: 4s;}
.star:nth-child(30) {top: 6.5%;left: 96%;animation-delay: 17s;}
.star:nth-child(31) {top: 19%;left: 85%;animation-delay: 26s;}
.star:nth-child(32) {top: 40%;left: 7%;animation-delay: 19s;}
.star:nth-child(33) {top: 35%;left: 52%;animation-delay: 16s;}
.star:nth-child(34) {top: 33%;left: 87%;animation-delay: 16s;}
.main-head.night .clouds {
    display: none;
}
.main-head-title {
    width: 90%;
    max-width: 800px;
    background: #FFD759;
    margin: 0 auto;
    position: relative;
    padding: 30px 55px 20px;
    z-index: 4;
}
.main-title-t {
    font-size: 30px;
    display: block;
    text-align: center;
    color: #007a33;
}
.main-title-t:hover {
    color: #003590;
}
.main-title-img {
    position: absolute;
    display: block;
    top: -85px;
    left: calc(50% - 34px);
}
h2,
.search-none-t {
    text-align: center;
    display: block;
    font-size: 34px;
    font-weight: bold;
    color: #003590;
    text-transform: uppercase;
    margin: 0 0 60px;
}
.search-none-t {
    margin: 0;
    font-size: 24px;
}
.rubric-circle {
    width: 120px;
    height: 120px;
    background-color: #e2ded3;
    border: 6px solid #ffd759;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin: 0 auto 35px;
}
.info-section {
    background: #f3f1ed;
}
.section {
    padding: 60px 0;
}
.rubric-img {
    display: block;
}
.rubric-title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #003590;
    margin: 0 0 20px;
}
.rubrics-holder {
    /*padding: 0 55px;*/
}
.rubric {
    text-align: center;
    width: 365px;
    padding: 40px 35px;
}
.info-section h2 {
    margin: 0 0 20px;
}
.news-list {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 -1%;
}
.news-box-holder {
    padding: 0 1%;
    width: 33.33%;
    margin: 0 0 40px;
}
.news-box {
    height: 100%;
    border: 1px solid #e2ded3;
}
.news-img {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    align-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 300px;
}
.news-img img {
    display: block;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
.news-title {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #003590;
}
.news-date {
    display: block;
    font-size: 14px;
    margin: 0 0 10px;
    color: #8c857d;
}
.news-text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-inner {
    padding: 18px 20px 20px;
}
.news-content-inner .news-date {
    margin: 0 0 20px;
}
.news-content-inner {
    font-size: 16px;
    color: #000000;
    overflow: hidden;
}
/* footer */
.footer {
    padding: 40px 0 50px;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 10;
    background-color: #26334b;
}
.footer-center {
    padding: 0 3%;
    max-width: 23%;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.footer .container {
    position: static;
}
.footer:after {
    width: 500px;
    max-width: 60%;
    height: 20px;
    background-color: #007a33;
    position: absolute;
    content: '';
    display: block;
    left: 0;
    bottom: 0;
}
.footer:before {
    width: 940px;
    max-width: 70%;
    height: 20px;
    background-color: #007a33;
    position: absolute;;
    content: '';
    display: block;
    top: -20px;
    right: 0;
}
.footer-logo {
    display: block;
    max-width: 100%;
    margin: 0 0 50px 0;
}
.footer-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}
.footer-links span,
.footer-links a,
.contacts-box .footer-marker,
.contacts-box .footer-mail,
.contacts-box .footer-work {
    display: block;
    margin: 30px 0 0;
    color: #ffffff;
    padding: 0 0 0 24px;
}
.footer-links span:first-child,
.footer-links a:first-child {
    margin: 0;
}
.footer-links span.copy {
    margin-top: 54px;
    padding: 0;
}
.footer-marker {
    background: url(images/marker-ico.svg) no-repeat 0 50%;
}
.footer-mail {
    background: url(images/email-ico.svg) no-repeat 0 50%;
}
.footer-work {
    background: url(images/work-ico.svg) no-repeat 0 50%;
}
.company-logo {
    display: block;
    margin: 0 0 20px;
}
.footer-nav li {
    margin: 20px 0 0;
    text-transform: uppercase;
}
.footer-nav li:first-child {
    margin: 0;
}
.footer a {
    color: #ffffff;
}
.footer a:hover,
.contacts-box .footer-box a:hover {
    color: #FFD759;
}
.footer-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    display: block;
    margin: 0 0 18px;
}
.phone-text {
    display: block;
    color: #fff;
    margin: 3px 0 0;
}
.footer-right {
    padding: 0 1.5% 0 3%;
    max-width: 23%;
}
.footer-left {
    padding: 0 5% 0 0;
}
.footer-phone {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}
.footer-box {
    margin: 0 0 20px 0;
}
.footer-box:last-child,
.contacts-box .footer-box:last-child {
    margin: 0;
}
/* show menu */
.show-menu svg {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transform: translate3d(0,0,0);
}
.show-menu path {
    fill: none;
    transition: stroke-dashoffset .5s cubic-bezier(0.250,-0.250, 0.750, 1.250), stroke-dasharray .5s cubic-bezier(0.250,-0.250, 0.750, 1.250), stroke-opacity .5s cubic-bezier(0.250,-0.250, 0.750, 1.250);
    stroke-width: 40px;
    stroke-linecap: round;
    stroke: #A06BA5;
    stroke-dashoffset: 0px;
}
.show-menu path#middle {
    stroke-dasharray: 240px, 240px;
}
.show-menu path#bottom,
.show-menu path#top {
    stroke-dasharray: 240px, 950px;
}
.cross {
    position: fixed;
    z-index: 101;
    top: 10px;
    left: 10px;
}
.cross path#top,
.cross path#bottom {
    stroke-dashoffset: -650px;
}
.cross path#middle {
    stroke-opacity: 0;
    stroke-dashoffset: -50px;
    stroke-dasharray: 1px, 140px;
}
.show-menu {
    height: 100%;
}
/* end show menu */
.car {
    display: block;
}
.car-logo {
    position: absolute;
    top: 13px;
    right: 35px;
    display: block;
    animation: mill 25s infinite linear;
}
.car-box {
    width: 137px;
    height: 84px;
    position: absolute;
    bottom:10px;
    right: 10%;
    animation: car 75s infinite linear;
    z-index: 5;
}
.gargbage-l {
    display: block;
    position: absolute;
    left: 17%;
    bottom: 10px;
    z-index: 3;
}
.garbages-mid {
    position: absolute;
    bottom: 14px;
    left: 47%;
    z-index: 3;
}
.garbages-right {
    position: absolute;
    bottom: 14px;
    right: 32%;
    z-index: 3;
}
.garbages-right .gargbage-r:first-child {
    margin-top: -8px;
    margin-right:0;
    margin-left:0;
}
.gargbage-m,
.gargbage-r {
    margin: 0 4px;
    display: block;
}
.hill-box {
    position: absolute;
    left: calc(50% - 185px);
    bottom: 15px;
    z-index: 3;
}
.hill {
    display: block;
    z-index: 2;
    position: relative;;
}
.arch {
    position: absolute;
    left: -193px;
    bottom: 1px;
    display: block;
    z-index: 4;
}
.trees-four {
    display: block;
    position: absolute;
    left: 0;
    bottom: 4px;
    z-index: 3;
}
.trees-two {
    position: absolute;
    display: block;
    right: 200px;
    top: 15px;
    z-index: 3;
}
.ferris {
    position: absolute;
    left: -28px;
    display: block;
    top: -40px;
    z-index: 1;
    animation: mill 45s infinite linear;
}
.inner-head-title {
    /*height: 80px;*/
    max-width: 90%;
    height: auto;
    padding: 15px 50px;
    transition: 0.8s all ease;
    background-color: #ffd759;
    position: absolute;;
    top: 50px;
    z-index: 10;
    left: 0;
}
.inner-title-t {
    font-family: Roboto;
    font-size: 34px;
    font-weight: bold;
    display: block;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    color: #007a33;
}
.inner-title-img {
    left: 0;
    top: -58px;
    transition: 0.8s all ease;
    display: block;
    position: absolute;
}
.content-img {
    float: right;
    margin: 0 0 40px 40px;
}
.main-content {
    background: #f3f1ed;
    padding: 50px 0;
}
.std-list {
    list-style: disc;
    padding: 0 0 0 15px;
    margin: 0;
}
.std-list li {
    margin: 10px 0 0;
}
.std-list li:first-child {
    margin: 0;
}
.activity-title {
    text-align: center;
    display: block;
    margin-bottom: 35px;
}
.bread-crumbs,
.breadcrumbs {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -30px 0 50px;
}
.bread-crumbs li,
.breadcrumbs > span {
    font-size: 14px;
    color: #8c857d;
    margin-right: 10px;
    padding: 0 18px 0 0;
    position: relative;
}
.bread-crumbs li:before,
.bread-crumbs li:after,
.breadcrumbs span:before,
.breadcrumbs span:after {
    content: '';
    width: 9px;
    height: 1px;
    position: absolute;
    right: 0;
    background: #8c857d;
    top: 6px;
}
.bread-crumbs li:before,
.breadcrumbs span:before {
    transform: rotate(35deg);
}
.bread-crumbs li:after,
.breadcrumbs span:after {
    transform: rotate(-35deg);
    top: 11px;
}
.bread-crumbs li:last-child:before,
.bread-crumbs li:last-child:after,
.breadcrumbs span:last-child:before,
.breadcrumbs span:last-child:after {
    display: none;
}
.bread-crumbs li:last-child,
.breadcrumbs span:last-child {
    padding: 0;
}
.bread-crumbs li a,
.bread-crumbs li span,
.breadcrumbs > span span,
.breadcrumbs > span a {
    color: #8c857d;
}
.bread-crumbs li a:hover,
.breadcrumbs > span a:hover span {
    color: #808184;
}
.pager,
.page-numbers {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin-top: 20px;
}
.page-numbers {
    margin: 0;
}
.pager:before {
    width: 225px;
    height: 1px;
    background-color: #e2ded3;
    margin: 0 auto;
    content: '';
    position: absolute;
    top: -20px;
    left: calc(50% - 112px);
}
.pager li {
    font-family: 'Roboto';
    font-size: 16px;
    margin: 0 10px;
}
.pager li a {
    color: #007a33;
    display: block;
}
.pager li a img {
    display: block;
}
.pager li a:hover {
    color: #FFD759;
}
.pager li a {
    position: relative;
}
.pager li a.prev,
.pager li a.next {
    width: 10px;
    height: 20px;
    text-indent: -9999px;
}
.pager li a.prev:before,
.pager li a.prev:after,
.pager li a.next:before,
.pager li a.next:after{
    content: '';
    width: 9px;
    height: 1px;
    position: absolute;
    left: 0;
    background: #007a33;
    top: 6px;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
}
.pager li a.prev:hover:before,
.pager li a.prev:hover:after,
.pager li a.next:hover:before,
.pager li a.next:hover:after {
    background: #FFD759;
}
.pager li a.next:before {
    transform: rotate(35deg);
}
.pager li a.next:after{
    transform: rotate(-35deg);
    top: 11px;
}
.pager li a.prev:before {
    transform: rotate(35deg);
    top: 10px;
}
.pager li a.prev:after{
    transform: rotate(-35deg);
    top: 5px;
}
.content-img-box {
    padding: 0 38px 0 0;
}
.content-img-box img {
    display: block;
    margin: 0;
    max-width: 100%;
    height: auto;
}
.news-content-inner {
    /*padding: 0 0 0 38px;*/
}
.contacts-left {
    padding-right: 40px;
    width: 50%;
}
.contacts-right {
    width: 50%;
}
.contacts-box {
    border: 1px solid #e2ded3;
    padding: 22px;
    margin: 0 0 40px;
    font-size: 16px;
    color: #000;
}
.contacts-box:last-child {
    margin: 0;
}
.contacts-box .footer-marker {
    background: url(images/marker-ico-gr.svg) no-repeat 0 50%;
    margin: 0;
}
.contacts-box .footer-mail {
    background: url(images/email-ico-gr.svg) no-repeat 0 50%;
}
.contacts-box .footer-work {
    background: url(images/work-ico-gr.svg) no-repeat 0 50%;
}
.contacts-box .footer-marker,
.contacts-box .footer-mail,
.contacts-box .footer-work {
    font-family: 'Roboto';
    font-size: 16px;
    color: #000000;
}
.contacts-title {
    display: block;
    font-weight: bold;
    margin: 0 0 20px;
}
.contacts-box .footer-box a {
    color: #007a33;
}
.contacts-box .footer-box {
    margin: 0 0 30px;
}
.contacts-box .phone-text {
    color: #000;
}
.contacts-right .contacts-box {
    height: 100%;
}
.contacts-bottom {
    border-top: 1px solid #e2ded3;
    padding: 20px 0 0;
    margin: 60px 0 0;
    text-align: center;
    font-size: 16px;
}
.contacts-bottom p {
    margin: 40px 0;
}
.contacts-bottom p:first-child {
    margin-top: 0;
}
.contacts-bottom p:last-child,
.contacts-bottom .contacts-worker:last-child {
    margin-bottom: 0;
}
.contacts-bottom .contacts-worker {
    margin: 0 0 40px;
}
.contacts-bottom .contacts-worker p {
    margin: 20px 0;
}
#map {
    height: 300px;
    width: 100%;
}
.contacts-map {
    padding: 0 0 50px;
}
.error-page-title {
    display: block;
    text-align: center;
    font-family: 'Roboto';
    font-size: 100px;
    font-weight: bold;
    color: #007a33;
    position: absolute;
    top: -94px;
    left: 0;
    width: 100%;
}
.link-btn {
    width: 240px;
    height: 50px;
    border-radius: 10px;
    background-color: #007a33;
    line-height: 50px;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin: 40px auto 0;
    text-align: center;
}
.link-btn:hover {
    background-color: #fff;
    color: #007a33;
}
.error-page .inner-head-title {
    height: auto;
    padding: 30px 0;
    width: 800px;
}
.error-page {
    margin: 0 0 20px;
}
@keyframes animWidth {
    0% {width: 0;}
    100% {width: 100%;}
}
@keyframes clouds {
    0% {left: -100px;}
    100% {left: 100%;}
}
@keyframes mill {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
@keyframes star {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    70% {
        opacity:1;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@keyframes car {
    0% {
        right: -10%;
        transform: scaleX(1);
    }
    53% {
        right: 110%;
        transform: scaleX(1);
    }
    54% {
        transform: scaleX(-1);
    }
    99% {
        right: -10%;
        transform: scaleX(-1);
    }
    100%{
        right: -10%;
        transform: scaleX(1);
    }
}
.searchform label {
    display: none;
}
.news-content-inner p,
.news-content-inner span {
    background:  none !important;
}
p img {
    margin: 15px 15px 15px 0;
}
.main-content img {
    max-width: 100%;
    height: auto;
}
.news-content-inner table { width:100%; margin-bottom:22px; border-collapse:collapse }
.news-content-inner td, .post-entry th { padding: 12px; border-bottom: 1px #e5e5e5 solid; }
.news-content-inner th { font-weight:bold; font-size:14px; background:#f5f5f5;}
.news-content-inner tr:hover {
    background:#f9f9f9;
}
.gallery {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.gallery figure {
    margin: 15px 15px 15px 0;
    max-width: 100%;
}
.news-img {
    background-color: #e2ded3;
}
.news-img .logo-img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
.news-content-inner p > a {
    float: left;
}
.dev-text {
    margin-right: 15px;
}
.developer {
    position: absolute;
    right: 20px;
    bottom: 5px;
    height: auto;
}
.dev-logo {
    display: block;
    height: 35px;
}
.content-sect h2 {
    font-size: 20px;
    text-align: left;
}
.header-nav .sub-menu li {
    margin: 0 0 10px;
    line-height: 14px;
    height: auto;
    padding: 0 0 0 15px;
}
.header-nav .sub-menu li:last-child {
    margin: 0;
}
.header-nav li .sub-menu {
    display: none;
    padding-top: 10px;
    padding-bottom: 10px;
    position: absolute;
    min-width: 200px;
    z-index: 10;
    width: calc(100% + 15px);
    background-color: #e2ded3;
}
.header-nav li .sub-menu .header-nav-btn {
    right: 5px;
}
.header-nav > li > .sub-menu {
    left: -15px;
    top: 100%;
}
.header-nav-btn {
    background: url(images/arrow-down.svg) no-repeat 100% 50%;
    width: 10px;
    height: 8px;
    position: absolute;
    right: 0;
    top: calc(50% - 4px);
    display: block;
    z-index: 10;
    transition: 0.5s all ease;
}
.header-nav li.menu-item-has-children {
    padding-right: 16px;
}
.header-nav li.menu-item-has-children.active > .header-nav-btn {
    transform: rotate(180deg);
}
.header-nav .sub-menu li.current_page_item:after,
.header-nav .sub-menu li.current-menu-item:after{
    bottom: -5px;
    width: 100%;
}
.header-nav .sub-menu li.current_page_item a,
.header-nav .sub-menu li.current-menu-item a {
    color: #007a33;
}
.header-nav .sub-menu li > .sub-menu {
    left: 100%;
    top: -10px;
}
.header .company-logo {
    margin: 0 0 5px;
    max-height: 60px;
}
.contact-us-form {
    width: 100%;
    max-width: 900px;
    margin:0 auto;
}
.feedback-box {
    margin-top: 40px;
    width: 400px;
    position: relative;
}
.fb-inputs .feedback-box:first-child {
    margin-top: 0;
}
.fb-input,
.feedback-area {
    width: 100%;
    font-size: 16px;
    background: none;
    border-bottom: 1px solid #007a33;
    border-left: none;
    border-right: none;
    border-top: none;
    color: #000;
    height: 32px;
    padding-bottom: 5px;
    border-radius: 0;
    display: block;
    font-family: 'Roboto';
    transition: 0.3s all linear;
}
.contact-us-form .send-form {
    margin: 60px auto 0;
    width: 200px;
    height: 44px;
    background: #FFD759;
    display: block;
    border: 2px solid #007a33;
    line-height: 40px;
    font-size: 16px;
    color: #007a33;
}
.contact-us-form .send-form:hover {
    background: #007a33;
    color: #fff;
}
.contact-us-form form {
    overflow: hidden;
}
.feedback-box {
    width: 400px;
    position: relative;
}
.feedback-area {
    height: 176px;
    width: 455px;
    margin: 0;
    resize: none;
}
.fb-area {
    position: relative;
}
.fb-label {
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 16px;
    color: #000;
    font-weight: normal;
    font-family: 'Roboto';
    transition: 0.3s all linear;
}
.feedback-box.active .fb-input,
.fb-area.active .feedback-area {
    border-bottom: 1px solid #003590;
}
.feedback-box.active .fb-label,
.fb-area.active .fb-label {
    top: -15px;
    font-size: 12px;
}
.rf_error + label,
.rf_error + .fb-label {
    color: #ff0000 !important;
}
.rf_error,
.rf_error.feedback-area,
.rf_error.fb-input {
    border-bottom: 1px solid #ff0000 !important;
    color: #ff0000 !important;
}
.succes-modal {
    display: none;
    position: fixed;
    height: 100px;
    width: 300px;
    top: calc(50% - 50px);
    left: calc(50% - 150px);
    border-radius: 15px;
    text-align: center;
    z-index: 100;
    background: #fff;
    border: 1px solid #173042;
}
.succes-modal p {
    line-height: 98px;
}
article.post {
    margin: 0 0 40px;
}
.entry-header {
    margin: 0 0 20px;
}
.entry-header h2 {
    margin: 0;
}
.header-bot-section {
    height: auto;
    margin-top: 10px;
}
.kmda-link {
    display: block;
    text-align: center;
}
.slide-main img {
    display: block;
    max-width: 320px;
    max-height: 150px;
}
.slide-inner {
    height: 205px;
    padding: 15px 0;
}
.slider-main {
    background: #e2ded3;
}
.slide-title {
    display: block;
    margin-left: 25px;
    font-size: 30px;
    color: #003590;
    text-align: center;
    text-shadow: 1px 1px 3px #000;
    max-width: calc(100% - 262px);
}
.slide-val {
    font-size: 40px;
    text-shadow: 1px 1px 3px #000;
    font-weight: bold;
}
.slick-arrow {
    position: absolute;
    left: 5%;
    top: calc(50% + 3px);
    background: url(images/slider/slide-arr.svg) no-repeat;
    width: 15px;
    z-index: 1;
    height: 30px;
    transition: 0.5s all ease;
}
.slick-arrow.slick-next {
    right: 5%;
    left: auto;
    transform: rotate(180deg);
}
.slick-arrow:hover {
    opacity: 0.6;
}
.gallery-slick { visibility:hidden; opacity:0; transition: opacity 1s; }
.gallery-slick.slick-initialized { visibility:visible; opacity:1; }
.gallery-slick .slick-slide { display:none; }
.gallery-slick .slick-slide:first-child { display:block; visibility:hidden; }
.gallery-slick.slick-initialized .slick-slide { display:block; visibility:visible!important; }
.slick-dots {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 100%;
}
.slick-dots li {
    margin: 0 3px;
}
.slick-dots li button {
    display: block;
    text-indent: -9999px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background: #003590;
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid #003590;
}
.slick-dots li.slick-active button {
    border: 2px solid #ffd759;
}
/* Начало Кнопка оплати 2020.03.27 mkv */
.add_oplata {
display: block;
width: 36px;
height: 202px;
position: fixed;
right: 0;
top: 200px;
z-index: 99999;
border: none;
}
/* Конец Кнопка оплати 2020.03.27 mkv */
