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

html,
body {
  height: 100%;
  font-family: "Montserrat";
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.main {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  src: url(../fonts/Montserrat/Montserrat-Bold.ttf) format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/Montserrat/Montserrat-Regular.ttf) format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-weight: 100;
  font-style: normal;
  src: url(../fonts/Montserrat/Montserrat-Light.ttf) format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  src: url(../fonts/Montserrat/Montserrat-Medium.ttf) format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-weight: 700;
  font-style: normal;
  src: url(../fonts/Open_Sans/OpenSans-Bold.ttf) format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/Open_Sans/OpenSans-Regular.ttf) format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-weight: 100;
  font-style: normal;
  src: url(../fonts/Open_Sans/OpenSans-Light.ttf) format("truetype");
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: .7s linear;
    transition: .7s linear;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transition: .7s linear;
    transition: .7s linear;
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: .7s linear;
    transition: .7s linear;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transition: .7s linear;
    transition: .7s linear;
  }
}

@-webkit-keyframes scroller {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  30% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  40% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  50% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  60% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
  }
  70% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
  }
  80% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
  100% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
}

@keyframes scroller {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  30% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  40% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  50% {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  60% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
  }
  70% {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
  }
  80% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
  100% {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: -1;
}

.content {
  width: 85%;
  margin: 0 auto;
}

.header {
  font-family: "Montserrat",sans-serif;
  font-weight: 500;
  padding: 5px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  -webkit-box-shadow: 0 10px 10px #ccc;
          box-shadow: 0 10px 10px #ccc;
}

.header .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  width: 10%;
  height: 10%;
}

.logo img {
  max-width: 100%;
  display: block;
}

.h-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.h-menu .cat-btn {
  background: red;
  padding: 15px;
  outline: none;
  border: none;
  border-radius: 50px;
  max-width: 150px;
  width: 150px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.hamburger {
  height: 40px;
  width: 50px;
  display: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.hamburger .dash {
  height: 6px;
  width: 100%;
  background: #777;
  overflow: hidden;
  margin: auto 0;
}

.hamburger .dash:before {
  content: "";
  width: 100%;
  height: 6px;
  position: absolute;
  top: 6px;
  left: 0;
  background: #777;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.hamburger .dash:after {
  content: "";
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 6px;
  left: 0;
  background: #777;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.toggle .dash {
  width: 98%;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.toggle .dash::before {
  border-radius: 3px;
  width: 50%;
  -webkit-transform: translateY(4px) rotate(150deg);
          transform: translateY(4px) rotate(150deg);
}

.toggle .dash::after {
  border-radius: 3px;
  width: 50%;
  -webkit-transform: translateY(-4px) rotate(-150deg);
          transform: translateY(-4px) rotate(-150deg);
}

.hamburger-menu {
  position: fixed;
  top: 70px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  left: -20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  z-index: 999;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.hamburger-menu .mob-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
}

.hamburger-menu .mob-nav ul li + li {
  margin-top: 10px;
}

.hamburger-menu .mob-nav ul li a {
  color: #777;
  text-decoration: none;
}

.active {
  display: block;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.nav {
  margin-right: 30px;
}

.nav ul {
  list-style: none;
}

.nav ul .nav-link {
  display: inline-block;
  font-size: 28px;
  position: relative;
}

.nav ul .nav-link:hover .dropdown {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: 0.3s cubic-bezier(0.58, -0.35, 0.56, 1.57);
  transition: 0.3s cubic-bezier(0.58, -0.35, 0.56, 1.57);
}

.nav ul .nav-link + li {
  margin-left: 30px;
}

.nav ul .nav-link a {
  text-decoration: none;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  color: #444;
}

.nav ul .nav-link:hover .nav-link-red {
  color: red;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.dropdown {
  opacity: 0;
  display: none;
  position: absolute;
  top: 30px;
  z-index: 3;
  width: 250px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  font-size: 16px;
  padding: 5px 20px;
}

.dropdown .dropdown-link {
  padding: 10px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  margin: 0;
  text-transform: capitalize;
  width: 100%;
}

.dropdown .dropdown-link:hover {
  padding-left: 20px;
}

.dropdown .dropdown-link:hover a {
  color: red;
  -webkit-transition: .1s ease;
  transition: .1s ease;
}

.dropdown li ~ li {
  border-top: 1px solid #ccc;
  margin: 0;
}

.slider-section {
  -webkit-box-shadow: 0 5px 10px #ccc;
          box-shadow: 0 5px 10px #ccc;
  margin: 10px 0 30px;
}

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

.slider .slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.slider__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  height: 300px;
  position: relative;
}

.slider__item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.slide-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 80%;
  color: #fff;
  font-family: "Montserrat";
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slide-inner h1 {
  margin-bottom: 20px;
}

.slide-inner p {
  margin-bottom: 40px;
}

.slide-inner .slide-btn {
  width: 200px;
  background: red;
  padding: 15px;
  border-radius: 30px;
  border: 0;
  outline: 0;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 2px;
  border: 1px solid transparent;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  text-decoration: none;
  font-size: 14px;
}

.slide-inner .slide-btn:hover {
  background: rgba(255, 0, 0, 0.3);
  border: 1px solid red;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.slider__control {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  height: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.slider__control:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.slider__control_left {
  left: 0;
}

.slider__control_right {
  right: 0;
}

.slider__control::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.slider__control_left::before {
  background-image: url("../assets/left-arrow.png");
}

.slider__control_right::before {
  background-image: url("../assets/right-arrow.png");
}

.slide-1 {
  background: url("../assets/slider-img-transport.webp") no-repeat center center;
  background-size: cover;
}

.slide-2 {
  background: url("../assets/slider-img-transport-2.webp") no-repeat center center;
  background-size: cover;
}

.slide-3 {
  background: url("../assets/slider-img-gap.webp") no-repeat center center;
  background-size: cover;
}

.slide-4 {
  background: url("../assets/slider-img-handsalt.webp") no-repeat center center;
  background-size: cover;
}

.slide-5 {
  background: url("../assets/slider-img-salat.webp") no-repeat center center;
  background-size: cover;
}

.slide-6 {
  background: url("../assets/slider-img-spoons.webp") no-repeat center center;
  background-size: cover;
}

.slide-7 {
  background: url("../assets/slider-img-tablet.webp") no-repeat center center;
  background-size: cover;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}

.slick-dots li {
  list-style: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 3px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slick-dots .slick-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slick-dots .slick-active button {
  background-color: #9da3d7;
  border: #cccccc;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.slick-dots li + li {
  margin-left: 20px;
}

.slick-dots button {
  font-size: 0;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #fff;
  outline: none;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

#salt-slider {
  height: 32vw;
  position: relative;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  padding: 20px 0;
  margin: 0 0 50px;
}

#salt-slider label {
  margin: auto;
  width: 30vw;
  height: 30vw;
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  cursor: pointer;
  -webkit-transition: -webkit-transform .7s ease;
  transition: -webkit-transform .7s ease;
  transition: transform .7s ease;
  transition: transform .7s ease, -webkit-transform .7s ease;
  border-radius: 50%;
  overflow: hidden;
}

[type=radio] {
  display: none;
}

#s1:checked ~ #slide4,
#s2:checked ~ #slide5,
#s3:checked ~ #slide1,
#s4:checked ~ #slide2,
#s5:checked ~ #slide3 {
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
  -webkit-transform: translate3d(-120%, 0, -400px);
          transform: translate3d(-120%, 0, -400px);
}

#s1:checked ~ #slide4::after,
#s2:checked ~ #slide5::after,
#s3:checked ~ #slide1::after,
#s4:checked ~ #slide2::after,
#s5:checked ~ #slide3::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#s1:checked ~ #slide5,
#s2:checked ~ #slide1,
#s3:checked ~ #slide2,
#s4:checked ~ #slide3,
#s5:checked ~ #slide4 {
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translate3d(-60%, 0, -200px);
          transform: translate3d(-60%, 0, -200px);
}

#s1:checked ~ #slide5::after,
#s2:checked ~ #slide1::after,
#s3:checked ~ #slide2::after,
#s4:checked ~ #slide3::after,
#s5:checked ~ #slide4::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

#s1:checked ~ #slide1,
#s2:checked ~ #slide2,
#s3:checked ~ #slide3,
#s4:checked ~ #slide4,
#s5:checked ~ #slide5 {
  -webkit-box-shadow: 0 13px 25px 0 rgba(0, 0, 0, 0.3), 0 11px 7px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 13px 25px 0 rgba(0, 0, 0, 0.3), 0 11px 7px 0 rgba(0, 0, 0, 0.19);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

#s1:checked ~ #slide2,
#s2:checked ~ #slide3,
#s3:checked ~ #slide4,
#s4:checked ~ #slide5,
#s5:checked ~ #slide1 {
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  -webkit-transform: translate3d(60%, 0, -200px);
          transform: translate3d(60%, 0, -200px);
}

#s1:checked ~ #slide2::after,
#s2:checked ~ #slide3::after,
#s3:checked ~ #slide4::after,
#s4:checked ~ #slide5::after,
#s5:checked ~ #slide1::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

#s1:checked ~ #slide3,
#s2:checked ~ #slide4,
#s3:checked ~ #slide5,
#s4:checked ~ #slide1,
#s5:checked ~ #slide2 {
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
  -webkit-transform: translate3d(120%, 0, -400px);
          transform: translate3d(120%, 0, -400px);
}

#s1:checked ~ #slide3::after,
#s2:checked ~ #slide4::after,
#s3:checked ~ #slide5::after,
#s4:checked ~ #slide1::after,
#s5:checked ~ #slide2::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.salt-type {
  position: relative;
}

.salt-type img {
  display: block;
  width: 100%;
  height: 100%;
}

.salt-type::before {
  content: "";
  background: rgba(255, 0, 0, 0.3);
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}

#slide1::after {
  content: "Противогололедная Соль";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 30px;
  width: 90%;
  font-weight: 500;
}

#slide2::after {
  content: "Пищевая Соль";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 30px;
  width: 80%;
  font-weight: 500;
}

#slide3::after {
  content: "Техническая Соль";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 30px;
  width: 80%;
  font-weight: 500;
}

#slide4::after {
  content: "Сырая Соль";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 30px;
  width: 80%;
  font-weight: 500;
}

#slide5::after {
  content: "Соль Для Очистки Воды";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 30px;
  width: 80%;
  font-weight: 500;
}

.text-blog {
  background: url("../assets/salt-hand.webp") no-repeat center fixed;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0;
  padding: 40px 0;
  color: #fff;
  font-family: "Montserrat";
  text-align: center;
}

.text-blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 0, 0, 0.5);
}

.blog-title {
  z-index: 1;
  margin-bottom: 20px;
}

.blog-text {
  z-index: 1;
  max-width: 65%;
  line-height: 30px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.7px;
  margin-bottom: 20px;
}

.blog-btn {
  max-width: 200px;
  width: 200px;
  text-transform: uppercase;
  padding: 20px;
  z-index: 1;
  border-radius: 50px;
  border: 1px solid transparent;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 15px;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  text-decoration: none;
}

.blog-btn:hover {
  background: transparent;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  border: 1px solid #fff;
}

.our-production {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 50px;
  margin-bottom: 50px;
}

.production {
  width: 30%;
  text-align: center;
  padding: 20px;
  font-family: "Montserrat";
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 300px;
  color: #2b2747;
}

.production .img-wrap {
  width: 20%;
  display: inline-block;
}

.production .img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.production h1 {
  margin: 30px 0;
}

.production .production-name {
  font-size: 18px;
  letter-spacing: 1.7px;
  font-weight: 500;
  margin-bottom: 30px;
}

.production:nth-child(2) h1 {
  margin-top: 23px;
}

.news-section {
  background-color: rgba(204, 204, 204, 0.5);
  padding: 30px;
  padding-left: 50px;
  margin-bottom: 50px;
}

.news-section .section-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-family: "Montserrat";
}

.about-us-promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 100px;
}

.about-us-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 30%;
  text-decoration: none;
}

.about-us-card .img-wrapper {
  width: 15%;
}

.about-us-card .img-wrapper img {
  max-width: 100%;
  display: block;
}

.about-us-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  padding: 10px;
  color: #fff;
  font-size: 20px;
}

.about-us-btn p {
  display: inline-block;
}

.btn-quality {
  background: #003056;
}

.btn-promo {
  background: #666;
}

.btn-catalog {
  background: red;
}

.about-us-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 20px;
  margin-bottom: 40px;
}

.about-us-info .about-us-title {
  text-transform: uppercase;
  color: #2b2747;
  margin-bottom: 30px;
}

.about-us-info .about-us-text {
  margin-bottom: 20px;
  font-size: 24px;
}

.about-us-info .about-us-text ~ p {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

.about-us-info .coop {
  margin-top: 20px;
}

.about-us-info .about-us-salt {
  list-style: " - ";
  margin-bottom: 20px;
}

.about-us-info .about-us-salt li {
  margin-top: 20px;
}

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: url("../assets/footer.webp") no-repeat top fixed rgba(43, 39, 71, 0.4);
  background-size: cover;
  position: relative;
  color: #fff;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 39, 71, 0.6);
  background-size: cover;
}

.footer .content {
  position: relative;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 0 50px;
}

.footer-content .footer-logo {
  height: unset;
}

.footer-content #top {
  cursor: pointer;
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 60%;
  position: relative;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  display: inline-block;
  font-size: 22px;
}

.footer-nav ul li + li {
  margin-left: 15px;
}

.footer-nav ul li a {
  text-decoration: none;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  color: #fff;
  opacity: .5;
}

.footer-nav ul li:hover a {
  opacity: 1;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.footer-alt {
  background: #003056;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  padding: 10px 0;
}

.comp-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  width: 20%;
}

.comp-info a {
  text-decoration: none;
  color: #fff;
}

.social {
  margin-top: 40px;
  font-size: 20px;
}

.social a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.social a ~ a {
  margin-left: 20px;
}

.social a::after {
  content: "|";
  position: absolute;
  left: -14px;
  color: #fff;
  line-height: 20px;
  opacity: 1;
}

.social a:hover {
  color: #fff;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.social a:first-child::after {
  display: none;
}

.blur-section {
  width: 100%;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: url("../assets/blured-bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
}

.blur-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(68, 68, 68, 0.5);
}

.blur-section-menu {
  text-align: center;
  z-index: 2;
}

.blur-section-menu h1 {
  font-size: 40px;
  margin: 30px 0;
  font-weight: 500;
  text-transform: uppercase;
}

.blur-section-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  font-size: 16px;
}

.blur-section-menu ul li {
  list-style: none;
  text-align: center;
}

.blur-section-menu ul li a {
  text-decoration: none;
  color: #fff;
}

.blur-section-menu ul li ~ li {
  margin-left: 20px;
}

.blur-section-menu ul .right-arrow {
  width: 20px;
  height: 20px;
  position: relative;
}

.blur-section-menu ul .right-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("../assets/chevron-right.png") no-repeat;
  background-size: cover;
}

.contact-section {
  width: 90%;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-title {
  margin: 30px 10%;
  position: relative;
  color: #2b2747;
  text-transform: capitalize;
}

.section-title::before {
  content: "";
  position: absolute;
  width: 10%;
  height: 3px;
  bottom: -50%;
  left: 3px;
  background: red;
}

.contact-form {
  max-width: 700px;
  width: 55%;
}

.contact-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid transparent;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.contact-form form label {
  width: 90%;
}

.contact-form form label p {
  padding-left: 10px;
  text-align: left;
}

.contact-form form input {
  width: 90%;
  padding: 10px;
  border-radius: 30px;
  outline: none;
  border: 1px solid #ccc;
  margin: 10px 0 20px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.contact-form form input:hover {
  border: 1px solid red;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.contact-form form input:focus {
  border: 1px solid #2b2747;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.contact-form form textarea {
  width: 90%;
  max-height: 100px;
  min-height: 40px;
  padding: 10px;
  border-radius: 30px;
  outline: none;
  border: 1px solid #ccc;
  margin: 10px 0 20px;
  resize: vertical;
  font-family: "Montserrat";
  font-style: normal;
  letter-spacing: normal;
  font-weight: 500;
  color: #000;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.contact-form form textarea:hover, .contact-form form textarea:focus {
  border: 1px solid red;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.contact-form form textarea::-webkit-input-placeholder {
  font-family: "Montserrat";
  font-style: normal;
  letter-spacing: normal;
  font-weight: 400;
  color: #666;
}

.contact-form form textarea:-ms-input-placeholder {
  font-family: "Montserrat";
  font-style: normal;
  letter-spacing: normal;
  font-weight: 400;
  color: #666;
}

.contact-form form textarea::-ms-input-placeholder {
  font-family: "Montserrat";
  font-style: normal;
  letter-spacing: normal;
  font-weight: 400;
  color: #666;
}

.contact-form form textarea::placeholder {
  font-family: "Montserrat";
  font-style: normal;
  letter-spacing: normal;
  font-weight: 400;
  color: #666;
}

.contact-form form #contactFormBtn {
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  border: 2px solid transparent;
  background-color: red;
  color: #fff;
  letter-spacing: 1.6px;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  font-family: "Montserrat";
}

.contact-form form #contactFormBtn:hover {
  background-color: transparent;
  border: 2px solid red;
  color: red;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.contact-form form:hover {
  border: 2px solid red;
  -webkit-box-shadow: 0 0 20px 10px #ccc;
          box-shadow: 0 0 20px 10px #ccc;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.contact-info {
  width: 35%;
  height: 100%;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.contact-info .info-cards .info-card {
  margin-top: 30px;
  position: relative;
}

.contact-info .info-cards .info-card p {
  margin-left: 20px;
}

.contact-info .info-cards .info-card p a {
  text-decoration: none;
  color: #000;
}

.info-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.info-card:hover .img-wrap .active-img {
  display: block;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.info-card:hover .img-wrap .static-img {
  display: none;
}

.info-card .img-wrap {
  max-width: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.info-card .img-wrap img {
  max-width: 100%;
  display: block;
}

.info-card .img-wrap .active-img {
  display: none;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.map {
  width: 100%;
  height: 300px;
  position: relative;
  cursor: pointer;
  margin-top: 30px;
}

.hr-table {
  padding: 20px 35px 0;
}

.hr-table p {
  margin-bottom: 20px;
}

.hr-table p a {
  text-decoration: none;
  color: #007bff;
}

.hr-table p a:hover {
  color: blue;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table thead th {
  border: 2px solid #ccc;
  width: 33%;
  text-align: center;
  margin: 0;
  padding: 20px;
  text-transform: uppercase;
}

.button-hide {
  display: none;
}

.button-show {
  display: block;
  position: absolute;
  top: -50px;
  right: 0;
  height: 40px;
  border-radius: 15px;
  padding: 10px;
  outline: none;
  border: 1px solid #ccc;
  background: transparent;
  line-height: 15px;
  color: #444;
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  z-index: 2;
}

.button-show:hover {
  border: 1px solid red;
  color: red;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.product-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 100px 0;
}

.product-cards .hide {
  opacity: 0;
  display: none;
  -webkit-transform: translateZ(-100px);
          transform: translateZ(-100px);
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.product-cards .show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 30vw;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.product-cards .show .product-img {
  min-width: 40%;
  height: 40%;
  overflow: hidden;
}

.product-cards .show .product-info {
  display: block;
  padding: 20px;
}

.product-cards .show:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: none;
          transform: none;
}

.product-card {
  border-radius: 15px;
  width: 30%;
  height: 15vw;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 10px #ccc;
          box-shadow: 0 0 10px #ccc;
}

.product-card .product-info {
  display: none;
}

.product-card:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 20px 1px #666;
          box-shadow: 0 0 20px 1px #666;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.product-img {
  max-width: 100%;
  height: unset;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  -o-object-position: bottom;
     object-position: bottom;
  overflow: hidden;
  position: relative;
}

.product-img .product-title {
  color: #2b2747;
  padding-left: 10px;
  position: absolute;
  font-size: 22px;
  top: 0;
  width: 100%;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(white), color-stop(55%, white), color-stop(85%, rgba(255, 255, 255, 0.764704)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, white 0%, white 55%, rgba(255, 255, 255, 0.764704) 85%, rgba(255, 255, 255, 0) 100%);
}

.product-img img {
  max-width: 100%;
  height: 100%;
  display: block;
}

.media-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 100px 0;
}

.media-cards .get_back {
  display: none;
}

.media-cards .hide {
  display: none;
  -webkit-transition: .5s ease .5s;
  transition: .5s ease .5s;
}

.media-cards .show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 30vw;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.media-cards .show .media-card-title {
  top: 0;
  width: auto;
  bottom: auto;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.media-cards .show .media-card-title::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -20px;
  text-align: center;
  height: 5px;
  background: red;
}

.media-cards .show .media-card-img {
  display: none;
}

.media-card {
  width: 40%;
  height: 20vw;
  border-radius: 20px;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 10px 20px #ccc;
          box-shadow: 0 10px 20px #ccc;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.media-card .media-card-title {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-transform: capitalize;
  color: #2b2747;
}

.media-card .media-card-img {
  max-width: 60%;
}

.media-card .media-card-img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.about-us-item {
  margin: 50px auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider-container {
  overflow: hidden;
}

.slide-holder {
  width: 500%;
  position: relative;
  -webkit-animation: scroller 25s infinite;
          animation: scroller 25s infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.slide-holder img {
  width: 20%;
  display: inline-block;
  max-width: 25%;
  margin-right: -4.5px;
  -o-object-fit: fill;
     object-fit: fill;
}

.loaded-hiding .page-loader {
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .page-loader {
  display: none;
}

.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #444;
}

.loader-animation {
  width: 5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: circle infinite 1s 0s;
          animation: circle infinite 1s 0s;
}

.loader-animation img {
  max-width: 100%;
  display: block;
}

.building {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, orange, purple);
  z-index: 2;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.building .building-info {
  color: #fff;
}

.thank-u-title {
  text-align: center;
  color: #007bff;
  margin-top: 50px;
  font-size: 40px;
}

@media screen and (max-width: 1240px) {
  .nav ul .nav-link {
    font-size: 20px;
  }
  .h-menu .cat-btn {
    padding: 10px;
    width: 100px;
    font-size: 16px;
  }
  #slide1:after,
  #slide2:after,
  #slide3:after,
  #slide4:after,
  #slide5:after {
    font-size: 24px;
  }
  .production h1 {
    font-size: 22px;
  }
  .about-us-btn {
    font-size: 16px;
  }
  .contact-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-info {
    -ms-flex-item-align: start;
        align-self: start;
    padding-left: 5%;
    width: 100%;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact-form {
    width: 100%;
  }
  .comp-info {
    width: 28%;
  }
  .footer-nav ul li {
    font-size: 18px;
  }
}

@media screen and (max-width: 870px) {
  .nav ul .nav-link {
    font-size: 18px;
  }
  .nav ul .nav-link + li {
    margin-left: 10px;
  }
  .h-menu .cat-btn {
    padding: 5px 10px;
    width: unset;
    font-size: 14px;
  }
  .slide-inner .slide-btn {
    width: unset;
    padding: 5px 10px;
    font-size: 10px;
  }
  .slide-inner .slide-title {
    font-size: 18px;
  }
  .slide-inner .slide-text {
    font-size: 14px;
  }
  #slide1:after,
  #slide2:after,
  #slide3:after,
  #slide4:after,
  #slide5:after {
    font-size: 20px;
  }
  .blog-title {
    font-size: 22px;
  }
  .blog-text {
    font-size: 16px;
  }
  .blog-btn {
    font-size: 18px;
    width: unset;
    padding: 10px;
    font-size: 14px;
  }
  .our-production {
    margin: 0;
  }
  .our-production .production {
    width: 45%;
    padding: 0;
    height: 200px;
  }
  .our-production .production h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .about-us-btn {
    font-size: 14px;
  }
  .comp-info {
    font-size: 12px;
  }
  .footer-nav ul li {
    font-size: 14px;
  }
  .social {
    font-size: 16px;
  }
  .footer-alt {
    font-size: 12px;
  }
  .product-cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .product-cards .product-card {
    width: 45%;
  }
  .product-cards .show {
    width: 100%;
  }
  .product-cards .show {
    overflow-y: scroll;
  }
  .product-cards .show .product-img {
    height: unset;
  }
  .product-img .product-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 690px) {
  .h-menu {
    display: none;
  }
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .logo {
    width: 15%;
  }
  .slide-inner .slide-btn {
    width: unset;
    padding: 5px 10px;
    font-size: 8px;
  }
  .slide-inner .slide-title {
    font-size: 16px;
  }
  .slide-inner .slide-text {
    font-size: 12px;
  }
  #slide1::after,
  #slide2::after,
  #slide3::after,
  #slide4::after,
  #slide5::after {
    font-size: 16px;
  }
  .about-us-promo {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
  }
  .about-us-promo .about-us-card {
    width: 45%;
    margin-bottom: 30px;
  }
  .about-us-promo .about-us-btn {
    font-size: 12px;
  }
  .comp-info {
    font-size: 10px;
    width: 30%;
  }
  .footer-menu {
    width: 40%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-nav ul li + li {
    margin-left: 0;
    margin-bottom: 5px;
  }
  .social {
    font-size: 14px;
  }
  .blur-section-menu ul li a {
    font-size: 14px;
  }
  .blur-section-menu ul li {
    font-size: 14px;
  }
  .blur-section-menu ul .product-list {
    font-size: 10px;
  }
  .blur-section-menu ul .right-arrow {
    width: 15px;
    height: 15px;
  }
  .blur-section-menu ul .right-arrow:before {
    width: 15px;
    height: 15px;
  }
  .product-cards {
    margin-top: 70px;
  }
  .product-cards .product-card {
    width: 100%;
    height: 40vw;
  }
  .product-cards .show {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: unset;
  }
  .product-cards .show .product-img {
    height: unset;
  }
  .product-cards .show .product-title {
    font-size: 20px;
  }
  .media-card .media-card-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 500px) {
  .hamburger {
    width: 30px;
    height: 30px;
  }
  .hamburger .dash {
    height: 3px;
  }
  .hamburger .dash::after,
  .hamburger .dash::before {
    height: 3px;
  }
  .hamburger .dash::after {
    bottom: 7px;
  }
  .hamburger .toggle .dash::before {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  .hamburger .toggle .dash::after {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .slider__control {
    height: 30px;
    width: 20px;
  }
  .slider__control::before {
    height: 10px;
    width: 10px;
  }
  .our-production .production {
    width: 100%;
    margin-bottom: 20px;
  }
  .about-us-promo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-us-promo .about-us-card {
    width: 90%;
  }
  .blur-section-menu h1 {
    font-size: 30px;
  }
  .blur-section-menu ul li a {
    font-size: 10px;
  }
  .blur-section-menu ul li {
    font-size: 10px;
  }
  .blur-section-menu ul .product-list {
    font-size: 10px;
  }
  .blur-section-menu ul .right-arrow {
    width: 10px;
    height: 10px;
  }
  .blur-section-menu ul .right-arrow:before {
    width: 10px;
    height: 10px;
  }
  .footer-menu {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
  .social a ~ a {
    margin-left: 0;
    margin-top: 10px;
  }
  .social a:after {
    visibility: hidden;
  }
  .product-cards .product-card {
    width: 100%;
    height: 40vw;
  }
  .product-cards .show {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: unset;
  }
  .product-cards .show .product-img {
    height: 300px;
  }
  .about-us-info .about-us-text {
    font-size: 18px;
  }
  .media-card .media-card-title {
    font-size: 16px;
  }
  .table thead th {
    padding: 10px;
    font-size: 10px;
  }
}

@media screen and (max-width: 360px) {
  .blur-section-menu h1 {
    font-size: 20px;
  }
  #s1:checked ~ #slide4,
  #s2:checked ~ #slide5,
  #s3:checked ~ #slide1,
  #s4:checked ~ #slide2,
  #s5:checked ~ #slide3 {
    -webkit-transform: translate3d(0, -20%, -400px);
            transform: translate3d(0, -20%, -400px);
  }
  #s1:checked ~ #slide5,
  #s2:checked ~ #slide1,
  #s3:checked ~ #slide2,
  #s4:checked ~ #slide3,
  #s5:checked ~ #slide4 {
    -webkit-transform: translate3d(0, 10%, -200px);
            transform: translate3d(0, 10%, -200px);
  }
  #s1:checked ~ #slide1,
  #s2:checked ~ #slide2,
  #s3:checked ~ #slide3,
  #s4:checked ~ #slide4,
  #s5:checked ~ #slide5 {
    -webkit-transform: translate3d(0, 40%, 0);
            transform: translate3d(0, 40%, 0);
  }
  #s1:checked ~ #slide2,
  #s2:checked ~ #slide3,
  #s3:checked ~ #slide4,
  #s4:checked ~ #slide5,
  #s5:checked ~ #slide1 {
    -webkit-transform: translate3d(0, 75%, -200px);
            transform: translate3d(0, 75%, -200px);
  }
  #s1:checked ~ #slide3,
  #s2:checked ~ #slide4,
  #s3:checked ~ #slide5,
  #s4:checked ~ #slide1,
  #s5:checked ~ #slide2 {
    -webkit-transform: translate3d(0, 110%, -400px);
            transform: translate3d(0, 110%, -400px);
  }
  #salt-slider {
    height: 25vh;
  }
  #salt-slider label {
    height: 60%;
    width: 50%;
  }
  .slider-section {
    margin: 10px 0;
  }
  .slide-inner .slide-title {
    font-size: 14px;
  }
  .slide-inner .slide-text {
    font-size: 12px;
  }
  .table thead th {
    padding: 5px;
    font-size: 8px;
  }
  .our-production {
    padding: 0;
  }
  .our-production .production h1 {
    font-size: 18px;
  }
  .our-production .production .production-name {
    font-size: 14px;
  }
  .news-section {
    padding-left: 20px;
    padding: 10px;
    margin-bottom: 30px;
  }
  .news-section .section-title {
    font-size: 16px;
  }
  .comp-info {
    width: 60%;
    font-size: 10px;
  }
  .footer-menu {
    width: 100%;
    margin-top: 30px;
  }
  .footer-nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer-nav ul li {
    font-size: 10px;
  }
  .footer-nav ul li + li {
    margin-left: 10px;
    margin-bottom: 0;
  }
  .social {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .social a ~ a {
    margin-left: 10px;
    margin-top: 0;
  }
  .social a:after {
    display: block;
  }
}
/*# sourceMappingURL=main.css.map */