html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
  outline: none;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  background: url("/usertpl/i/bg-newyear.png");
}
img {
  box-sizing: content-box;
  width: auto;
  max-width: 100%;
  height: auto;
  border: none;
}
a {
  color: #aecb1f;
  border: none;
}
input,
textarea,
option,
select,
button {
  border: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
  user-select: none;
  cursor: pointer;
}
.container {
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
}
.clearfix::after {
  clear: both;
}
.title {
  margin: 0 0 20px;
  font-family: 'Gotham Pro';
  font-size: 26px;
  font-weight: 900;
  color: #3d3d3d;
}
.text {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #191818;
}
.link {
  font-size: 15px;
  font-weight: 700;
  color: #0077c9;
}
.link a {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}
.link a:hover {
  color: #004574;
}
.link span {
  border-bottom: 1px solid;
}
.link svg {
  width: 30px;
  height: 30px;
  margin: 0 0 0 10px;
  fill: currentColor;
}
.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  font-family: 'Gotham Pro';
  font-size: 15px;
  font-weight: 900;
  line-height: 15px;
  white-space: nowrap;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  user-select: none;
  background: #000;
  cursor: pointer;
  transition: transform 0.1s;
}
.button span {
  padding: 3px 0 0;
  z-index: 2;
}
.button:active {
  transform: scale(0.98) translateY(2px);
}
.button::before {
  content: '';
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: right 0.3s;
}
.button:hover::before {
  right: 0;
}
.button_blue {
  background: #0077c9;
}
.button_blue::before {
  background: #005996;
}
.button_green {
  background: #b0cc1f;
}
.button_green::before {
  background: #8aa018;
}
.button_yellow {
  color: #393a3c;
  background: #ffc514;
}
.button_yellow::before {
  background: #e0a900;
}
.zoom {
  position: relative;
}
.zoom::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #000;
  opacity: 0;
  transition: 0.3s;
}
.zoom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: url(/usertpl/i/zoom.svg) no-repeat center / 40px;
  opacity: 0.4;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.zoom:hover::before {
  opacity: 0.3;
}
.zoom:hover::after {
  opacity: 1;
}
.wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.noscroll {
  overflow: hidden;
}
.back {
  margin: 30px 0 0;
  cursor: pointer;
}
.back_link svg {
  margin: 0 10px 0 0;
  transform: rotate(180deg);
}
.error {
  padding: 50px 0;
  text-align: center;
}
.error_code {
  margin: 0 0 20px;
  font-family: 'Gotham Pro';
  font-size: 40px;
  font-weight: 900;
  color: #ff0000;
}
.error_text {
  font-size: 20px;
  line-height: 25px;
}
.error_text ul {
  text-align: left;
  width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .button span {
    padding: 0;
  }
}
/*================================================================================= FORMS */
.form_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -7.5px -15px;
}
.form_group {
  width: 100%;
  margin: 0 7.5px 15px;
}
.form_group_2 {
  width: 100%;
  margin: 0 7.5px 15px;
}
.form_input input {
  display: block;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
}
.calc_form_title {
  display: block;
  padding: 3px 10px;
  font-size: 20px;
  font-weight: 700;
  color: #191818;
  background: #ffc514;
}
@media (min-width: 768px) {
  .form_group_2 {
    width: calc((100% - 30px) / 2);
  }
}
/*========================================================================= MODAL / POPUP */
.modal {
  position: relative;
  z-index: 9999;
  display: none;
}
.modal_overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: flex;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}
.modal_block {
  display: none;
  width: 100%;
  max-width: 520px;
  margin: auto;
  padding: 30px 15px;
}
.modal_loading {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9;
  display: none;
  width: 150px;
  height: 150px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}
.modal_head {
  position: relative;
  padding: 20px 60px 20px 20px;
  background: #0077c9;
}
.modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  width: 20px;
  height: 20px;
  padding: 2px;
  background: transparent;
}
.modal_body {
  padding: 20px;
  background: #fff;
}
.modal_title {
  min-height: 20px;
  margin: 0;
  font-family: 'Gotham Pro';
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
  color: #fff;
}
.modal_text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.modal_text a {
  border-bottom: 1px solid;
  text-decoration: none;
}
.modal_text span {
  border-bottom: 1px dashed;
  cursor: pointer;
}
.modal_text b {
  font-size: 20px;
}
/*================================================================================= NODES */
.data_content {
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.4;
  color: #191818;
}
.image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image img {
  flex: 0 0 auto;
  display: block;
  max-height: 100%;
}
.article_node_wrap {
  margin: 0 -15px;
}
.article_node {
  width: 100%;
  margin: 0 15px 30px;
}
.article_node_image {
  display: block;
  height: 250px;
  margin: 0 0 10px;
  background: #fff;
}
.article_node_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article_node_title {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #3d3d3d;
}
.article_node_title a {
  text-decoration: none;
}
.article_data_image {
  margin: 0 0 25px;
}
.article_data_image img {
  display: block;
}
.news_node {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 30px;
}
.news_node_image {
  display: block;
  width: 100%;
  height: 200px;
  margin: 0 0 15px;
}
.news_node_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_node_content {
  width: 100%;
}
.news_node_title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #3d3d3d;
}
.news_node_title a {
  text-decoration: none;
}
.news_node_brief {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.4;
  color: #191818;
}
.news_data_image {
  margin: 3px 10px 10px 0;
  float: left;
}
.news_data_brief {
  margin: 0 0 10px;
}
.gallery_node_wrap {
  margin: 0 -2.5px 25px;
}
.gallery_node {
  position: relative;
  display: block;
  width: calc((100% - 10px) / 2);
  margin: 0 2.5px 5px;
}
.gallery_node_image {
  height: 0;
  padding: 75% 0 0;
}
.gallery_node_image img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.file_node {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 30px;
}
.file_node_download {
  order: 2;
  width: 100%;
  margin: 10px 0 0;
}
.file_node_content {
  order: 1;
  width: 100%;
}
.file_node_title {
  margin: 7px 0 0;
  font-size: 20px;
  font-weight: 700;
  color: #3d3d3d;
  line-height: 25px;
}
.catalog_node_wrap {
  margin: 0 -20px;
}
.catalog_node {
  width: 100%;
  margin: 0 20px 40px;
}
.catalog_node_image {
  position: relative;
  display: block;
  height: 0;
  margin: 0 0 15px;
  padding-top: 75%;
  background: #fff;
}
.catalog_node_image img {
  transition: 0.3s;
}
.catalog_node_image:hover img {
  transform: scale(1.05);
}
.catalog_node_image .image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.catalog_node_title {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
  color: #191818;
}
.catalog_node_title a {
  text-decoration: none;
}
.catalog_node_price span {
  display: inline-block;
  padding: 5px 10px;
  font-size: 21px;
  font-weight: 700;
  color: #191818;
  background: #b0cc1f;
}
.catalog_data_image {
  width: 100%;
  margin: 0 0 30px;
}
.catalog_data_image .image {
  height: 270px;
  padding: 15px;
  background: #fff;
}
.catalog_data_content {
  width: 100%;
}
.catalog_data_price {
  margin: 0 0 15px;
}
.catalog_data_price span {
  display: inline-block;
  padding: 5px 10px;
  font-size: 21px;
  font-weight: 700;
  color: #191818;
  background: #b0cc1f;
}
.partner_node {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 40px;
}
.partner_node_image {
  width: 100%;
  height: 150px;
  margin: 0 0 15px;
  padding: 10px;
  background: #ffffff;
}
.partner_node_content {
  width: 100%;
}
.partner_node_title {
  margin: 0 0 15px;
  font-size: 35px;
  font-weight: 600;
  line-height: 40px;
  color: #b0cc1f;
  text-transform: uppercase;
}
.partner_node_text {
  font-size: 16px;
  line-height: 1.4;
  color: #191818;
}
.contact_node_wrap {
  margin: 0 -10px;
}
.contact_node {
  width: 100%;
  margin: 0 10px 40px;
}
.contact_node_title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #aecb1f;
}
.contact_node_phone {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #aecb1f;
}
.contact_node_phone span {
  display: inline-block;
  padding: 0 0 0 45px;
  background: url(/usertpl/i/contact-phone.png) no-repeat left top;
}
.contact_node_whatsapp {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #aecb1f;
}
.contact_node_whatsapp span {
  display: inline-block;
  padding: 0 0 0 45px;
  background: url(/usertpl/i/contact-whatsapp.png) no-repeat left top;
}
.contact_node_content {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.4;
  color: #191818;
}
.contact_node_map {
  height: 400px;
  background: #aaa;
}
.service_node {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 30px;
}
.service_node_image {
  width: 260px;
  margin: 0 20px 0 0;
}
.service_node_image img {
  display: block;
}
.service_node_content {
  width: calc(100% - 280px);
}
.discount_node_wrap {
  margin: 0 -20px;
}
.discount_node {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0 20px 40px;
}
.discount_node_image {
  display: block;
  height: 150px;
  margin: 0 0 15px;
  background: #ffffff;
}
.discount_node_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.discount_node_content {
  width: 100%;
}
.discount_node_title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  color: #b0cc1f;
  text-transform: uppercase;
}
.discount_node_title a {
  text-decoration: none;
}
.discount_data_image {
  margin: 3px 20px 0 0;
  float: left;
}
.discount_data_image img {
  display: block;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .catalog_node {
    width: calc((100% - 80px) / 2);
  }
  .partner_node_image {
    width: 275px;
  }
  .discount_node_image {
    width: 275px;
  }
}
@media (min-width: 768px) {
  .article_node {
    width: calc((100% - 60px) / 2);
  }
  .news_node_image {
    width: 320px;
    margin: 0 20px 0 0;
  }
  .news_node_content {
    width: calc(100% - 340px);
  }
  .gallery_node {
    width: calc((100% - 20px) / 4);
  }
  .file_node_download {
    order: 1;
    width: 200px;
    margin: 0 20px 0 0;
  }
  .file_node_content {
    order: 2;
    width: calc(100% - 220px);
  }
  .catalog_node {
    width: calc((100% - 120px) / 3);
  }
  .catalog_data_image {
    width: 350px;
    margin: 0 30px 30px 0;
  }
  .catalog_data_content {
    width: calc(100% - 380px);
  }
  .partner_node_image {
    margin: 0 25px 0 0;
  }
  .partner_node_content {
    width: calc(100% - 300px);
  }
  .partner_node_reverse .partner_node_image {
    order: 2;
    margin: 0 0 0 25px;
  }
  .partner_node_reverse .partner_node_content {
    order: 1;
    text-align: right;
  }
  .contact_node_title {
    font-size: 23px;
  }
  .contact_node_phone {
    font-size: 23px;
  }
  .contact_node_whatsapp {
    font-size: 23px;
  }
  .discount_node {
    width: calc((100% - 80px) / 2);
  }
}
@media (min-width: 1024px) {
  .article_node {
    width: calc((100% - 90px) / 3);
  }
  .contact_node {
    width: calc((100% - 40px) / 2);
  }
  .contact_node_whatsapp {
    min-height: 32px;
  }
  .discount_node_image {
    margin: 0 25px 0 0;
  }
  .discount_node_content {
    width: calc(100% - 300px);
  }
}
@media (max-width: 768px) {
  .service_node_image {
    width: 100%;
    margin: 0 0 10px;
  }
  .service_node_content {
    width: 100%;
  }
}
/*================================================================================ HEADER */
.mobile {
  position: relative;
  z-index: 99;
  padding: 50px 0 0;
}
.mobile_head {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: #0077c9;
}
.mobile_content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100%;
  padding: 70px 15px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
}
.mobile_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 0 0 0 5px;
  padding: 4px;
  background: url("/usertpl/i/mobile-logo-2020-08-06.png") no-repeat center center / contain;
}
.mobile_logo img {
  display: block;
}
.mobile_name {
  padding: 5px 0 0;
  font-family: 'Gotham Pro';
  font-size: 25px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile_toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 11px;
  background: none;
}
.mobile_menu {
  margin: 0 0 20px;
  padding: 10px;
  background: #0077c9;
}
.mobile_menu_link {
  display: block;
  padding: 5px 10px;
  font-family: 'Gotham Pro';
  font-size: 14px;
  font-weight: 900;
  line-height: 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}
.mobile_menu_link.section-1086 {
  color: #f33;
  background: #fff;
}
.mobile_menu_link:hover,
.mobile_menu_link_active {
  background: #b0cc1f;
}
.mobile_call {
  margin: 0 0 20px;
}
.header {
  padding: 20px 0 0;
}
.header_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: none;
  margin: 0 0 20px;
  width: 257px;
  height: 75px;
  background: url("/usertpl/i/logo-2020-08-06.png") no-repeat center center / contain;
  position: relative;
}
.logo::after {
  content: '';
  display: block;
  background: url("/usertpl/i/newyear-shapka.png");
  width: 47px;
  height: 40px;
  position: absolute;
  top: -9px;
  left: 80px;
}
.hydro_title {
  text-align: right;
  color: #f00;
  font-weight: 700;
}
.hydro_descr {
  text-align: right;
  color: #f00;
  font-size: 10px;
  font-weight: 600;
}
.phone {
  width: 100%;
  margin: 0 0 20px;
  text-align: center;
}
.phone_num {
  font-size: 18px;
  font-weight: 700;
  color: #0077c9;
  text-align: right;
}
.phone_num a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
.phone_num a:hover {
  color: #005996;
}
.phone_num span {
  margin: 0 5px;
  font-weight: 300;
}
.phone_number {
  font-size: 31px;
  font-weight: 600;
  line-height: 50px;
  color: #8f9091;
  text-align: right;
}
.phone_number a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
.phone_number a:hover {
  color: #6d6e6f;
}
.phone_text {
  margin: 5px 0 0;
  font-size: 13px;
  color: #7b7878;
  line-height: 15px;
}
.phone_text span {
  display: inline-block;
  padding: 0 0 0 25px;
  background: url(/usertpl/i/phone-clock.svg) no-repeat left center / 15px;
}
.phone_geo {
  color: #8f9091;
  font-size: 12px;
  text-align: right;
}
.call {
  display: none;
  min-width: 250px;
  margin: 0 0 20px;
}
.call_button {
  margin: 0 0 5px;
}
.call_text {
  font-size: 13px;
  color: #7b7878;
  line-height: 20px;
  text-align: center;
}
.contacts {
  display: none;
  min-width: 250px;
  margin: 0 0 20px;
}
.contacts_text {
  font-size: 13px;
  color: #7b7878;
  line-height: 20px;
  text-align: center;
}
.contacts_text b {
  font-weight: 400;
  color: #393186;
}
.contacts_text a {
  text-decoration: none;
  transition: 0.3s;
}
.contacts_text a:hover {
  color: #6d6e6f;
}
.contacts_text span {
  margin: 0 5px;
}
.contacts_button {
  margin: 0 0 5px;
}
.menu {
  position: relative;
  z-index: 2;
  display: none;
  margin: 0 0 -38px;
}
.menu_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #0077c9;
}
.menu_link {
  display: block;
  padding: 7px 10px 3px;
  font-family: 'Gotham Pro';
  font-size: 14px;
  font-weight: 900;
  line-height: 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}
.menu_link.section-1086 {
  color: #f33;
  background: #fff;
}
.menu_link:hover,
.menu_link_active {
  background: #b0cc1f;
}
@media (min-width: 1024px) {
  .mobile {
    display: none;
  }
  .header {
    display: block;
    padding: 30px 0 10px;
  }
  .logo {
    display: block;
  }
  .phone {
    width: auto;
    text-align: left;
  }
  .call {
    display: block;
  }
  .call_text {
    line-height: 15px;
  }
  .contacts_text {
    line-height: 15px;
  }
  .menu {
    display: block;
  }
  .menu_link {
    padding: 5px 10px;
  }
}
@media (min-width: 1200px) {
  .menu_wrap {
    padding: 23px 30px;
  }
  .menu_link {
    padding: 5px 12px;
    font-size: 15px;
  }
}
/*================================================================================== MAIN */
.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-dot {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  background: #b0cc1f;
  transition: 0.3s;
}
.owl-dot:hover,
.owl-dot.active {
  background: #8aa018;
}
.slider_item {
  position: relative;
}
.slider_item .images {
  position: absolute;
  z-index: 2;
}
@media (max-width: 1024px) {
  .slider_item .images {
    display: flex;
    justify-content: space-around;
    top: 40px;
  }
}
.slider_item .images .image1 {
  z-index: 2;
  position: absolute;
  background: url("/usertpl/i/akc-img-1.png") no-repeat center / contain;
  text-decoration: none;
  color: #fff;
  width: 300px;
  height: 300px;
  text-align: center;
  padding: 265px 0 0;
  display: block;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .slider_item .images .image1 {
    width: 120px;
    height: 120px;
    padding: 90px 0 0;
    position: static;
  }
}
@media (max-width: 1024px) {
  .slider_item .images .image1 .dates {
    display: none;
  }
}
.slider_item .images .image2 {
  background: url("/usertpl/i/akc-img-2.png") no-repeat center / contain;
  text-decoration: none;
  color: #fff;
  position: absolute;
  left: 6px;
  top: 307px;
  z-index: 1;
  width: 300px;
  height: 300px;
  text-align: center;
  padding: 225px 189px 0 40px;
  display: block;
  font-weight: 600;
  font-size: 13px;
}
@media (max-width: 1024px) {
  .slider_item .images .image2 {
    width: 120px;
    height: 120px;
    padding: 90px 0 0;
    position: static;
  }
}
@media (max-width: 1024px) {
  .slider_item .images .image2 .dates {
    display: none;
  }
}
.slider_item.slider_item_reverse .images {
  top: 60px;
  left: calc(50% - 320px);
}
@media (max-width: 1024px) {
  .slider_item.slider_item_reverse .images {
    left: 0;
    width: 100%;
    justify-content: space-around;
    top: 20px;
    position: absolute;
  }
}
.slider_item.slider_item_reverse .slider_button {
  margin: 10px 0 0 auto;
}
@media (max-width: 1024px) {
  .slider_item.slider_item_reverse .slider_button {
    margin: 10px auto 0;
  }
}
.slider_item.slider_item_left .images {
  top: 60px;
  left: calc(50% - 210px);
}
@media (max-width: 1024px) {
  .slider_item.slider_item_left .images {
    left: 0;
    width: 100%;
    justify-content: space-around;
    top: 20px;
    position: absolute;
  }
}
.slider_item.slider_item_left .slider_button {
  margin: 10px auto 0 0;
}
@media (max-width: 1024px) {
  .slider_item.slider_item_left .slider_button {
    margin: 10px auto 0;
  }
}
.slider_item.slider_item_center .slider_block {
  z-index: 2;
}
.slider_item.slider_item_center .images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  top: 240px;
  left: calc(50% - 410px);
  max-width: 920px;
  width: 100%;
}
@media (max-width: 1024px) {
  .slider_item.slider_item_center .images {
    left: 0;
    width: 100%;
    justify-content: space-around;
    top: 20px;
    position: absolute;
  }
}
.slider_item.slider_item_center .images .image1 {
  position: static;
}
.slider_item.slider_item_center .images .image2 {
  position: static;
}
.slider_item img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.slider_block {
  padding: 15px;
}
.slider_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-transform: uppercase;
}
.slider_data {
  line-height: 1.4;
  text-align: center;
}
.slider_left,
.slider_right {
  width: 100%;
  padding: 0 0 10px;
  text-align: center;
}
.slider_text_1 {
  margin: 0;
  font-family: 'Roboto Condensed';
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  color: #0f0f0f;
}
.slider_text_2 {
  margin: 0;
  font-family: 'Gotham Pro';
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}
.slider_button {
  max-width: 235px;
  height: 50px;
  margin: 10px auto 0;
}
.slider .owl-dots {
  padding: 20px 0;
}
.product {
  padding: 15px 0 0;
  background: #f6f6f6;
}
.product_wrap {
  padding: 20px;
  background: #ffffff;
}
.product_image {
  display: none;
  width: 320px;
  margin: 0 40px 0 0;
}
.product_content {
  width: 100%;
}
.product_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 24px;
  font-size: 15px;
  color: #353534;
}
.product_item:last-child {
  margin: 0;
}
.product_item_title {
  flex: 1 1 100%;
  margin: 0 0 10px;
  text-decoration: none;
}
.product_item_title span {
  display: block;
  margin: 0 0 5px;
  padding: 3px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #191818;
}
.product_item_price {
  flex: 1 1 0%;
  margin: 0 15px 0 0;
  text-align: center;
}
.product_item_price span {
  display: block;
  margin: 0 0 5px;
  padding: 3px 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #191818;
  background: #b0cc1f;
}
.product_item_button {
  flex: 0 0 110px;
  text-align: center;
}
.product_item_button button {
  height: 26px;
  margin: 0 0 5px;
  padding: 0 10px;
  border-radius: 0;
  font-family: 'Open Sans';
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}
.step {
  padding: 45px 0;
  background: #f6f6f6;
  overflow: hidden;
}
.step_title {
  margin: 0 0 45px;
}
.step_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -15px;
}
.step_item {
  width: 100%;
  margin: 0 15px 20px;
}
.step_item_num {
  margin: 0;
  font-family: 'Gotham Pro';
  font-size: 50px;
  font-weight: 900;
  color: #aecb1f;
}
.step_item_title {
  margin: 0 0 15px;
  font-family: 'Gotham Pro';
  font-size: 22px;
  font-weight: 900;
  line-height: 25px;
  color: #aecb1f;
}
.step_item_text {
  font-size: 16px;
  line-height: 1.4;
}
.about {
  padding: 45px 0 30px;
}
.about_title {
  margin: 0 0 45px;
}
.about_gallery {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 0 30px;
}
.about_gallery_image {
  height: 200px;
}
.about_gallery_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_gallery .owl-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  z-index: 1;
  width: 100%;
}
.about_content {
  width: 100%;
  margin: 0 0 15px;
}
.about_text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 20px;
  color: #191818;
}
.about_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}
.about_item {
  width: 50%;
  margin: 0 0 15px;
}
.about_item_num {
  position: relative;
  height: 42px;
  margin: 0 0 5px;
  font-family: 'Roboto';
  font-size: 42px;
  color: #0077c9;
}
.about_item_num img {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 0 0;
  transition: 0.3s;
}
.about_item_text {
  font-size: 14px;
  line-height: 18px;
  color: #525454;
}
.about_item_text span {
  display: inline-block;
  padding: 0 0 5px;
  border-bottom: 2px solid #3d3d3e;
}
.about_item_link {
  display: block;
  font-weight: 700;
  text-decoration: none;
}
.about_item_link:hover .about_item_num img {
  margin: 0 0 0 auto;
}
.about_item_link:hover .about_item_num img {
  left: calc(100% - 48px);
}
.about_item_link .about_item_num {
  position: relative;
}
.about_item_link .about_item_num img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.catalog {
  padding: 45px 0 35px;
  overflow: hidden;
  background: #f6f6f6;
}
.catalog_title {
  margin: 0 0 45px;
}
.catalog_text {
  margin: 0 0 30px;
}
.catalog_link {
  margin: 15px 0 0;
}
.service {
  padding: 45px 0 55px;
}
.service_title {
  margin: 0 0 45px;
}
.service_item {
  position: relative;
  width: 50%;
  height: 235px;
  border: 1px solid #fff;
  overflow: hidden;
  background: no-repeat center / cover;
}
.service_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.service_item:nth-child(1n)::before {
  background: #c0e8b6;
}
.service_item:nth-child(2n)::before {
  background: #31bfc2;
}
.service_item:nth-child(3n)::before {
  background: #4394c7;
}
.service_item:nth-child(4n)::before {
  background: #9b60d0;
}
.service_item:nth-child(5n)::before {
  background: #c63f67;
}
.service_item:nth-child(6n)::before {
  background: #c47539;
}
.service_item:nth-child(7n)::before {
  background: #c3b835;
}
.service_item:nth-child(8n)::before {
  background: #a1a1a1;
}
.service_item:hover .service_item_block {
  top: 0;
}
.service_item_block {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #ffffff;
  transition: 0.5s;
}
.service_item:nth-child(1n) .service_item_block {
  background: #c0e8b6;
}
.service_item:nth-child(2n) .service_item_block {
  background: #31bfc2;
}
.service_item:nth-child(3n) .service_item_block {
  background: #4394c7;
}
.service_item:nth-child(4n) .service_item_block {
  background: #9b60d0;
}
.service_item:nth-child(5n) .service_item_block {
  background: #c63f67;
}
.service_item:nth-child(6n) .service_item_block {
  background: #c47539;
}
.service_item:nth-child(7n) .service_item_block {
  background: #c3b835;
}
.service_item:nth-child(8n) .service_item_block {
  background: #a1a1a1;
}
.service_item_descr {
  height: 145px;
  margin: 0 0 18px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #171818;
}
.service_item_image {
  position: relative;
  z-index: 2;
  height: 160px;
}
.service_item_title {
  position: absolute;
  left: 0;
  bottom: 25px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  min-height: 53px;
  margin: 0;
  padding: 8px 10px 7px;
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.6);
}
.service_link {
  margin: 25px 0 0;
}
.service_section {
  margin: 0 0 30px;
}
.gallery {
  background: #f6f6f6;
  padding: 45px 0 60px;
}
.gallery_title {
  margin: 0 0 45px;
}
.gallery_image {
  margin: 0 0 5px;
}
.gallery_image_item {
  position: relative;
  display: block;
  height: 0;
  padding: 75% 0 0;
}
.gallery_image_item img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery_nav_item {
  position: relative;
  height: 0;
  padding: 75% 0 0;
  cursor: pointer;
}
.gallery_nav_item img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery_more {
  margin: 20px 0 0;
}
.gallery_link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100%;
  background: #cfcfcf;
  cursor: pointer;
}
.gallery_link span {
  display: none;
}
.gallery_link svg {
  margin: 0;
}
.gallery .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
}
.gallery .owl-prev,
.gallery .owl-next {
  position: absolute;
  top: 0;
  z-index: 1;
  display: block;
  width: 30px;
  height: 66px;
  margin: -33px 0 0;
}
.gallery .owl-prev {
  left: 0;
  border-radius: 0 4px 4px 0;
  background: #426aa5 url(/usertpl/i/gallery-prev.svg) no-repeat center / 15px;
}
.gallery .owl-prev.disabled {
  display: none;
}
.gallery .owl-next {
  right: 0;
  border-radius: 4px 0 0 4px;
  background: #426aa5 url(/usertpl/i/gallery-next.svg) no-repeat center / 15px;
}
.gallery .owl-next.disabled {
  display: none;
}
.plus {
  padding: 50px 0 20px;
  overflow: hidden;
}
.plus_title {
  margin: 0 0 50px;
}
.plus_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -20px;
}
.plus_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0 20px 30px;
}
.plus_item:hover .plus_item_image img {
  transform: rotate(15deg);
}
.plus_item_image {
  width: 90px;
}
.plus_item_image img {
  display: block;
  transform-origin: 50%;
  transition: 0.2s;
}
.plus_item_content {
  width: calc(100% - 90px);
  color: #2b2b2b;
}
.plus_item_title {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 700;
}
.plus_item_text {
  font-size: 15px;
  line-height: 1.4;
}
.partner {
  padding: 45px 0 30px;
  background: #f6f6f6;
}
.partner_title {
  margin: 0 0 45px;
}
.contact {
  padding: 45px 0 5px;
}
.contact_title {
  margin: 0 0 45px;
}
.mainindex {
  padding: 45px 0 30px;
  background: #f6f6f6;
}
.side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 10;
  transform: translateY(-50%);
}
.side_link {
  display: block;
  width: 35px;
  margin: 0 0 6px auto;
  transform-origin: 100% 50%;
  transition: 0.3s;
}
.side_link:hover {
  transform: scale(1.1);
}
.side_link:active {
  transform: scale(1);
}
.side_link img {
  display: block;
}
.side_link_whatsapp {
  position: absolute;
  right: 0;
  bottom: -100px;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 240px !important;
  border-radius: 10px 0 0 10px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: #00af45;
  transform: translateX(190px);
  transition: 0.3s;
}
.side_link_whatsapp a {
  color: #fff;
}
.side_link_telegram {
  position: absolute;
  right: 0;
  bottom: -50px;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 240px !important;
  border-radius: 10px 0 0 10px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: #00a8d3;
  transform: translateX(190px);
  transition: 0.3s;
}
.side_link_telegram a {
  color: #fff;
}
.inner {
  padding: 25px 0 30px;
  overflow: hidden;
  background: #f6f6f6;
}
.scrolltop {
  position: fixed;
  background: url(/usertpl/i/arrow-up-w.svg) no-repeat center #b0cc1f;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  bottom: 60px;
  left: 10px;
  cursor: pointer;
  opacity: 0;
  transition: 0.9s;
  z-index: 5;
}
.scrolltop.vis {
  opacity: 1;
}
.scrolltop:hover {
  background-color: #ffc514;
}
.callback_text {
  margin: 0 0 15px;
  font-size: 15px;
  line-height: 20px;
}
.callback_form {
  max-width: 500px;
}
@media (min-width: 576px) {
  .about_item {
    width: auto;
  }
  .about_item_num {
    height: 62px;
    font-size: 62px;
  }
  .about_item_num img {
    width: 48px;
    height: 48px;
  }
  .about_item_text {
    padding: 0 0 0 5px;
  }
  .about_item_link .about_item_num img {
    top: 5px;
  }
  .service_item_title {
    padding: 8px 15px 7px;
    font-size: 17px;
  }
  .gallery_image_item {
    padding: 50% 0 0;
  }
  .plus_item {
    width: calc((100% - 80px) / 2);
  }
  .side_link {
    width: 50px;
  }
}
@media (min-width: 768px) {
  .slider_item {
    height: 400px;
  }
  .slider_item img {
    height: 100%;
  }
  .slider_block {
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 0;
  }
  .gallery_link span {
    display: block;
  }
  .gallery_link svg {
    margin: 0 0 0 10px;
  }
}
@media (min-width: 1024px) {
  .slider_left,
  .slider_right {
    width: 50%;
  }
  .slider_left {
    padding: 4px 30px 0 0;
    border-right: 2px solid #0f0f0f;
    text-align: right;
  }
  .slider_right {
    padding: 0 0 4px 30px;
    border-left: 2px solid #0f0f0f;
    text-align: left;
  }
  .slider_text_1 {
    font-size: 61px;
    line-height: 1;
  }
  .slider_text_2 {
    font-size: 34px;
    line-height: 1;
  }
  .slider_button {
    margin: 60px auto 0;
  }
  .slider_button_2 {
    margin: 30px 0 0;
  }
  .slider_item {
    height: 750px;
  }
  .slider_data {
    text-align: left;
    padding: 0 0 0 100px;
  }
  .slider_item_reverse .slider_data {
    text-align: right;
    padding: 0 100px 0 0;
  }
  .slider_item_reverse .slider_button_2 {
    margin: 30px 0 0 auto;
  }
  .slider_block {
    top: 135px;
  }
  .slider .owl-dots {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0;
  }
  .product {
    padding: 0;
  }
  .product_wrap {
    position: relative;
    z-index: 2;
    margin: -80px 0 0;
    padding: 40px;
  }
  .product_item_title {
    flex: 1 1 0%;
    margin: 0 15px 0 0;
  }
  .product_item_price {
    flex: 0 0 160px;
  }
  .step_item {
    width: calc((100% - 120px) / 4);
  }
  .about_gallery {
    margin: 0 20px 30px 0;
  }
  .about_content {
    width: calc(100% - 370px);
  }
  .service_item {
    width: 25%;
    height: 285px;
  }
  .service_item_block {
    padding: 25px;
  }
  .service_item_descr {
    height: 175px;
  }
  .service_item_image {
    height: 210px;
  }
  .plus_item {
    width: calc((100% - 160px) / 4);
    margin: 0 20px 50px;
  }
  .inner {
    padding: 60px 0 30px;
  }
}
@media (min-width: 1200px) {
  .product_image {
    display: block;
  }
  .product_content {
    width: calc(100% - 360px);
  }
  .about_gallery {
    max-width: 430px;
  }
  .about_content {
    width: calc(100% - 450px);
  }
  .about_gallery_image {
    height: 270px;
  }
}
/*================================================================================ FOOTER */
.bottom {
  padding: 40px 0 20px;
  background: #0077c9;
}
.bottom a {
  color: inherit;
}
.bottom_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.bottom_block {
  width: 100%;
  margin: 0 0 20px;
}
.bottom_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bottom_list li {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.warn {
  padding: 0 0 0 25px;
  font-weight: 700;
  text-transform: uppercase;
  background: url(/usertpl/i/warn.svg) no-repeat left center / 20px;
}
.footer {
  padding: 25px 0 5px;
}
.footer_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer_text {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 300;
  line-height: 15px;
  color: #333232;
}
.footer_text a {
  text-decoration: none;
}
.footer_text a:hover {
  border-bottom: 1px solid;
}
@media (max-width: 768px) {
  .product_item {
    margin-bottom: 50px;
  }
  .phone_num {
    font-size: 18px;
  }
  .phone_number {
    font-size: 18px;
    line-height: normal;
  }
  .contact_node_phone,
  .contact_node_whatsapp {
    font-size: 16px;
    line-height: 20px;
  }
  .contact_node_phone span,
  .contact_node_whatsapp span {
    background-size: contain;
  }
}
@media (min-width: 768px) {
  .bottom_block {
    width: 50%;
    padding: 0 20px 0 0;
  }
}
@media (min-width: 1024px) {
  .bottom_block {
    width: 25%;
  }
}
/*============================================================================== SECTIONS */
.section {
  margin: 0 0 20px;
}
.section_wrap {
  margin: 0 -5px;
}
.section_item {
  display: block;
  width: 100%;
  margin: 0 5px 10px;
  padding: 10px 15px;
  font-family: 'Gotham Pro';
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background: #b0cc1f;
  transition: 0.3s;
}
.section_item:hover {
  background: #8aa018;
}
@media (min-width: 768px) {
  .section_item {
    width: calc((100% - 20px) / 2);
  }
}
/*=========================================================================== WAY, PAGING */
.way {
  padding: 15px 0;
  overflow: auto;
  white-space: nowrap;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
}
.way::-webkit-scrollbar {
  display: none;
}
.way a {
  border-bottom: 1px solid;
  text-decoration: none;
}
.paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 -5px 20px;
}
.paging_item {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 5px 10px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 35px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #0077c9;
  transition: 0.3s;
}
.paging_item:hover,
.paging_item_active {
  background: #005996;
}
.way {
  margin: 15px 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 1170px) {
  .way {
    padding: 0 10px;
    margin-top: 15px;
  }
}
.way a {
  font-size: 13px;
  vertical-align: top;
  transition: 0.2s;
}
.way b {
  vertical-align: top;
}
.way .icon {
  display: inline-block;
  background: url(/usertpl/i/way-icon.png) no-repeat center 7px;
  width: 24px;
}
.way .position {
  display: none;
}
/*.push-subscribe-pop {
  display: none;
  position: fixed;
  top: 10px;
  left: ~'calc((100% - 1170px) / 2)';
  background: lighten(#ffc514, 30);
  width: 260px;
  padding: 24px;
  z-index: 100;
  @media (max-width: @max-width) {
    left: 5px;
  }
  //@media (max-width: 460px) {width: ~'calc(100% - 10px)';}
  &::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -16px;
    border: 8px solid;
    border-color: transparent transparent lighten(#ffc514, 30);
    left: 65px;
  }

  .title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .descr {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .btns {
    width: 100%;
    display: flex;
    justify-content: space-between;

    .button {
      font-size: 12px;
      width: 48%;
    }
  }
}*/
