@charset "UTF-8";
body {
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:hover {
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

@font-face {
  font-family: "open-sans";
  src: url("../fonts/open-sans-font/OpenSans-Regular.ttf") format("opentype");
}

* {
  font-family: "open-sans";
}

.wrapper__content {
  margin-top: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 290px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .wrapper__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 200px;
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .wrapper__content {
    margin: 0;
    width: 100%;
    max-width: 576px;
  }
}

.btn {
  padding: 10px 25px;
  border-radius: 10px;
  margin: 20px;
  color: black;
  font-size: 1rem;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .btn {
    font-size: 0.7rem;
  }
}

.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 100px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
}

.btn:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.btn:active {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.btn-white {
  background-color: rgba(185, 183, 189, 0.5);
  color: black;
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-white::after {
  background-color: rgba(185, 183, 189, 0.5);
}

.btn:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-animated {
  -webkit-animation: moveInBottom 5s ease-out;
  animation: moveInBottom 5s ease-out;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.image-logo {
  width: 180px;
  margin: 1.5rem auto 0;
  display: block;
}

.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 880px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 700px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 500px;
    width: 100%;
  }
}

.btn {
  border: 1px solid #61be35;
  color: black;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  display: inline-block;
  margin: 1rem 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn:hover {
  color: black;
}

.entry-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #5f5f5f;
}

@media (max-width: 1200px) {
  .entry-content p {
    font-size: 0.9rem;
  }
}

.entry-content a {
  color: #000;
}

.entry-content a:hover {
  color: #61be35;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
  margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1rem;
  padding: 0 0 0 2rem;
}

.entry-content ul li,
.entry-content ol li {
  color: #5f5f5f;
  margin-bottom: 0.5rem;
}

.entry-content ul li:last-child,
.entry-content ol li:last-child {
  margin-bottom: 0;
}

.entry-content table {
  margin-bottom: 1rem;
  width: 100%;
  border: 1px solid #dddddd;
  border-collapse: collapse;
}

.entry-content table tr,
.entry-content table td {
  border: 1px solid #dddddd;
  padding: 0.5rem;
  color: #5f5f5f;
  font-size: 0.9rem;
}

.entry-content form {
  width: 40%;
}

.entry-content form p span {
  margin: 0 0 1rem 0;
}

.entry-content form p span input {
  padding: 0.5rem;
  width: 100%;
}

.entry-content form p textarea {
  padding: 0.5rem;
  width: 100%;
  height: 200px;
}

.entry-content form button {
  background: #61be35;
  color: #fff;
  width: 100%;
  padding: 1rem;
  font-weight: bolder;
  border: none;
  cursor: pointer;
}

.entry-content form button:hover {
  background: #dddddd;
}

.breads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 1rem 0;
}

.breads a {
  color: #61be35;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bolder;
}

.breads .sep {
  margin: 0 1rem;
  font-size: 0.9rem;
  color: #5f5f5f;
}

.breads .current {
  font-size: 0.9rem;
  color: #5f5f5f;
}

#header .logo {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header nav {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

#header nav ul li {
  margin-right: 1rem;
}

#header nav ul li:last-child {
  margin-right: 0;
}

#header nav ul li a {
  text-decoration: none;
  color: #222;
  background: none;
}

@media (max-width: 1200px) {
  #header nav ul li a {
    font-size: 0.8rem;
    padding: 10px 5px;
  }
}

#header nav ul li a:hover {
  color: #61be35;
}

@media (max-width: 1200px) {
  #header nav ul li {
    margin-right: 0;
  }
}

#header nav ul li.current-menu-item a {
  font-weight: bolder;
}

@media (max-width: 992px) {
  #header nav ul {
    display: block;
  }
}

#header .visImp {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .visImp a {
  text-decoration: none;
  color: #222;
  font-weight: bolder;
}

#header .visImp a:hover {
  color: #61be35;
}

#header .visImp .lang {
  margin-left: 1rem;
}

@media (max-width: 350px) {
  #header .visImp .lang {
    margin-left: 0;
  }
}

@media (max-width: 350px) {
  #header .visImp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 1450px) {
  .overflow-x {
    overflow-x: scroll;
  }
}
@media (max-height: 800px) {
  .sidebar .menu__link {
    padding: 10px;
  }
  .sidebar .sub-menu {
    bottom: 0;
    top: auto;
    box-sizing: border-box;
  }
}

#header .contacts {
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
}

#header .contacts a {
  text-decoration: none;
  color: #5f5f5f;
  font-weight: bolder;
}

#header .work-item {
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
}

#main-screen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#main-sidebar {
  background: #dddddd;
  width: 10%;
  position: fixed;
  height: 100vh;
  z-index: 10;
}

#main-sidebar nav ul {
  padding: 1rem 0 0 0;
  list-style: none;
}

#main-sidebar nav ul li {
  width: 100%;
  position: relative;
}

#main-sidebar nav ul li a {
  padding: 1rem;
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: bolder;
  text-decoration: none;
  color: #5f5f5f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#main-sidebar nav ul li a:hover {
  color: #61be35;
}

#main-sidebar nav ul li .sub-menu {
  position: absolute;
  width: 300px;
  top: 0;
  left: 100%;
  padding: 1rem;
  background: #fff;
  border: 1px solid #efefef;
  display: none;
}

#main-sidebar nav ul li.has-child {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#main-sidebar nav ul li.has-child:after {
  content: "▸";
  position: absolute;
  top: 50%;
  right: 5%;
  color: #a7a7a7;
  font-size: 1.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#main-sidebar nav ul li.has-child:hover .sub-menu {
  display: block;
  z-index: 25;
}

#main-sidebar #links {
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#main-sidebar #links h4 {
  margin-bottom: 1rem;
}

#main-sidebar #links a {
  width: 70%;
  display: block;
  margin-bottom: 1rem;
}

#main-sidebar #links a img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#screen {
  padding: 2rem;
  padding-bottom: 5rem;
}

#screen .search form {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 2rem 0;
}

#screen .search form input {
  padding: 1rem;
  width: 100%;
  border: 1px solid #dddddd;
}

#screen .search form input::-webkit-input-placeholder {
  font-size: 0.9rem;
  font-weight: lighter;
}

#screen .search form input:-ms-input-placeholder {
  font-size: 0.9rem;
  font-weight: lighter;
}

#screen .search form input::-ms-input-placeholder {
  font-size: 0.9rem;
  font-weight: lighter;
}

#screen .search form input::placeholder {
  font-size: 0.9rem;
  font-weight: lighter;
}

#screen .search form input:hover {
  border-color: #61be35;
}

#screen .search form button {
  position: absolute;
  top: 50%;
  right: 1%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.75;
}

#screen .search form button img {
  width: 24px;
}

#screen .frontpage-content {
  margin: 2rem 0;
}

#screen .frontpage-content:before {
  content: "";
  background: url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20baseProfile%3D%22full%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3Aev%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2Fxml-events%22%20xml%3Aspace%3D%22preserve%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2225px%22%20height%3D%228px%22%20%20viewBox%3D%220%200%2025%208%22%20preserveAspectRatio%3D%22none%22%20shape-rendering%3D%22geometricPrecision%22%3E%22%3Cpath%20fill%3D%22%23c0bab5%22%20d%3D%22M19.626%2C3.753%20C15.209%2C9.318%2010.791%2C9.318%206.374%2C3.753%20C4.250%2C1.577%202.125%2C0.699%20-0.000%2C1.100%20L-0.000%2C0.100%20C2.125%2C-0.301%204.250%2C0.577%206.374%2C2.753%20C10.791%2C8.318%2015.209%2C8.318%2019.626%2C2.753%20C21.417%2C0.918%2023.209%2C0.001%2025.000%2C0.001%20L25.000%2C1.001%20C23.209%2C1.001%2021.417%2C1.918%2019.626%2C3.753%20Z%22%20class%3D%22cls-1%22%2F%3E%3C%2Fsvg%3E)
    0 0 repeat-x;
  width: 100%;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
}

#right-sidebar h2 {
  margin: 1rem 0;
  color: #61be35;
  font-size: 1.3rem;
}

@media (max-width: 1200px) {
  #right-sidebar h2 {
    font-size: 1.1rem;
  }
}

#right-sidebar article {
  padding: 0 0 1rem 0;
  border-bottom: 1px dotted #dddddd;
  margin-bottom: 1rem;
  overflow-x: hidden;
}

#right-sidebar article img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

#right-sidebar article img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

#right-sidebar article span.date {
  display: block;
  font-size: 0.8rem;
  margin: 1rem;
}

#right-sidebar article h3 {
  margin: 1rem;
  color: black;
  font-size: 1.3rem;
}

@media (max-width: 1200px) {
  #right-sidebar article h3 {
    font-size: 1rem;
  }
}

#right-sidebar article p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 1rem;
}

#right-sidebar article a {
  display: block;
  color: #5f5f5f;
  font-size: 0.9rem;
  margin: 1rem;
}

#right-sidebar article a:hover {
  color: #61be35;
}

.banner {
  position: relative;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}

.banner img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.banner .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.banner .caption h2 {
  color: #ffffff;
  font-size: 1.75rem;
}

.banner .caption h2:after {
  content: "";
  display: block;
  background: #61be35;
  height: 4px;
  width: 15%;
  margin: 1rem 0;
}

@media (max-width: 1200px) {
  .banner .caption h2 {
    font-size: 1.4rem;
  }
}

.banner .caption p {
  color: #fff;
  line-height: 1.5;
}

h1 {
  text-align: center;
  line-height: 1.5;
  font-weight: lighter;
  color: black;
  font-size: 1rem;
  padding: 10px;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 0.8rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 80px;
  padding: 1rem 1rem 1rem 2rem;
  background-color: #61be35;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 1px 1px 5px #61be35;
  box-shadow: 1px 1px 5px #61be35;
  margin-left: 290px;
  background-image: url("../img/add-img/bg.jpg");
  background-size: contain;
  border-top: #61be35 solid 1px;
}

@media (max-width: 1200px) {
  .header {
    margin-left: 270px;
  }
}

@media (max-width: 768px) {
  .header {
    max-width: 540px;
    margin-left: 200px;
  }
}

@media (max-width: 576px) {
  .header {
    padding-right: 1rem;
    margin-left: 0;
    max-width: 576px;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .header .menu__icon {
    z-index: 5;
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
  .header .menu__icon span,
  .header .menu__icon::before,
  .header .menu__icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    background-color: #5a4b4b;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header .menu__icon::before,
  .header .menu__icon::after {
    content: "";
  }
  .header .menu__icon::before {
    top: 0;
  }
  .header .menu__icon::after {
    bottom: 0;
  }
  .header .menu__icon span {
    top: 50%;
    -webkit-transform: scale(1) translate(0px, -50%);
    transform: scale(1) translate(0px, -50%);
  }
  .header .menu__icon._active span {
    -webkit-transform: scale(0) translate(0px, -50%);
    transform: scale(0) translate(0px, -50%);
  }
  .header .menu__icon._active::before {
    top: 50%;
    -webkit-transform: rotate(-45deg) translate(0px, -50%);
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .header .menu__icon._active::after {
    bottom: 50%;
    -webkit-transform: rotate(45deg) translate(0px, 50%);
    transform: rotate(45deg) translate(0px, 50%);
  }
  .header .menu__body {
    position: fixed;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background-color: #eeede7;
    padding: 100px 30px 30px 30px;
    -webkit-transition: right 0.5s ease 0s;
    transition: right 0.5s ease 0s;
    overflow: auto;
  }
  .header .menu__body._active {
    left: 270px;
    width: 250px;
    z-index: 1;
  }
}

@media (max-width: 992px) and (max-width: 768px) {
  .header .menu__body._active {
    left: 200px;
  }
}

@media (max-width: 992px) and (max-width: 576px) {
  .header .menu__body._active {
    left: 0;
    top: 0;
  }
}

@media (max-width: 992px) {
  .header .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    z-index: 2;
  }
  .header .menu__list > li {
    padding: 10px 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
  .header .menu__list > li:last-child {
    margin-bottom: 0;
  }
  .header .menu__link {
    font-size: 24px;
  }
  .header .sub-menu {
    position: relative;
    background-color: white;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    display: none;
  }
  .header .menu__list > li._active .sub-menu {
    display: block;
  }
}

.header_menu {
  display: inline;
}

.wr__search-eye-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icon {
  height: 20px;
}

.btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-with-icon {
  font-family: "open-sans";
  font-size: 20px;
  color: black;
  margin-left: 7px;
  margin-right: 35px;
}

.wr__header-hour-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 35%;
  flex-basis: 35%;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 992px) {
  .wr__header-hour-tel {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

@media (max-width: 768px) {
  .wr__header-hour-tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (max-width: 350px) {
  .wr__header-hour-tel {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.text-hout-tel {
  font-family: "open-sans";
  font-size: 14px;
  color: black;
  font-style: oblique;
  margin-bottom: 5px;
}

@media (max-width: 1200px) {
  .text-hout-tel {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .text-hout-tel {
    display: none;
  }
}

.tel {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 350px) {
  .tel {
    padding-left: 20px;
  }
}

.tel::before {
  content: "";
  background-image: url("../img/icon-media/phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

@media (max-width: 768px) {
  .tel::before {
    height: 20px;
  }
}

@media (max-width: 350px) {
  .tel::before {
    height: 15px;
  }
}

.hour {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 350px) {
  .hour {
    padding-left: 30px;
  }
}

.hour::before {
  content: "";
  background-image: url("../img/icon-media/clock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

@media (max-width: 768px) {
  .hour::before {
    height: 20px;
  }
}

@media (max-width: 350px) {
  .hour::before {
    height: 15px;
  }
}

.header__link-hour-tel {
  font-family: "open-sans";
  font-size: 14px;
  color: black;
}

@media (max-width: 1200px) {
  .header__link-hour-tel {
    font-size: 0.7rem;
  }
}

.header__link-hour-tel:first-of-type:hover {
  color: #61be35;
}

.spetial-version {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 1200px) {
  .spetial-version {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .spetial-version span {
    display: none;
  }
}

.spetial-version::before {
  content: "";
  background-image: url("../img/icon-media/view.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.spetial-version::before:hover {
  color: #ffffff;
}

.main {
  width: 70%;
  position: relative;
}

@media (max-width: 768px) {
  .main {
    width: 100%;
  }
}

.sidebar {
  margin: 0;
  padding: 0;
  width: 290px;
  background-color: #f8f8f8;
  position: fixed;
  height: 100%;
  z-index: 33;
  top: 0;
}

@media (max-width: 1200px) {
  .sidebar {
    width: 270px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: 200px;
  }
}

@media (max-width: 576px) {
  .sidebar {
    position: relative;
    margin-top: 80px;
    width: 100%;
    z-index: 0;
  }
}

.menu__icon {
  display: none;
}

.menu__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu__list > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  pointer-events: all;
}

.menu__list > li:hover .menu__arrow {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.menu__list > li._active .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  pointer-events: all;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.menu__list > li._active .menu__arrow {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.menu__arrow {
  display: block;
  width: 0;
  height: 0;
  -webkit-transition: -webkit-transform 0.9s ease 0s;
  transition: -webkit-transform 0.9s ease 0s;
  transition: transform 0.9s ease 0s;
  transition: transform 0.9s ease 0s, -webkit-transform 0.9s ease 0s;
  border-top: 5px solid transparent;
  border-left: 10px solid #61be35;
  border-bottom: 5px solid transparent;
}

.menu__list > li {
  position: relative;
  padding-right: 10px;
}

.menu__link {
  background-color: #f8f8f8;
  font-size: 1rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 20px;
  font-family: "open-sans";
  font-size: 16px;
  color: black;
}

@media (max-width: 350px) {
  .menu__link {
    padding: 10px;
  }
}

.menu__link:hover:not(._active) {
  cursor: pointer;
  background-color: #eeede7;
  color: #61be35;
}

.menu__link._active {
  background-color: rgba(85, 85, 85, 0.3);
  color: #61be35;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: 290px;
  background-color: #eeede7;
  padding: 15px;
  min-width: 300px;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

@media (max-width: 1200px) {
  .sub-menu {
    left: 270px;
  }
}

@media (max-width: 768px) {
  .sub-menu {
    left: 200px;
  }
}

@media (max-width: 576px) {
  .sub-menu {
    left: 0;
  }
}

.sub-menu li {
  margin: 0px 0px 10px 0px;
  padding: 10px;
}

.sub-menu {
  -webkit-transform: translate(0px, 10%);
  transform: translate(0px, 10%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  z-index: 4;
}

.sub-menu li:hover {
  background-color: rgba(185, 183, 189, 0.3);
}

.menu__sub-link {
  font-family: "open-sans";
  font-size: 18px;
  color: black;
}

.menu__sub-link:hover {
  color: #61be35;
}

.wr-logo-title {
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .wr-logo-title {
    padding-top: 20px;
  }
}

.section__new {
  width: 350px;
  background-color: #f8f8f8;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  padding: 0 20px;
}

@media (max-width: 1200px) {
  .section__new {
    width: 250px;
    overflow-y: scroll;
  }
}

@media (max-width: 992px) {
  .section__new {
    width: 100%;
  }
}

.wr-new {
  margin-bottom: 50px;
}

.title-new {
  font-family: "open-sans";
  font-size: 16px;
  color: black;
  padding: 20px 0;
}

.text-new {
  font-family: "open-sans";
  font-size: 15px;
  color: black;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  height: 3.9em;
}

.img__new {
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.wr-service {
  margin-left: 290px;
  margin-right: 350px;
  margin-top: 80px;
}

.wr-service .container {
  text-align: center;
  padding: 10px 100px;
}

.title-service {
  font-family: "open-sans";
  font-size: 22px;
  color: black;
  margin: 20px auto;
}

.text-service {
  font-family: "open-sans";
  font-size: 18px;
  color: black;
}

.img-workres {
  width: 100%;
  max-width: 400px;
}

.list-service {
  text-align: left;
  margin-top: 50px;
}

.title-list-service {
  font-family: "open-sans";
  font-size: 20px;
  color: black;
  font-weight: bold;
  padding: 10px;
}

.list-servise {
  font-family: "open-sans";
  font-size: 18px;
  color: black;
  padding: 10px 5px;
  list-style: disc;
  margin-left: 40px;
}

.title-slider-item {
  font-family: "open-sans";
  font-size: 22px;
  color: #ffffff;
  text-shadow: 1px 0 1px #000, 0 1px 1px #000, -1px 0 1px #000, 0 -1px 1px #000;
  padding: 20px;
  z-index: 1;
}

.text-slider-item {
  font-family: "open-sans";
  font-size: 18px;
  color: #ffffff;
  text-shadow: 1px 0 1px #000, 0 1px 1px #000, -1px 0 1px #000, 0 -1px 1px #000;
  z-index: 1;
  padding: 10px 130px;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-height: 400px;
  height: 400px;
  width: 100%;
  position: relative;
  background-color: #fff;
}

.swiper-slide .img {
  height: 100%;
  position: absolute;
  z-index: 0;
}

.swiper-container {
  z-index: 1;
}

.swiper-container .swiper-button-prev {
  left: 0;
  color: black;
  background-color: #fff;
}

.swiper-container .swiper-button-next {
  right: 0;
  color: black;
  background-color: #fff;
}

.footer {
  margin-left: 290px;
  border-top: #61be35 solid 1px;
  background-image: url("../img/add-img/bg.jpg");
  background-size: contain;
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 50px 2rem;
  position: relative;
}

.footer .container .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .footer .container .logo span {
    font-size: 0.7rem;
    padding-left: 10px;
  }
}
.wr-logo-footer {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 1200px) {
  .footer {
    margin-left: 270px;
  }
}

@media (max-width: 768px) {
  .footer {
    max-width: 540px;
    margin-left: 200px;
  }
  .cit-gxu-link {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .footer {
    margin-left: 0;
    max-width: 576px;
    width: 100%;
  }
}

.footer__text-company {
  -ms-flex-preferred-size: 45%;
  flex-basis: 45%;
}

.footer-description-company {
  font-family: "open-sans";
  font-size: 16px;
  color: black;
  padding-bottom: 5px;
}

.footer__link {
  display: block;
  font-family: "open-sans";
  font-size: 12px;
  color: black;
}

.footer-description-company:last-of-type {
  padding-top: 15px;
}

.wr__up {
  padding: 10px 0 20px;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 30px;
}

.scroll-up {
  font-family: "open-sans";
  font-size: 16px;
  color: black;
  position: relative;
  padding-left: 30px;
}

.scroll-up::before {
  content: "";
  background-image: url("../img/footer/upload.svg");
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
}

@media (max-width: 992px) {
  #links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #links a {
    margin-bottom: 15px;
  }
}

.logo-pervomay {
  max-width: 70px;
}

/*# sourceMappingURL=index.css.map */
