* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: inherit;
}
input,
button {
  background: transparent;
  border: 1px solid ;
}
input:focus {
  outline: none;
}
label,
button {
  cursor: pointer;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
html,
body {
  font-size: 16px;
}
body {
  font-family: 'Roboto', sans-serif;
  user-select: none;
  padding-top: 78px;
}
body.no_scroll {
  overflow: hidden;
}
.container {
  max-width: 1210px;
  padding: 0 20px;
  margin: 0 auto;
}
.heading {
  margin: 10px 0;
}
.heading_1 {
  font-size: 3rem;
}
.heading_2 {
  font-size: 2.625rem;
}
.heading_3 {
  font-size: 2.25rem;
}
.heading_4 {
  font-size: 1.875rem;
}
.heading_5 {
  font-size: 1.5rem;
}
.heading_6 {
  font-size: 1.125rem;
}
.text_uppercase {
  text-transform: uppercase;
}
.text_through {
  text-decoration: line-through;
}
.text_italic {
  font-weight: 300px;
  font-style: italic;
}
.text_weight_normal {
  font-weight: normal;
}
.text_italic_weight_bold {
  font-weight: 600;
  font-style: italic;
}
.text_weight_normal {
  font-weight: 400;
}
.text_weight_bold {
  font-weight: 600;
}
.text_center {
  text-align: center;
}
.a {
  text-decoration: underline;
}
.btn {
  border-radius: 10px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}
.btn_default {
  color: #00446A;
  padding: 0.625em 1.25em;
  border: 2px solid;
  transition: all 0.2s linear;
}
.btn_default:hover {
  background-color: #00446A;
  border: 2px solid #00446A;
  color: #fff;
}
.btn_default:hover svg path {
  fill: #fff;
}
.btn_red {
  font-size: 16px !important;
  padding: 0.875em;
  font-weight: 900;
  max-width: 18em;
  width: 100%;
  border: none;
  background: linear-gradient(180deg, #F30708 0%, #A9020E 100%);
  color: #fff;
  transition: all 0.2s linear;
}
.btn_svg {
  display: flex;
  align-items: center;
}
.btn_svg svg {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}
.btn_burger {
  width: 30px;
  height: 20px;
  border-width: 2px;
  border-right: none;
  border-left: 0;
  position: relative;
  transition: border 0.2s linear;
}
.btn_burger::after,
.btn_burger::before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -1px;
  background: #000;
  transform-origin: center;
  transition: transform 0.2s linear;
}
.btn_burger.active {
  border-color: transparent;
}
.btn_burger.active::after {
  transform: rotate(45deg);
}
.btn_burger.active::before {
  transform: rotate(-45deg);
}
.article_section {
  padding: 50px 0;
}
.article_section:nth-child(even) {
  background: #F8F8F8;
}
.article_section:nth-child(even) .owl-theme .owl-nav button {
  background-color: #fff !important;
}
.article_section:nth-child(even) .owl-theme .owl-nav button:not(.disabled):hover {
  background-color: #d8d7d7 !important;
}
.article_section:nth-child(odd) .owl-theme .owl-nav button {
  background-color: #F8F8F8 !important;
}
.article_section:nth-child(odd) .owl-theme .owl-nav button:not(.disabled):hover {
  background-color: #d8d7d7 !important;
}
.article .heading_2 {
  color: #0B212E;
  max-width: 16em;
  margin-bottom: 1.19em;
}
.flex {
  display: flex;
}
.flex_center {
  justify-content: center;
}
.owl-theme .owl-nav {
  margin-top: 0px;
  position: absolute;
  top: 50%;
  left: -100px;
  right: -100px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.owl-theme .owl-nav button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
}
.owl-stage-outer {
  z-index: 50;
}
.ul {
  font-weight: 300;
  line-height: 200%;
  margin: 50px 0;
}
.ul_li {
  position: relative;
  padding-left: 25px;
}
.ul_li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00446A;
  top: 50%;
  transform: translateY(-50%);
}
.input {
  border-radius: 10px;
  padding: 15px 20px;
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border-color: #ccc;
}
.input::placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}
.input:focus {
  border-color: #000;
}
.input:focus::placeholder {
  color: #000;
}
.hidden {
  display: none !important;
}
.nav_top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
.nav_burger {
  display: none;
}
.logo {
  display: flex;
  align-items: center;
  font-family: 'Merriweather', serif;
}
.logo_img {
  width: 20px;
  height: 51px;
  margin-right: 10px;
}
.logo_text {
  text-transform: uppercase;
  font-size: 12px;
  width: 82px;
}
.menu {
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}
.menu_li {
  margin: 0 10px;
}
.menu_link {
  border-bottom: 1px solid transparent;
}
.menu_link:hover {
  border-color: inherit;
}
.links {
  margin: 10px 0 0;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  width: 100%;
}
.links_link {
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.links_link img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.nav_tel {
  padding: 10px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.nav_tel a {
  padding: 2.5px;
}
.header {
  background: url(../img/bg/header.png) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #fff;
  padding: 120px 0;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(62.67% 62.67% at 50% 37.33%, rgba(73, 73, 73, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%, rgba(0, 0, 0, 0.75) 100%);
}
.header > * {
  position: relative;
  z-index: 1;
}
.head {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.head .heading_5 {
  font-weight: 500;
}
.head_advantage {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 100%;
}
.head_advantage .advantage_item {
  padding: 30px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(3, 163, 243, 0.5) 0%, rgba(1, 99, 155, 0.5) 100%);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}
.head_btn {
  width: 100%;
  text-align: center;
}
.head_btn .btn_red {
  max-width: 25em;
}
.advantage {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
}
.advantage_icon {
  margin-bottom: 30px;
}
.advantage_item {
  max-width: calc(25% - 20px);
  width: 100%;
  margin: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}
.advantage_item--felx {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mt-50 {
  margin-top: 50px;
}
.block {
  margin-bottom: -50px;
  font-size: 16px;
}
.block_item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  justify-content: space-between;
}
.block_item:nth-child(odd) .block_text {
  margin-right: 30px;
}
.block_item:nth-child(even) .block_text {
  margin-left: 30px;
}
.block_text {
  max-width: 500px;
  line-height: 150%;
  margin-bottom: -20px;
}
.block_text p {
  margin-bottom: 20px;
}
.block_img img {
  border-radius: 10px;
  max-width: 600px;
  max-height: 350px;
  width: 100%;
  object-fit: cover;
}
.knives_big {
  text-align: center;
  padding: 30px;
  height: 365px;
  opacity: 0;
  animation: show_knives linear 0.2s both;
}
.knives_view {
  font-weight: bold;
  margin: 20px 0;
  font-size: 24px;
}
.knives_gift {
  font-size: 16px;
}
.kinds {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.kinds_item {
  margin-right: 5px;
  margin-bottom: 5px;
  min-width: 280px;
  max-width: calc(100% / 3 - 5px);
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 150px !important;
  border: 1px solid #BBBBBB;
  height: 100%;
}
.kinds_item.active {
  border: 1px solid #0B212E;
}
.kinds .knives_big {
  padding: 20px;
  height: auto;
}
.kinds .knives_view {
  margin-top: 0px;
  font-size: 16px;
}
@keyframes show_knives {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.goods {
  font-size: 16px;
}
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 'list img' 'price img';
}
.product_descriptio {
  grid-area: list;
}
.product_price {
  grid-area: price;
}
.product_images {
  grid-area: img;
}
.images {
  grid-area: img;
}
.images_footer {
  display: flex;
  justify-content: space-between;
  margin: 10px -5px 0;
}
.images_smoll {
  border-radius: 5px;
  width: 33.33%;
  margin: 0 5px;
  height: 142px;
  overflow: hidden;
  opacity: 0.8;
}
.images_smoll.active {
  opacity: 1;
}
.images_big {
  border-radius: 5px;
  overflow: hidden;
  height: 384px;
  position: relative;
}
.images_big_glass {
  position: absolute;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: none;
  /*Установите размер стекла лупы:*/
  width: 150px;
  height: 150px;
  z-index: 50;
}
.images_big img {
  opacity: 0;
  animation: show_knives linear 0.2s both;
}
.images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.price {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.price_stock {
  margin-right: 20px;
  line-height: 150%;
  font-size: 14px;
}
.price_item {
  font-family: 'Merriweather', serif;
  font-weight: normal;
  font-size: 38px;
  color: #0B212E;
}
.window {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.window.show {
  display: block;
}
.window_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.window_body {
  position: relative;
  opacity: 0;
  animation: show_knives linear 0.2s both;
}
.window_close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
.form {
  background: #F8F8F8;
  padding: 50px 50px 25px;
  max-width: 600px;
  width: 100%;
  margin-bottom: -10px;
}
.form .heading {
  margin-bottom: 30px;
}
.form p {
  margin-bottom: 15px;
}
.form_approval {
  display: flex;
  align-items: flex-start;
}
.form_approval input {
  margin-right: 10px;
  width: 30px;
  height: 20px;
  flex-shrink: 0;
}
.form button[type="submit"] {
  max-width: 100%;
}
.reviews_item {
  max-width: 400px;
  background: #F8F8F8;
  padding: 25px;
  border-radius: 10px;
}
.reviews_head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.reviews_text {
  margin-bottom: 20px;
  font-size: 16px;
}
.reviews_avatar {
  margin-right: 20px;
}
.reviews_avatar img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.reviews_img {
  padding-top: 85%;
  height: 0;
  background: #C4C4C4;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.reviews_img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inventory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}
.inventory.col {
  flex-direction: column;
  align-items: flex-start;
}
.inventory.col .inventory_left {
  margin: 0;
}
.inventory_left {
  max-width: 602px;
  margin-bottom: -20px;
  margin-right: 50px;
}
.inventory p {
  margin-bottom: 20px;
}
.inventory img {
  max-width: 400px;
}
.inventory_slide {
  display: flex;
  align-items: center;
}
.inventory_slide_item {
  margin-bottom: 0px !important;
  height: 200px;
}
.inventory_slide_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.payment {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.payment_bank {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin: -10px 0;
}
.payment_bank img {
  margin: 10px 0;
  max-width: 300px;
}
.payment_text {
  width: 50%;
  text-align: left;
}
.payment p {
  margin-bottom: 20px;
}
.questions {
  font-size: 16px;
}
.questions_item {
  width: 100%;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.questions_item .heading {
  margin-right: 25px;
}
.questions_item:not(:last-child) {
  margin-bottom: 25px;
}
.questions_item::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F8F8F8 url(../img/icon/arrow_left.svg) no-repeat;
  transform: rotate(270deg);
  background-position: center;
  background-size: 8px;
  transition: all 0.2s linear;
}
.questions_item.active::after {
  transform: rotate(90deg);
}
.questions_body {
  display: none;
  padding: 10px 0;
}
.video {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.video_container {
  min-width: 250px;
  position: relative;
  flex-basis: calc(50% - 5px);
  padding-top: 25%;
}
.video_item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.certificates {
  display: flex;
  justify-content: center;
  margin: 30px -10px -10px;
}
.certificates_item {
  margin: 10px;
  max-width: 200px;
}
.certificates_item img {
  pointer-events: none;
}
.footer {
  background: #0B212E;
  color: #fff;
  padding: 50px 0;
  line-height: 180%;
  font-size: 16px;
}
.footer .logo {
  line-height: 100%;
  margin-bottom: 25px;
}
.footer_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer .contact {
  margin-bottom: 50px;
}
.footer .address {
  margin-bottom: 25px;
}
.footer .maps {
  max-width: 800px;
  height: 360px;
  border-radius: 10px;
}
.footer .maps img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.social {
  text-align: right;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.social_link {
  margin-left: 15px;
}
@media screen and (max-width: 1400px) {
  .nav .btn {
    font-size: 12px;
  }
  .nav .btn svg {
    display: none;
  }
  .menu {
    font-size: 14px;
  }
  .logo {
    max-width: 150px;
  }
  .container {
    max-width: 920px;
  }
  .footer .maps {
    max-width: 100%;
  }
  .reviews_text {
    font-size: 14px;
  }
  .block_text {
    max-width: 50%;
    line-height: 150%;
    margin-bottom: -20px;
  }
  .block_img img {
    max-height: 280px;
  }
}
@media screen and (max-width: 1100px) {
  html,
  body {
    font-size: 14px;
  }
  .owl-theme .owl-nav {
    margin-top: 25px;
    position: static;
    transform: translateY(0);
    justify-content: center;
  }
  .owl-theme .owl-nav button {
    margin: 0 10px !important;
    width: 25px;
    height: 25px;
  }
  .block_img img {
    max-width: 400px;
  }
  .advantage_item {
    font-size: 16px;
  }
  .advantage_icon {
    max-width: 100px;
    margin-bottom: 30px;
    margin: auto;
  }
  .advantage_icon > * {
    width: 100%;
  }
  .kinds {
    margin-top: 0px;
  }
  .payment_bank img {
    max-width: 220px;
  }
  .inventory img {
    max-width: 300px;
  }
  .images_big {
    height: 270px;
  }
  .images_smoll {
    height: auto;
  }
}
@media screen and (max-width: 991px) {
  html,
  body {
    font-size: 12px;
  }
  .header {
    padding: 50px 0;
  }
  .logo {
    max-width: 150px;
  }
  .btn {
    font-size: 12px;
  }
  .btn_red {
    font-size: 16px !important;
  }
  .head_advantage .advantage_item {
    padding: 20px;
  }
  .knives_big {
    height: 300px;
  }
  .knives_smoll .kinds_item {
    height: 100px !important;
  }
  .menu {
    font-size: 14px;
  }
  .menu_li {
    margin: 0 5px;
  }
}
@media screen and (max-width: 769px) {
  .links {
    justify-content: center;
  }
  .links_link span {
    display: none;
  }
  .head {
    align-items: flex-start;
  }
  .block_img img {
    max-width: 300px;
  }
  .block_text p {
    margin-bottom: 10px;
  }
  .advantage_item {
    font-size: 14px;
    max-width: calc(50% - 20px);
  }
  .nav_call {
    display: none;
  }
  .nav_menu {
    position: fixed;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
  }
  .nav_menu.active {
    display: block;
  }
  .nav_burger {
    display: block;
  }
  .menu {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  }
  .menu_li {
    margin: 10px 20px;
  }
  .product {
    grid-template-columns: 1fr;
    grid-gap: 50px;
    grid-template-areas: 'list' 'img' 'price ';
  }
  .product .ul {
    margin-bottom: 0;
  }
  .product .price {
    justify-content: center;
    width: 100%;
  }
  .product_price {
    text-align: center;
  }
  .inventory_right {
    display: none;
  }
  .video {
    flex-direction: column;
  }
  .video_container {
    padding-top: 50%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 620px) {
  .menu {
    font-size: 16px;
  }
  .block_item {
    flex-direction: column;
    align-items: flex-start;
  }
  .block_item img {
    max-width: 100%;
  }
  .images_big {
    height: 59.677vw;
  }
  .knives_big {
    padding: 0;
    height: 200px;
  }
  .block_text {
    margin-bottom: 20px;
    max-width: 100%;
    margin-left: 0px !important;
  }
  .block .block_item:nth-child(even) {
    flex-direction: column-reverse;
  }
  .nav {
    flex-wrap: wrap;
  }
  .links {
    flex-grow: 1;
    order: 1;
    width: 100%;
    padding: 5px 0 0 0;
  }
}
@media screen and (max-width: 556px) {
  .certificates {
    flex-wrap: wrap;
  }
  .certificates_item {
    width: calc(33.33% - 20px);
  }
}
@media screen and (max-width: 460px) {
  .inventory img {
    max-width: 100%;
  }
  .payment {
    flex-direction: column;
  }
  .payment_text,
  .payment_bank {
    width: 100%;
  }
  .payment_text {
    margin-top: 25px;
  }
  .payment_bank {
    align-items: center;
  }
  .advantage {
    margin-left: 0;
    margin-right: 0;
  }
  .head_advantage .advantage_item {
    padding: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 420px) {
  .nav_tel {
    text-align: center;
    order: 1;
    flex-shrink: 1;
    width: 100%;
    padding: 10px;
  }
  .menu {
    font-size: 16px;
  }
  .knives_big {
    height: 150px;
  }
}
