@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
  width: 100%;
  min-width: 320px;
  color: #000;
  background: #fff;
  font: 16px/120% "Roboto", sans-serif;
  cursor: default;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  height: auto !important;
  min-height: 100%;
  height: 100%;
  position: relative;
}

html, body, div, applet, object, iframe, blockquote, pre, abbr, acronym, address, big, select, input, textarea,
cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dd, dl, dt, fieldset, form, label, legend, caption, h1, h2, h3, h4, h5 {
  font: 16px/120% "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
}

a img, :link img, :visited img {
  border: 0;
}

p {
  padding: 0px;
  margin: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}

a {
  cursor: pointer;
  outline: none;
  color: #000;
  text-decoration: none;
  font: 16px/120% "Roboto", sans-serif;
}

a:hover {
  text-decoration: none;
}

.cl:after {
  content: "";
  display: block;
  clear: both;
}

.hand {
  cursor: pointer;
}

.display_none {
  display: none;
}

input, select, textarea, button {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: unset;
  border: unset;
}

textarea {
  outline: none;
  resize: none;
  overflow: auto;
}

ul {
  list-style: none;
}

/* site styles */
.z_top_block_2, .z_footer, .z_content, .z_top_block, .z_header_content {
  max-width: 1400px;
  padding: 0 15px;
  margin: 0 auto;
}

.z_h2 {
  font-size: 44px;
}
.z_h2.hidden {
  display: none;
}

.z_h3 {
  font-size: 25px;
  font-weight: 700;
}

.z_h6 {
  font-size: 14px;
  color: #1D52DE;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.z_top_wrapper {
  width: 100%;
  height: 100vh;
  background: url(../images/z_top_bg.jpg) center/cover no-repeat;
  position: relative;
}
.z_top_wrapper:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
}

.z_header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  color: #fff;
  border-bottom: 1px solid #757575;
}
.z_header a {
  color: #fff;
}
.z_header.fixed {
  background: #fff;
  color: #000;
}
.z_header.fixed a {
  color: #000;
}
.z_header.fixed .z_logo {
  filter: brightness(0);
}
.z_header.fixed .zhs_btn {
  background-color: rgba(35, 92, 242, 0.1);
}
.z_header.fixed .zhs_btn:before {
  filter: brightness(0.4) sepia(1) hue-rotate(200deg) saturate(4);
}
.z_header.fixed .zhs_btn.opened {
  background-color: rgba(35, 92, 242, 0.5);
}
.z_header.fixed .burger > span {
  background: #1D52DE;
}
.z_header.fixed .burger > span:before, .z_header.fixed .burger > span:after {
  background: #1D52DE;
}

.z_header_content {
  height: 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  position: relative;
}

.burger {
  display: none;
  position: absolute;
  width: 22px;
  height: 18px;
  left: 15px;
  top: 20px;
  cursor: pointer;
}
.burger.opened span {
  height: 0;
}
.burger.opened span:before {
  top: 50%;
  transform: rotate(-45deg);
}
.burger.opened span:after {
  top: 50%;
  transform: rotate(45deg);
}
.burger:hover {
  opacity: 0.7;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 8px;
}
.burger span:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: -8px;
  transition: 0.3s;
}
.burger span:after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 8px;
  transition: 0.3s;
}

.z_logo {
  max-width: 180px;
  transition: 0.3s;
}

.zh_block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex: 1;
}

.z_nav {
  flex: 1;
}
.z_nav > ul {
  height: 60px;
  display: flex;
  justify-content: space-between;
}
.z_nav > ul > li {
  flex: 1;
  position: relative;
}
.z_nav > ul > li ul {
  display: none;
  width: 300px;
  background: #fff;
  flex-direction: column;
  padding: 15px 0;
  position: absolute;
  top: 59px;
  left: 0;
}
.z_nav > ul > li ul li > ul {
  height: unset;
  overflow: unset;
  top: 0;
  left: 300px;
}
.z_nav > ul > li ul li a {
  display: block;
  color: #000;
  padding: 10px 0 10px 15px;
  font-size: 14px;
  line-height: 120%;
  transition: 0.3s;
  padding-left: 40px;
  position: relative;
}
.z_nav > ul > li ul li a:active {
  color: #1D52DE;
}
.z_nav > ul > li ul li a > i {
  width: 36px;
  text-align: center;
  font-style: normal;
  position: absolute;
  left: 0;
  top: 0;
}
.z_nav > ul > li ul li a > i:before {
  display: block;
  content: "+";
  font-size: 26px;
  line-height: 36px;
  font-weight: 300;
  font-style: normal;
  color: #818181;
  transition: 0.3s;
}
.z_nav > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
}
.z_nav > ul > li > a:active {
  color: #1D52DE;
}
.z_nav > ul > li > a.zh_cat_btn {
  gap: 10px;
  background: #1D52DE;
  font-weight: 700;
  color: #fff;
}
.z_nav > ul > li > a.zh_cat_btn > i {
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: relative;
  transition: 0.3s;
}
.z_nav > ul > li > a.zh_cat_btn > i:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 5px;
  transition: 0.3s;
}

.zh_search_block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zhs_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: 0.3s;
  cursor: pointer;
}
.zhs_btn:hover {
  background: #1D52DE;
}
.zhs_btn.opened {
  background: rgba(255, 255, 255, 0.3);
}
.zhs_btn.opened:before {
  display: none;
}
.zhs_btn.opened:after {
  display: block;
}
.zhs_btn:before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/amp.svg) center/cover no-repeat;
}
.zhs_btn:after {
  display: none;
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/close_w.svg) center/cover no-repeat;
}

.zhs_popup {
  display: none;
  height: 40px;
  width: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 60px;
}
.zhs_popup > input {
  display: block;
  height: 40px;
  width: calc(100% - 40px);
  padding: 0 15px;
  font-size: 14px;
}

.zhsp_search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.zhsp_search:hover:before {
  filter: brightness(50%);
}
.zhsp_search:before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/amp.svg) center/cover no-repeat;
  filter: brightness(0);
  transition: 0.3s;
}

.zh_email, .zh_tel {
  display: flex;
  height: 60px;
  align-items: center;
  transition: 0.3s;
}
.zh_email:hover > span > span:before, .zh_tel:hover > span > span:before {
  width: 100%;
}
.zh_email > span, .zh_tel > span {
  font-size: 14px;
}
.zh_email > span > span, .zh_tel > span > span {
  display: inline-block;
  font-size: 16px;
  position: relative;
}
.zh_email > span > span:before, .zh_tel > span > span:before {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 0.3s;
}

.zh_tel_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  background: #1D52DE;
  border-radius: 50%;
  transition: 0.3s;
}
.zh_tel_icon:hover {
  background: #fff;
}
.zh_tel_icon:hover:before {
  filter: brightness(0);
}
.zh_tel_icon:before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/tel.svg) center/cover no-repeat;
  transition: 0.3s;
}

.z_top_block {
  height: calc(100vh - 60px);
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.z_h1 {
  font-size: 58px;
  font-weight: 400;
  color: #fff;
}

.ztb_text {
  font-size: 16px;
  color: #fff;
}

.ztb_btn, .b6_cat_btn {
  max-width: 280px;
  width: 100%;
  height: 66px;
  border: 1px solid #fff;
  border-radius: 30px;
  font-size: 14px;
  line-height: 64px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.ztb_btn:hover, .b6_cat_btn:hover {
  background: #fff;
  color: #1D52DE;
}

/*стили модальных окон*/
.mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}

.boxes .window {
  display: none;
  max-width: 580px;
  width: 100%;
  max-height: 90dvh;
  overflow: auto;
  background: #ffffff;
  border-radius: 10px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}

.close, .tp_close {
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 20px;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}
.close:hover, .tp_close:hover {
  opacity: 1;
}
.close:before, .tp_close:before {
  display: block;
  content: "";
  width: 25px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.close:after, .tp_close:after {
  display: block;
  content: "";
  width: 25px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.m_content {
  padding: 40px 20px 20px;
}

.mc_head {
  font-size: 40px;
  text-align: center;
}

.mc_text {
  font-size: 14px;
  text-align: center;
  margin-top: 30px;
}

.mc_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.mcf_input, .mcf_area {
  height: 64px;
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 16px;
}
.mcf_input:focus, .mcf_area:focus {
  background: #fff;
}

.mcf_area {
  height: 110px;
  padding: 10px;
}

.mc_data {
  text-align: center;
  color: #757575;
  font-size: 12px;
  margin-top: 20px;
}
.mc_data > a {
  font-size: 12px;
  color: #757575;
  text-decoration: underline;
}
.mc_data > a:hover {
  text-decoration: none;
}

.mcf_submit {
  display: block;
  width: 100%;
  height: 44px;
  background: #1D52DE;
  border-radius: 20px;
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  line-height: 44px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
.mcf_submit:hover {
  background: #001736;
}

.z_section {
  padding: 100px 0;
}

.b_1 {
  background: #001736;
  padding: 0;
}

.zb1_items {
  display: flex;
  min-height: 380px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}

.zb1_item:nth-child(1) {
  flex-shrink: 0;
}

.zb1i_head {
  font-size: 72px;
  color: #fff;
  font-weight: 600;
}
.zb1i_head > span {
  font-size: 44px;
  font-weight: 400;
  color: #1D52DE;
}

.zb1i_text {
  font-size: 20px;
  color: #fff;
}

.b_2 {
  padding: 100px 0;
  background: #F2F2F2;
}
.b_2 .z_content {
  position: relative;
}

.zb2_all, .zrb_btn, .b9_submit, .b6_apl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 200px;
  height: 54px;
  background: #1D52DE;
  border-radius: 76px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s;
  position: absolute;
  right: 15px;
  top: 90px;
}
.zb2_all:after, .zrb_btn:after, .b9_submit:after, .b6_apl:after {
  display: block;
  content: "";
  width: 32px;
  height: 22px;
  background: url(../images/arrow_r_w.svg) center/cover no-repeat;
}
.zb2_all:hover, .zrb_btn:hover, .b9_submit:hover, .b6_apl:hover {
  background: #000;
}

.goods_slider {
  margin: 40px auto 0;
}
.goods_slider .owl-dots {
  display: none;
}

.services_slider {
  margin: 40px auto 0;
}
.services_slider .owl-dots, .services_slider .owl-nav {
  display: none;
}
.services_slider .gs_content:hover > img {
  transform: unset;
  filter: brightness(110%);
}
.services_slider .gs_content:hover .gsc_name {
  background: unset;
  color: #1D52DE;
}
.services_slider .gsc_name {
  width: unset;
  position: static;
  color: #000;
  background: none;
  padding: 0;
  margin-top: 15px;
}

.owl-prev, .owl-next {
  display: block;
  width: 50px;
  height: 50px;
  background: #001736 url(../images/arrow_r_w.svg) center/32px no-repeat !important;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: calc(50% - 25px);
  transition: 0.3s;
}
.owl-prev:active, .owl-next:active {
  background-color: #fff !important;
}
.owl-prev > span, .owl-next > span {
  display: none !important;
}

.owl-prev {
  left: 5px;
  transform: rotate(180deg);
}

.owl-next {
  right: 5px;
}

.gs_content {
  display: block;
  overflow: hidden;
  transition: 0.3s;
}
.gs_content:hover > img {
  transform: scale(1.2);
}
.gs_content:hover .gsc_name {
  background: #1D52DE;
}
.gs_content > img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: 0.5s;
}

.gsc_name {
  display: block;
  width: calc(100% - 20px);
  padding: 20px;
  background: #001736;
  font-size: 25px;
  line-height: 120%;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.b_4 {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.b_4 .z_content {
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.b4_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.b4_block {
  background: #fff;
  max-width: 930px;
  padding: 70px;
}
.b4_block p {
  font-size: 16px;
  line-height: 150%;
  color: #757575;
  margin-top: 15px;
}

.b_5 {
  background: #F2F2F2;
  padding-bottom: 190px;
}
.b_5 .z_h6, .b_5 .z_h2 {
  text-align: center;
}

.b5_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin-top: 20px;
}

.b5_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 30px 20px;
  transition: 0.3s;
}
.b5_item:nth-child(3), .b5_item:nth-child(7) {
  transform: translateY(30px);
}
.b5_item:nth-child(2), .b5_item:nth-child(6) {
  transform: translateY(60px);
}
.b5_item:nth-child(1), .b5_item:nth-child(5) {
  transform: translateY(90px);
}
.b5_item:hover {
  background: #001736;
}
.b5_item:hover .b5i_head, .b5_item:hover .b5i_text {
  color: #fff;
}

.b5i_icon {
  display: block;
  width: 32px;
  height: 32px;
}

.b5i_head {
  font-size: 16px;
  transition: 0.3s;
}

.b5i_text {
  color: #757575;
  font-size: 13px;
  line-height: 130%;
  transition: 0.3s;
}

.b_6 {
  background: #1D52DE;
  padding: 0;
  position: relative;
}

.b6_img {
  display: block;
  width: 670px;
  height: 491px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.b6_block {
  max-width: 610px;
  width: calc(100% - 600px);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.b6_text {
  font-size: 20px;
  line-height: 150%;
}

.b6_btns {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.b6_apl {
  position: static;
  background: #001736;
  max-width: 240px;
  width: 100%;
  height: 66px;
  line-height: 66px;
}

.b6_cat_btn {
  max-width: 225px;
}

.certs_slider {
  margin: 40px auto 0;
}
.certs_slider .owl-dots {
  display: none;
}

.cs_content {
  display: block;
}
.cs_content:hover .cs_img > img {
  transform: scale(1.1);
}

.cs_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background: #F2F2F2;
  margin-bottom: 20px;
}
.cs_logo > img {
  display: block;
  max-height: 80%;
  max-width: 90%;
}

.cs_img {
  display: block;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.cs_img > img {
  display: block;
  transition: 0.5s;
}

.b_8 .z_h2 {
  font-size: 20px;
  font-weight: 700;
}
.b_8 p {
  font-size: 16px;
  line-height: 150%;
  color: #757575;
  margin-top: 20px;
}

.b8_list {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
  margin-top: 20px;
}
.b8_list > li {
  padding-left: 25px;
  font-size: 16px;
  line-height: 150%;
  color: #757575;
  position: relative;
}
.b8_list > li:before {
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #1D52DE;
  position: absolute;
  left: 0;
  top: 7px;
}

.b_9 {
  background: #F2F2F2;
  padding-bottom: 0 !important;
  position: relative;
}
.b_9:before {
  display: block;
  content: "";
  width: 50%;
  height: calc(100% - 100px);
  background: #001736;
  position: absolute;
  left: 0;
  bottom: 0;
}
.b_9 .z_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.b_9 .z_content > div {
  width: calc(50% - 10px);
  padding: 50px;
}
.b_9 .z_content > div.b9_right {
  padding-top: 0;
}

.b9_form {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}

.b9_input, .b9_area {
  display: block;
  width: calc(50% - 10px);
  height: 60px;
  background: none;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  padding: 0 15px;
}
.b9_input:nth-child(1), .b9_area:nth-child(1) {
  width: 100%;
}

.b9_area {
  width: 100%;
  height: 160px !important;
  padding: 10px 15px;
}

.b9_bot {
  display: flex;
  width: 100%;
  margin-top: 30px;
  gap: 20px;
}
.b9_bot > div, .b9_bot > input {
  width: calc(50% - 10px);
}

.b9_data {
  font-size: 14px;
  line-height: 130%;
  color: #fff;
}
.b9_data > a {
  font-size: 14px;
  line-height: 130%;
  color: #fff;
  text-decoration: underline;
}
.b9_data > a:hover {
  text-decoration: none;
}

.b9_submit {
  width: unset;
  position: static;
  cursor: pointer;
}

.b9_text {
  font-size: 18px;
  margin-top: 30px;
}

.b9_items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #757575;
}

.b9_item {
  padding-left: 72px;
  position: relative;
}
.b9_item:before {
  display: block;
  content: "";
  width: 56px;
  height: 56px;
  background: #001736 url(../images/email_yel_21x16.svg) center/21px no-repeat;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.b9_item > i {
  display: flex;
  font-style: normal;
  font-size: 14px;
  color: #757575;
  margin-bottom: 13px;
}
.b9_item > span {
  display: block;
  font-size: 16px;
}
.b9_item.b9i_tel:before {
  background: #001736 url(../images/tel.svg) center/18px no-repeat;
}

.z_footer_wrap {
  background: #000;
  padding: 15px 0;
}

.z_copy {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.z_top_wrapper_2 {
  background: #001736;
}

.z_top_block_2 {
  padding-top: 130px;
  padding-bottom: 80px;
}

.z_crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-bottom: 15px;
}
.z_crumbs > li {
  font-size: 16px;
  text-transform: uppercase;
  color: #757575;
  position: relative;
}
.z_crumbs > li:last-child:after {
  display: none;
}
.z_crumbs > li:after {
  display: block;
  content: "/";
  font-size: 16px;
  color: #757575;
  position: absolute;
  right: -16px;
  top: 0;
}
.z_crumbs > li > a {
  font-size: 16px;
  color: #1D52DE;
  padding-left: 17px;
  position: relative;
}
.z_crumbs > li > a:before {
  display: block;
  content: "";
  width: 9px;
  height: 16px;
  background: url(../images/chev_l.svg) center/5px no-repeat;
  filter: invert(24%) sepia(72%) saturate(3391%) hue-rotate(221deg) brightness(88%) contrast(99%);
  color: #1D52DE;
  position: absolute;
  left: 0;
  top: 0;
}

.zg_name {
  font-size: 40px;
}

.z_cat {
  margin-top: 20px;
}
.z_cat .z_h2 {
  font-size: 28px;
}

.zc_top {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}
.zc_top > a {
  background: #E6EAF4;
  border-radius: 24px;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 120%;
  color: #001736;
  transition: 0.3s;
}
.zc_top > a:hover {
  background: #1D52DE;
  color: #fff;
}

.zc_top_show_all {
  display: none;
  text-align: center;
  margin-top: 20px;
}
.zc_top_show_all > span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #1D52DE;
  text-decoration: underline;
  cursor: pointer;
}
.zc_top_show_all > span:hover {
  text-decoration: none;
}

.zc_center {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.zc_left {
  width: calc(100% - 320px);
  padding-bottom: 20px;
}

.zc_right {
  width: 290px;
}

.zc_filter_btn {
  display: none;
  width: 250px;
  height: 35px;
  background: #1D52DE;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.zc_filter_btn:hover {
  opacity: 0.7;
}
.zc_filter_btn.opened:before {
  content: "Скрыть фильтр";
}
.zc_filter_btn:before {
  display: block;
  content: "Показать фильтр";
  font-size: 18px;
  line-height: 35px;
  color: #fff;
}

.zc_filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow: hidden;
  margin-top: 20px;
}
.zc_filter select {
  display: block;
  width: 194px;
  height: 35px;
  background: #fff;
  border: 1px solid #E4E5E7;
  padding: 0 30px 0 10px;
  font-size: 12px;
  color: #858895;
  appearance: none;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23858895' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") right 10px center/12px no-repeat;
}

.zc_table {
  margin-top: 20px;
}

.zct_line {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: space-between;
  align-items: center;
}
.zct_line.z_head {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  /* margin-bottom: 20px; */
}
.zct_line.z_head > div {
  color: #1D52DE;
}
.zct_line > div {
  width: 15%;
  font-size: 16px;
}
.zct_line > div > span {
  color: #757575;
}
.zct_line > div:first-child {
  width: 20%;
}
.zct_line > div:last-child {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.zct_name {
  display: inline-block;
  max-width: 90%;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  padding: 5px;
  border-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.zct_name.opened {
  padding-bottom: 15px;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #fff;
  transform: translateY(7px);
}
.zct_name:hover {
  border: 1px solid #1D52DE;
  background: #1D52DE;
  color: #fff;
}

.zct_appl {
  display: inline-block;
  width: 100%;
  max-width: 150px;
  height: 40px;
  background: #E6EAF4;
  border-radius: 20px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
.zct_appl:hover {
  background: #1D52DE;
  color: #fff;
}

.zct_popup {
  display: none;
  padding: 30px;
  border: 1px solid #e0e0e0;
  position: relative;
  margin-top: -1px;
}

.tp_close {
  right: 15px;
  top: 15px;
}

.tp_name {
  font-size: 22px;
  color: #1D52DE;
}

.tp_center {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.tp_table {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.tp_img {
  max-width: 320px;
  width: 100%;
  padding-top: 10px;
}
.tp_img > img {
  display: block;
  width: 100%;
}

.tp_line {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.tp_line > div {
  background: #fff;
  padding: 0 7px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.tp_line > div:nth-child(2) {
  color: #1D52DE;
}
.tp_line:before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 2px dotted #e0e0e0;
  position: absolute;
  left: 0;
  bottom: 3px;
}

.tp_bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F2F2F2;
  padding: 20px;
  margin-top: 25px;
}

.tpb_head {
  font-size: 12px;
  color: #757575;
}
.tpb_head > span {
  display: block;
  color: #000;
  font-size: 25px;
  line-height: 120%;
  font-weight: 600;
  margin-top: 4px;
}

.tpb_btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tpb_btns > a, .tpb_btns > div {
  height: 44px;
  padding: 0 32px;
  border: 1px solid #1D52DE;
  border-radius: 20px;
  font-size: 12px;
  line-height: 42px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}
.tpb_btns > a:hover {
  background: #1D52DE;
  color: #fff;
}
.tpb_btns > div {
  background: #1D52DE;
  color: #fff;
}
.tpb_btns > div:hover {
  background: #000;
  border: 1px solid #000;
}

.z_listing {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}
.z_listing a {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  transition: 0.3s;
}
.z_listing a.current, .z_listing a:hover {
  background: #1D52DE;
  color: #fff;
}

.zr_cat {
  border: 1px solid #e0e0e0;
  border-top: 3px solid #1D52DE;
}
.zr_cat li {
  display: block;
  position: relative;
}
.zr_cat li.zrc_head {
  display: block;
  width: 100%;
  min-height: 46px;
  font-size: 18px;
  line-height: 46px;
  font-weight: 500;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: row-resize;
  transition: 0.3s;
}
.zr_cat li.zrc_head:hover {
  color: #1D52DE;
}
.zr_cat li.opened:before {
  transform: rotate(90deg);
}
.zr_cat li:before {
  display: block;
  content: "";
  width: 40px;
  height: 46px;
  background: url(../images/chev_l.svg) center/5px no-repeat;
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
  cursor: row-resize;
}
.zr_cat li ul {
  display: none;
}
.zr_cat li ul li {
  border-top: 1px solid #e0e0e0;
}
.zr_cat li ul li > ul > li:before {
  display: none;
}
.zr_cat li ul li > ul > li > a {
  width: 100%;
  font-size: 14px;
  padding-left: 30px;
}
.zr_cat li ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #757575;
}
.zr_cat li a {
  display: block;
  width: calc(100% - 40px);
  height: 46px;
  font-size: 18px;
  line-height: 46px;
  font-weight: 500;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s;
}
.zr_cat li a:hover {
  color: #1D52DE;
}

.zr_banner {
  background: #1D52DE;
  margin-top: 20px;
}

.zrb_content {
  padding: 30px;
}

.zrb_head {
  font-size: 22px;
  color: #fff;
}

.zrb_text {
  font-size: 14px;
  color: #fff;
  margin-top: 15px;
}

.zrb_btn {
  position: static;
  background: #fff;
  color: #000;
  margin-top: 20px;
  cursor: pointer;
}
.zrb_btn:after {
  filter: brightness(0);
  transition: 0.3s;
}
.zrb_btn:hover {
  background: #001736;
  color: #fff;
}
.zrb_btn:hover:after {
  filter: unset;
}

.zrb_img {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.zct_good {
  padding: 30px;
  border: 1px solid #e0e0e0;
  position: relative;
}

.zcg_items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.zcg_item {
  display: flex;
  min-height: 100px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px;
  border-left: 1px solid #F3F3EF;
}

.z_tovar_bot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.ztb_item {
  display: flex;
  min-height: 100px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px;
  border-left: 1px solid #F3F3EF;
}
.ztb_item:first-child {
  border-left: none;
}
.ztb_item > img {
  max-width: 46px;
}

.ztbi_text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1C2649;
}

@media only screen and (max-width: 1200px) {
  .z_logo {
    max-width: 120px;
  }
  .z_nav > ul > li > a {
    letter-spacing: normal;
  }
  .zh_email > span, .zh_tel > span {
    font-size: 12px;
  }
  .zh_email > span > span, .zh_tel > span > span {
    font-size: 12px;
  }
  .z_h2 {
    font-size: 36px;
  }
  .b9_bot {
    flex-direction: column;
  }
  .b9_bot > div, .b9_bot > input {
    width: 100%;
  }
} /*1200*/
@media only screen and (min-width: 1024px) {
  .z_nav > ul li:hover > ul {
    display: flex;
  }
  .z_nav > ul li > a:hover {
    background: #fff;
    color: #1D52DE;
  }
  .z_nav > ul li > a.zh_cat_btn:hover {
    background: #fff;
    color: #1D52DE;
  }
  .z_nav > ul li > a.zh_cat_btn:hover > i {
    border-top: 2px solid #1D52DE;
    border-bottom: 2px solid #1D52DE;
  }
  .z_nav > ul li > a.zh_cat_btn:hover > i:before {
    background: #1D52DE;
  }
  .z_nav > ul li ul li a:hover {
    color: #1D52DE;
  }
  .z_nav > ul li ul li a:hover > i:before {
    color: #1D52DE;
  }
  .goods_slider .owl-prev:hover, .goods_slider .owl-next:hover {
    background-color: #1D52DE !important;
  }
} /*+1024*/
@media only screen and (max-width: 1024px) {
  .z_h2 {
    font-size: 20px;
  }
  .z_cat .z_h2 {
    font-size: 22px;
  }
  .zc_center {
    margin-top: 15px;
  }
  .z_h3 {
    /* font-size: 18px; */
  }
  .burger {
    display: block;
  }
  .z_header_content {
    padding-left: 60px;
  }
  .zh_block {
    display: none;
    width: 100%;
    height: calc(100dvh - 59px);
    background: #fff;
    padding: 0 0 40px;
    position: absolute;
    top: 59px;
    left: 0;
  }
  .zh_tel_icon {
    width: 36px;
    height: 36px;
  }
  .zh_block {
    flex-direction: column;
  }
  .z_nav > ul {
    height: unset;
    flex-direction: column;
  }
  .z_nav > ul > li > a {
    justify-content: flex-start;
    padding: 0 15px;
    color: #000;
    line-height: 40px;
  }
  .z_nav > ul > li > a.zh_cat_btn > i.opened {
    transform: rotate(90deg);
  }
  .z_nav > ul > li ul {
    position: static;
  }
  .z_nav > ul > li ul > li > ul {
    padding: 0 0 0 30px;
  }
  .z_nav > ul > li ul > li > a > i.opened:before {
    transform: rotate(45deg);
  }
  .z_nav > ul > li ul > li > a > i:hover:active {
    color: #000;
  }
  .zhs_btn {
    display: none;
  }
  .zh_search_block {
    border-top: 1px solid #dbdada;
    padding-top: 15px;
    margin-bottom: 15px;
  }
  .zhs_popup {
    display: block;
    background: #F6F9FF;
    position: relative;
    left: unset;
    top: unset;
  }
  .zhs_popup > input {
    width: calc(100% - 60px);
  }
  .zhsp_search {
    width: 60px;
  }
  .zh_email, .zh_tel {
    padding: 0 15px;
    margin-top: 30px;
  }
  .zh_email > span, .zh_tel > span {
    color: #9c9c9c;
    font-size: 14px;
  }
  .zh_email > span > span, .zh_tel > span > span {
    font-size: 16px;
    color: #000;
  }
  .zb1_items {
    min-height: 260px;
  }
  .zb1i_head {
    font-size: 50px;
  }
  .zb1i_head > span {
    font-size: 30px;
  }
  .zb1i_text {
    font-size: 16px;
  }
  .z_section {
    padding: 50px 0;
  }
  .gsc_name {
    padding: 10px 15px;
    font-size: 16px;
  }
  .zb2_all, .b6_apl, .b9_submit, .zrb_btn {
    position: static;
    margin-top: 20px;
  }
  .b_4 {
    padding: 10px 0 0;
  }
  .b_4 .z_content {
    background: #fff;
    min-height: unset;
  }
  .b4_img {
    position: static;
    height: unset;
    margin-top: 20px;
  }
  .b4_block {
    padding: 0;
  }
  .b5_items {
    gap: 15px;
  }
  .b5_item {
    transform: unset !important;
  }
  .b5_item {
    padding: 20px 15px;
    gap: 15px;
  }
  .b_6 {
    padding-bottom: 0;
  }
  .b6_block {
    max-width: 100%;
    width: 100%;
    align-items: center;
    min-height: unset;
    gap: 15px;
  }
  .b6_img {
    width: 100%;
    width: 100%;
    max-width: 350px;
    margin: 30px auto 0;
    height: unset;
    position: static;
    transform: unset;
  }
  .b6_text {
    font-size: 14px;
    text-align: center;
  }
  .b6_btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: center;
    margin-top: 0;
  }
  .b6_apl {
    margin-top: 0;
    max-width: 290px;
    height: 46px;
    line-height: 46px;
  }
  .b6_cat_btn {
    max-width: 290px;
    height: 46px;
    line-height: 46px;
  }
  .b_9:before {
    height: calc(100% - 50px);
  }
  .b_9 .z_content > div {
    padding: 25px 15px;
  }
  .b9_bot {
    margin-top: 0;
  }
  .b9_input, .b9_area {
    width: 100%;
    height: 46px;
    padding: 0;
    font-size: 16px;
  }
  .b9_submit {
    margin-top: 10px;
  }
  .b9_text {
    font-size: 16px;
    margin-top: 20px;
  }
  .b9_items {
    margin-top: 20px;
    padding-top: 20px;
    gap: 20px;
  }
  .z_top_block_2 {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .zc_left {
    width: 100%;
  }
  .zc_right {
    display: none;
  }
} /*1024*/
@media only screen and (max-width: 768px) {
  .z_h1 {
    font-size: 34px;
  }
  .z_top_wrapper {
    background: url(../images/z_top_bg_mob.jpg) center/cover no-repeat;
  }
  .ztb_text {
    font-size: 14px;
  }
  .ztb_btn, .b6_cat_btn {
    height: 46px;
    font-size: 12px;
    line-height: 44px;
  }
  .m_content {
    padding: 20px 15px 15px;
  }
  .mc_head {
    font-size: 20px;
  }
  .mc_text {
    margin-top: 15px;
  }
  .zb1_items {
    max-width: 300px;
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .b4_block p {
    font-size: 14px;
    line-height: 130%;
  }
  .b5_items {
    grid-template-columns: repeat(2, 1fr);
  }
  .b_8 p {
    font-size: 14px;
    line-height: 130%;
  }
  .b8_list > li {
    font-size: 14px;
    line-height: 130%;
    padding-left: 10px;
  }
  .b_9:before {
    display: none;
  }
  .b_9 .z_content {
    flex-direction: column;
  }
  .b_9 .z_content > div {
    width: 100%;
  }
  .b_9 .z_content > div.b9_left {
    width: calc(100% + 30px);
    transform: translateX(-15px);
    background: #001736;
    order: 2;
  }
  .b_9 .z_content > div.b9_right {
    order: 1;
  }
  .zct_line.z_head {
    border: none;
  }
  .zct_line.z_head > div:nth-child(1) {
    width: 100%;
  }
  .zct_line > div:nth-child(1) {
    flex: 1;
  }
  .zct_line > div:nth-child(2), .zct_line > div:nth-child(3), .zct_line > div:nth-child(4), .zct_line > div:nth-child(5) {
    display: none;
  }
  .zct_popup {
    padding: 15px;
  }
  .tp_name {
    font-size: 20px;
    padding-right: 35px;
  }
  .tp_center {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }
  .tp_img {
    order: 1;
  }
  .tp_table {
    width: 100%;
    order: 2;
    margin-top: 0;
  }
  .tp_line > div {
    font-size: 14px;
  }
  .tp_bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
  }
  .tpb_head > span {
    font-size: 20px;
  }
  .tpb_btns {
    width: 100%;
  }
  .tpb_btns > a, .tpb_btns > div {
    flex: 1;
    padding: 0;
  }
  .z_listing {
    margin-top: 20px;
  }
  .z_listing a {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }
  .z_crumbs {
    gap: 10px 20px;
  }
  .z_crumbs > li {
    font-size: 14px;
  }
  .z_crumbs > li:after {
    right: -13px;
  }
  .z_crumbs > li > a {
    font-size: 14px;
  }
  .zg_name {
    font-size: 24px;
  }
  .zc_top_show_all {
    display: block;
  }
  .zc_top {
    display: flex;
  }
  .zc_top.show_all > a:nth-child(n+11) {
    display: block;
  }
  .zc_top > a:nth-child(n+11) {
    display: none;
  }
  .zc_filter {
    display: none;
  }
  .zc_filter_btn {
    display: block;
  }
  .z_tovar_bot {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .ztb_item {
    min-height: unset;
    padding: 0;
    gap: 15px;
    border-left: none;
  }
  .ztbi_text > br {
    display: none;
  }
  .services_slider .owl-nav {
    display: block;
  }
} /*768*/
@media only screen and (max-width: 480px) {
  .z_h2 br {
    display: none;
  }
  .b5i_head {
    font-size: 14px;
  }
  .b5i_text {
    font-size: 12px;
  }
  .tpb_btns {
    flex-direction: column;
  }
  .tpb_btns > a, .tpb_btns > div {
    width: 100%;
  }
} /*480*/

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