:root {
  --color-text: #000;
  --color-text-light: #333;
  --color-main: #4f8e00;
  --color-main-light: #a5d051;
  --color-main-dark: #427502;
  --color-red: #cc0000;
  --color-green: #4f8e00;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Roboto, Arial, sans-serif;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  background-color: #fff;
  padding-top: 49px;
}

a {
  color: var(--color-main);
  text-decoration: underline;
  transition: text-decoration 0.2s ease;
}
a .black {
  color: var(--color-text);
}
a:hover {
  color: var(--color-main);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.bold, b {
  font-weight: 500;
}

strong, .strong, b.strong {
  font-weight: 600;
}

h1, .h1, h2, h3, h4, h5 {
  font-family: Rubik, Verdana, Arial, sans-serif;
  color: var(--color-text);
  font-weight: 400;
  margin: 20px 0 20px 0;
}

h1, .h1 {
  color: var(--color-main);
  font-size: 30px;
  text-align: center;
}

h2, .h2 {
  font-size: 25px;
  font-weight: 400;
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

h4 {
  font-size: 17px;
  font-weight: 500;
}

h5 {
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  line-height: 150%;
}

dl {
  margin-bottom: 0;
}

.clear {
  clear: both;
}

.nowrap {
  white-space: nowrap;
}

.hide {
  display: none !important;
}

a.zoom {
  outline: none;
}

.flex-2-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-2-col > div:last-child {
  text-align: right;
}

/* ================= */
/* === BUTTONS { === */
.btn, a.btn, .btn:focus, a.btn:focus {
  display: inline-block;
  background-image: linear-gradient(to bottom, #6aad18 0%, #6aad18 50%, var(--color-main) 50%, var(--color-main) 100%);
  box-shadow: none;
  border: 1px solid transparent;
  border-bottom: 1px solid #335c00;
  border-radius: 5px;
  outline: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover, a.btn:hover, .btn:focus:hover, a.btn:focus:hover {
  background-image: none;
  border: 1px solid var(--color-main);
  color: var(--color-main);
}
.btn.orange, a.btn.orange, .btn:focus.orange, a.btn:focus.orange {
  background-image: linear-gradient(to bottom, #f27600 0%, #f27600 50%, #bf5a01 50%, #bf5a01 100%);
  border: 1px solid transparent;
}
.btn.orange:hover, a.btn.orange:hover, .btn:focus.orange:hover, a.btn:focus.orange:hover {
  background-image: none;
  border: 1px solid #f27600;
  color: #f27600;
}
.btn.light, a.btn.light, .btn:focus.light, a.btn:focus.light {
  background-image: none;
  border: 1px solid var(--color-main);
  color: var(--color-main);
}
.btn.light:hover, a.btn.light:hover, .btn:focus.light:hover, a.btn:focus.light:hover {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  color: #fff;
}

/* === BUTTONS } === */
/* ================= */
/* ================ */
/* === FIXED { === */
.block-fixed-bg {
  background-color: #020202;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}
.block-fixed-bg * {
  transition: all 0.2s ease;
}
.block-fixed-bg .block-fixed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 7px 0;
  font-weight: 500;
}
.block-fixed-bg .block-fixed .col-mob-menu {
  display: none;
}
.block-fixed-bg .block-fixed a {
  color: #7db82a;
}
.block-fixed-bg .block-fixed .icon {
  text-decoration: none;
  background-position: left;
  background-repeat: no-repeat;
  padding-left: 30px;
}
.block-fixed-bg .block-fixed .icon:hover {
  text-decoration: underline;
}
.block-fixed-bg .block-fixed .phone {
  background-image: url("/i/phone-green.svg");
}
.block-fixed-bg .block-fixed .mail {
  background-image: url("/i/mail-green.svg");
  background-size: 18px;
}

.top-search-form {
  position: relative;
  margin: 0 10px;
}
.top-search-form .top-search-field {
  font-size: 15px;
  font-style: italic;
  border: 0;
  min-width: 275px;
  width: 100%;
  height: 24px;
  padding-left: 10px;
  padding-right: 35px;
  border-radius: 3px;
  outline: 0;
}
.top-search-form .top-search-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* === FIXED } === */
/* ================ */
/* ================ */
/* === HEADER { === */
header {
  background-image: linear-gradient(to top, #f2f2f2 0%, #fff 40%);
  background-position: bottom;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header * {
  transition: all 0.2s ease;
}
header .header .worktime {
  font-weight: 500;
  font-size: 14px;
}
header .header .worktime ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header .header .worktime ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 0;
}
header .header .worktime ul li .orange {
  color: #c0831e;
}
header .header .worktime .marker i:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--color-main);
  border-radius: 3px;
  margin: 2px 0;
}
header .header .worktime .orange .marker i:before {
  background-color: #c0831e;
}
header .header .worktime .red {
  color: #cc0000;
}
header .header .worktime .red .marker i:before {
  background-color: #cc0000;
}
header .header .worktime .time {
  padding-left: 10px;
}
header .header .phones {
  font-size: 30px;
  color: var(--color-main);
  line-height: 120%;
}
header .header .phones a span {
  font-size: 20px;
}
header .header a {
  text-decoration: none;
  font-weight: 400;
}
header .header a:hover {
  color: rgba(79, 142, 0, 0.7);
  text-decoration: underline;
}
header .header .icon:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: 32px;
  margin-right: 20px;
  transition: all 0.2s ease;
}
header .header .icon:hover:before {
  opacity: 0.7;
  transition: all 0.2s ease;
}
header .header .phone-land:before {
  background-image: url("/i/phone-land.svg");
}
header .header .phone-mob:before {
  background-image: url("/i/phone-mob.svg");
}
header .header .contacts {
  font-size: 20px;
  color: var(--color-main);
  line-height: 200%;
}
header .header .address:before {
  background-image: url("/i/address.svg");
}
header .header .email:before {
  background-image: url("/i/mail.svg");
}

/* === HEADER } === */
/* ================ */
/* ================= */
/* === TOP MENU { ===*/
.navi-top {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.navi-top * {
  transition: all 0.2s ease;
}
.navi-top a {
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  color: #000;
}
.navi-top a:hover, .navi-top a a:active {
  color: var(--color-main);
}
.navi-top a:hover .icon img, .navi-top a a:active .icon img {
  opacity: 0.7;
}
.navi-top .icon {
  height: 70px;
  position: relative;
}
.navi-top .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.navi-top .icon .basket-menu-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  line-height: 20px;
  border-radius: 10px;
  background-color: var(--color-red);
  color: #fff;
  font-size: 14px;
  padding: 0 4px;
  position: absolute;
  top: 0;
  right: 0;
}
.navi-top .title {
  padding: 5px;
  line-height: 130%;
}

/* === TOP MENU } ===*/
/* ================= */
.block-mob-search {
  display: none;
  background-color: var(--color-main-dark);
  padding: 10px 0;
}

/* ===================== */
/* === CATALOG MENU { ===*/
.nav-catalog-main {
  background-image: url("/i/top-menu-bg.png");
  background-repeat: repeat-x;
  background-position: center;
  border-top: 1px solid #b4b4b4;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 5;
}
.nav-catalog-main::after {
  content: "";
  display: block;
  background-image: url("/i/top-block-shadow.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.catalog {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  background-image: url("/i/top-menu-sep.png");
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 2px;
}
.catalog * {
  transition: all 0.2s ease;
}
.catalog li {
  flex: 1;
  text-align: center;
  line-height: 100%;
  color: #08335e;
  height: 39px;
  font-size: 15px;
  font-weight: 400;
  font-family: Verdana;
  background-image: url("/i/top-menu-sep.png");
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  /* 2d LEVEL */
}
.catalog li:hover {
  background-color: #fff;
}
.catalog li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #08335e;
  text-decoration: none;
  height: 100%;
  padding: 0 10px;
}
.catalog li .popup {
  display: flex;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 5px 5px;
  position: absolute;
  top: -5000px;
  left: -2px;
  opacity: 0;
}
.catalog li .popup.active {
  top: auto;
  opacity: 1;
}
.catalog li .popup .column {
  flex: min-content;
}
.catalog li .popup ul {
  list-style: none;
  margin: 0;
  padding: 10px;
}
.catalog li .popup ul li {
  text-align: left;
  background-image: none;
  height: auto;
  color: var(--color-text);
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  /* 3d LEVEL */
}
.catalog li .popup ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  color: var(--color-text);
  margin-bottom: 5px;
}
.catalog li .popup ul li a .icon {
  width: 32px;
  text-align: center;
  margin-right: 10px;
}
.catalog li .popup ul li a:hover {
  text-decoration: underline;
}
.catalog li .popup ul li ul {
  list-style: none;
  margin: 5px 0 0 55px;
  padding: 0;
}
.catalog li .popup ul li ul li {
  float: none;
  font-size: 15px;
  font-weight: 300;
  text-transform: lowercase;
  margin-bottom: 5px;
}
.catalog li .popup ul li ul li a {
  display: inline;
  padding: 0;
}
.catalog li:hover .popup {
  top: auto;
  opacity: 1;
}

/* === CATALOG MENU } ===*/
/* ===================== */
.wrapper {
  background-image: url("/i/bg.png");
}

.layout {
  display: flex;
  background-color: #fff;
  min-height: 300px;
  box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

aside {
  flex: 0 0 320px;
  padding: 0 20px 20px 20px;
}
aside .sticky {
  position: sticky;
  top: 60px;
}
aside .block {
  background-color: #F1F1F1;
  border-radius: 7px;
  padding: 20px;
  margin-bottom: 30px;
}
aside .block ul.list {
  padding-left: 30px;
  margin-bottom: 0;
  line-height: 1.2;
}
aside .block .title {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--color-text-light);
}
aside .block .cross {
  background-image: url("/i/cross-dark.svg");
}

main {
  flex: 1;
  padding: 0 20px 20px 20px;
}

ul.list {
  list-style-image: url("/i/arrow.svg");
}
ul.list li {
  margin: 5px 0;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-weight: 400;
}

.block-dark {
  border-radius: 7px;
  background-color: #F1F1F1;
  padding: 20px 10px 20px 20px;
}

/* === Nav Main Catalog { === */
.block-nav-main {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 40px 20px;
  margin-bottom: 30px;
}

.nav-main-catalog {
  display: flex;
  flex-direction: column;
  width: 230px;
  height: 100%;
  font-family: Verdana;
  font-size: 14px;
}
.nav-main-catalog .header {
  border-radius: 5px 5px 0 0;
  border: 1px solid #c3c3c3;
  border-bottom: 0;
  position: relative;
}
.nav-main-catalog .header .image {
  position: relative;
  margin: -1px -1px 0 -1px;
}
.nav-main-catalog .header .title {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  margin-top: -6px;
  text-transform: uppercase;
  color: #fff;
  font-family: Tahoma;
  font-size: 19px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.nav-main-catalog .text {
  flex: 1;
  font-weight: 400;
  border: 1px solid #c3c3c3;
  border-top: 0;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.nav-main-catalog .text ul {
  margin: 0;
  padding: 10px 0 20px 10px;
  list-style: none;
}
.nav-main-catalog .text ul li {
  margin: 0;
  padding: 4px 0 4px 13px;
  line-height: 1.2;
  background-position: 0 10px;
  background-repeat: no-repeat;
}
.nav-main-catalog .text a {
  text-decoration: none;
}
.nav-main-catalog .text a:hover {
  text-decoration: underline;
}
.nav-main-catalog .btn-more {
  margin-top: auto;
  text-align: center;
  position: relative;
}
.nav-main-catalog .btn-more::before {
  display: block;
  content: url("/i/show-shadow.png");
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
}
.nav-main-catalog .btn-more a {
  display: block;
  width: 170px;
  margin: 0 auto;
  padding: 12px 5px 2px 5px;
  background-color: #2492e6;
  border-radius: 0 0 5px 5px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  top: -10px;
  transition: top 0.2s ease;
}
.nav-main-catalog .btn-more:hover a {
  top: 0;
  transition: top 0.5s ease;
}
.nav-main-catalog.color-blue {
  --color: #2492e6;
}
.nav-main-catalog.color-blue .text {
  color: var(--color);
}
.nav-main-catalog.color-blue .text a {
  color: var(--color);
}
.nav-main-catalog.color-blue .text ul li {
  background-image: url("/i/marker/2492e6.png");
}
.nav-main-catalog.color-blue .btn-more a {
  background-color: var(--color);
}
.nav-main-catalog.color-orange {
  --color: #d53c00;
}
.nav-main-catalog.color-orange .text {
  color: var(--color);
}
.nav-main-catalog.color-orange .text a {
  color: var(--color);
}
.nav-main-catalog.color-orange .text ul li {
  background-image: url("/i/marker/d53c00.png");
}
.nav-main-catalog.color-orange .btn-more a {
  background-color: var(--color);
}

/* === Nav Main Catalog } === */
/* === Cookie Agreement { === */
.cookie-agreement {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  color: #000;
  width: 100%;
  z-index: 10000000000;
}
.cookie-agreement * {
  transition: all 0.2s ease;
}
.cookie-agreement .cookie-text {
  padding: 20px;
  font-size: 15px;
}
.cookie-agreement .cookie-text a {
  color: #000;
}
.cookie-agreement .cookie-btn {
  padding: 20px 20px 20px 0;
}

@media screen and (max-width: 767px) {
  .cookie-agreement {
    align-items: flex-start;
  }
}
/* === Cookie Agreement } === */
.agreement {
  background-image: url("/i/check-small.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  padding-left: 20px;
  font-size: 11px;
  color: #999;
  font-family: Arial;
}
.agreement a {
  color: #999;
}

.tabs {
  display: flex;
  padding: 0 10px;
  list-style: none;
  gap: 10px;
}
.tabs li {
  margin: 0;
  padding: 5px 15px;
  cursor: pointer;
  position: relative;
}
.tabs li a {
  font-weight: 400;
  text-decoration: none;
  color: var(--color-main);
  border-bottom: 1px dashed var(--color-main);
}
.tabs li.active, .tabs li:hover {
  border-radius: 13px;
  background-color: var(--color-main);
}
.tabs li.active::after, .tabs li:hover::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-top: 6px solid var(--color-main);
  border-right: 6px solid transparent;
}
.tabs li.active a, .tabs li:hover a {
  color: #fff;
}

.tab-content {
  padding: 0 15px;
}
.tab-content > div {
  display: none;
}
.tab-content > div:first-child {
  display: block;
}

.msg {
  border: 1px solid #eee;
  padding: 10px 20px 10px 50px;
  background: #f4f0e9 url("/i/warning.svg") 15px center no-repeat;
  background-size: 20px;
  line-height: 150%;
}

/* === FOOTER Styles { === */
footer {
  background-image: linear-gradient(to bottom, #3e3c3c, #000);
  color: #999;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
}
footer .font-small {
  font-family: Verdana;
  font-size: 12px;
  line-height: 1.3;
}
footer .font-small b {
  font-weight: 600;
}
footer a:hover {
  color: var(--color-main-light);
}
footer .footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
footer .footer .col1, footer .footer .col3 {
  flex: 0 0 300px;
  text-align: center;
}
footer .footer .col2 {
  flex: 1;
  text-align: center;
  padding-top: 10px;
}
footer .footer .logo .title {
  margin-top: 20px;
}
footer .footer .block {
  margin-top: 20px;
}
footer .footer .vk {
  display: flex;
  justify-content: center;
  padding-left: 60px;
}
footer .footer .phone {
  color: #fff;
  font-size: 25px;
  font-family: Arial;
  white-space: nowrap;
}
footer .footer .phone a {
  color: #fff;
  text-decoration: none;
}
footer .footer .phone a:hover {
  text-decoration: underline;
}
footer .footer .address {
  color: #fff;
  margin-top: 10px;
}
footer .footer .email {
  margin: 10px 0 30px 0;
}
footer .footer .email a {
  color: #fff;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
footer nav ul li {
  margin: 3px 0;
  padding: 0 10px;
  border-right: 1px solid #fff;
}
footer nav ul li:last-child {
  border-right: 0;
}
footer nav ul li a {
  color: #fff;
  text-decoration: none;
}
footer nav ul li a:hover {
  text-decoration: underline;
}
footer nav:first-child::after {
  display: block;
  content: "";
  background-image: url("/i/footer-line.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 14px;
}

/* === FOOTER } === */
.cert-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.cert-gallery .item {
  width: calc(25% - 20px);
  border: 1px solid #ccc;
}
.cert-gallery .item img {
  width: 100%;
}

.photos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.photos > div {
  width: calc(20% - 8px);
}
.photos > div img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

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