/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  font-family: "stolzl";
  font-weight: 300;
  color: #000;
  font-size: 16px;
  background-color: #fff;
  background: url("../images/pattern.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.main {
  margin-top: 127px;
}

.input__field {
  color: #000;
  font-size: 14px;
  padding: 0 0 5px;
  border-bottom: 1px solid #b1b1b1;
  width: 100%;
}
.input__field::-webkit-input-placeholder {
  font-weight: 300;
}

.form-note {
  font-size: 11px;
  font-weight: 200;
  margin-bottom: 15px;
}
.form-note a {
  color: #6d8f56;
  text-decoration: underline;
}

.btn {
  padding: 11px 25px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  transition: 200ms ease all;
  background-color: #2cb93d;
  border-radius: 10px;
}
.btn:hover {
  background-color: #1b7225;
}

.blocker {
  z-index: 99;
}

.header {
  padding: 10px 0 20px;
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: #fff;
  background-image: url("../images/header-bg.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
.header__burger {
  display: none;
  width: 35px;
  flex-direction: column;
  padding: 5px 0;
  gap: 6px;
  margin-left: 10px;
}
.header__burger span {
  width: 100%;
  display: inline-block;
  background: #b94843;
  height: 2px;
  min-height: 2px;
  border-radius: 4px;
  transition: 200ms ease all;
  position: relative;
}
.header__burger--active span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}
.header__burger--active span:nth-child(2) {
  opacity: 0;
}
.header__burger--active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -8px;
}
.header__logo img {
  max-width: 170px;
  width: 100%;
}
.header__title {
  font-size: 20px;
  color: #b94843;
  font-weight: 500;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__top-group {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__contacts-item img {
  width: 36px;
  transition: 200ms ease all;
}
.header__contacts-item:hover img {
  transform: scale(1.1);
}
.header__contacts-tel {
  transition: 200ms ease all;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 400;
}
.header__contacts-tel:hover {
  color: #000;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 20px;
  font-size: 23px;
  color: #2cb93d;
}
.header__nav-item {
  transition: 200ms ease all;
  font-size: 24px;
  font-weight: 300;
}
.header__nav-item:hover {
  color: #1a6022;
}

.hero {
  padding: 100px 0;
  background: url("../images/hero.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}
.hero__text {
  max-width: 550px;
}
.hero__title {
  color: #fff;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 500;
  padding-bottom: 35px;
}
.hero__desc {
  color: #fff;
  font-size: 21px;
  padding-bottom: 35px;
}
.hero__btn {
  padding: 15px 40px;
  color: #fff;
  font-size: 20px;
  background: #2cb93d;
  transition: 200ms ease all;
  border-radius: 10px;
  display: inline-block;
}
.hero__btn:hover {
  background: #1b7225;
}

.advantages {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
.advantages__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  color: #fff;
  background: #f70400;
  border-radius: 10px;
  padding: 15px 25px 15px 10px;
}
.advantages__item-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}
.advantages__item-group span:nth-child(1) {
  font-size: 17px;
  font-weight: 500;
}

.title {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #f70400;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}

.products {
  padding-top: 40px;
}
.products__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 35px;
}
.products__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.products__img {
  width: 100%;
  height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
.products__title {
  font-size: 24px;
  margin: 20px 0 10px;
}
.products__desc {
  font-size: 16px;
  margin-bottom: 15px;
}

.slider__left img,
.slider__right img {
  min-width: 15px;
}

.gost {
  padding-top: 45px;
}
.gost__title {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}
.gost__title span {
  color: #f70400;
}
.gost__slider-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-top: 35px;
}
.gost__box {
  overflow: hidden;
  padding: 30px;
}
.gost__slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 143px;
  max-height: 143px;
  background: #fff;
  border-radius: 10px;
  box-shadow: -0.418px 3.978px 21.28px 6.72px rgba(0, 0, 0, 0.08);
}
.gost__slide img {
  max-width: 100%;
  max-height: 100%;
}

.about {
  padding-top: 40px;
}
.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.about__img {
  width: 100%;
  max-width: 615px;
  border-radius: 20px;
}
.about__desc {
  font-size: 16px;
}

.numbers {
  padding-top: 40px;
}
.numbers__title {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  color: #f70400;
  padding-bottom: 25px;
}
.numbers__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 25px;
}
.numbers__item {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  font-weight: 300;
}
.numbers__item span:nth-child(1) {
  font-size: 24px;
  color: #2cb93d;
  font-weight: 500;
}

.cer {
  padding-top: 40px;
}
.cer__slider-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
  margin-top: 35px;
}
.cer__box {
  overflow: hidden;
  padding: 30px;
}
.cer__slide {
  min-height: 285px;
  max-width: 285px;
  border-radius: 10px;
}
.cer__slide a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.cer__slide img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.partners {
  padding-top: 40px;
}
.partners__title {
  text-align: center;
  color: #f70400;
  font-size: 30px;
  font-weight: 500;
}
.partners__slider-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-top: 35px;
}
.partners__box {
  overflow: hidden;
  padding: 30px;
}
.partners__slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  max-height: 90px;
  background: #fff;
  border-radius: 10px;
  box-shadow: -0.418px 3.978px 21.28px 6.72px rgba(0, 0, 0, 0.08);
  padding: 15px;
}
.partners__slide img {
  max-width: 100%;
  max-height: 100%;
}

.market {
  padding-top: 40px;
}
.market__title {
  font-size: 30px;
  color: #f70400;
  padding-bottom: 30px;
  font-weight: 500;
  text-align: center;
}
.market__items {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.market__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.market__item-holder {
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.market__item-holder img {
  max-width: 100%;
  max-height: 100%;
}
.market__stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.market__stars span {
  font-size: 24px;
  font-weight: 400;
}
.market__stars span .star-total {
  font-size: 20px;
  color: #929292;
  font-weight: 300;
}

.footer__box {
  padding-top: 60px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}
.footer__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .header__contacts-tel {
  margin: 30px 0 20px;
}
.footer__title {
  font-size: 24px;
  color: #f70400;
  padding-bottom: 30px;
  font-weight: 400;
}
.footer__logo {
  width: 100%;
  max-width: 170px;
}
.footer__items {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.footer__items a {
  text-decoration: underline;
}
.footer__items a:hover {
  text-decoration: none;
}
.footer__items .footer__btn {
  text-decoration: none;
}
.footer__desc {
  max-width: 290px;
  font-size: 18px;
}
.footer__line {
  padding-bottom: 20px;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.footer__line .copyright {
  font-size: 16px;
  font-weight: 200;
}
.footer__line .politic {
  color: #656565;
  font-size: 16px;
  font-weight: 200;
  text-decoration: underline;
}
.footer__line .politic:hover {
  text-decoration: none;
}
.footer__line .develop {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 200;
}
.footer__line .develop a {
  display: inline-block;
  margin: 0 5px;
  text-decoration: underline;
}
.footer__line .develop a:hover {
  text-decoration: none;
}
.footer__line .develop img {
  position: relative;
  top: -1px;
}

@media (max-width: 1365px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  body {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .header__top-group {
    gap: 20px;
  }
  .header__title {
    font-size: 18px;
  }
  .advantages {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__img {
    max-width: 50%;
  }
  .footer__line {
    flex-wrap: wrap;
  }
  .header {
    background-size: cover;
  }
}
@media (max-width: 989px) {
  .header__burger {
    display: flex;
  }
  .header__title {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .main {
    margin-top: 78px;
  }
  .header--active .header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    left: 0;
    background: #fff;
    padding: 15px 15px 30px;
    top: 78px;
    align-items: flex-start;
  }
  .header--active .header__nav-item {
    font-size: 20px;
  }
  .hero {
    padding: 40px 0 80px;
  }
  .hero__title {
    font-size: 42px;
  }
  .products__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .gost__slider-container,
  .cer__slider-container,
  .partners__slider-container {
    gap: 25px;
  }
  .about__container {
    flex-direction: column;
  }
  .numbers__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__box {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .header__logo img {
    max-width: 140px;
  }
  .header__top {
    gap: 15px;
  }
  .header__contacts-tel {
    font-size: 14px;
    margin-left: 0;
  }
  .header__contacts-item img {
    width: 20px;
  }
  .header {
    padding-bottom: 10px;
  }
  .main {
    margin-top: 60px;
  }
  .header--active .header__nav {
    top: 60px;
  }
  .header--active .header__nav-item {
    font-size: 18px;
  }
  .hero__title {
    font-size: 30px;
    padding-bottom: 20px;
  }
  .hero__desc {
    font-size: 16px;
    padding-bottom: 20px;
  }
  .hero__btn {
    padding: 10px 20px;
    font-size: 18px;
  }
  .advantages {
    grid-template-columns: repeat(1, 1fr);
  }
  .products__img {
    height: 200px;
  }
  .products__title {
    font-size: 18px;
  }
  .products__desc {
    font-size: 14px;
  }
  .gost__title {
    font-size: 25px;
  }
  .about__img {
    max-width: 100%;
  }
  .cer__box {
    padding: 30px 0;
  }
  .market__items {
    gap: 30px;
  }
  .market__item {
    width: 22%;
  }
  .footer__box {
    flex-direction: column;
    gap: 15px;
  }
  .footer__group:first-child {
    display: none;
  }
  .footer__title {
    font-size: 20px;
    padding-bottom: 15px;
  }
  .footer .header__nav-item {
    font-size: 18px;
  }
  .footer__line {
    padding-top: 30px;
  }
  .footer__line .copyright,
  .footer__line .politic,
  .footer__line .develop {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .header__contacts-tel {
    font-size: 12px;
  }
  .header__burger {
    margin-left: 0;
  }
  .header__logo img {
    max-width: 100px;
  }
  .header__top {
    gap: 10px;
  }
  .main {
    margin-top: 48px;
  }
  .header--active .header__nav {
    top: 48px;
  }
  .header--active .header__nav-item {
    font-size: 16px;
  }
  .hero__title {
    font-size: 25px;
  }
  .products__items {
    grid-gap: 15px;
  }
  .products__items .btn {
    width: 100%;
    padding: 11px;
    font-size: 13px;
  }
  .products__img {
    height: 160px;
  }
  .products__title {
    font-size: 16px;
    margin: 10px 0;
  }
  .products__desc {
    font-size: 12px;
  }
  .gost__title {
    font-size: 18px;
  }
  .market__item-holder {
    height: 55px;
  }
  .market__stars img {
    max-width: 18px;
  }
  .market__stars span {
    font-size: 17px;
  }
  .market__stars span .star-total {
    font-size: 14px;
  }
}
.modal-form {
  padding-bottom: 35px;
  background-image: url("../images/modal-bg.png");
  background-repeat: no-repeat;
  background-position: bottom right;
}
.modal-form a.close-modal {
  display: none;
}
.modal-form .modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.modal-form .modal__form-title {
  padding-top: 25px;
  text-align: center;
  font-weight: 500;
  color: #f70400;
  font-size: 33px;
}
.modal-form .modal__form-subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  padding-bottom: 40px;
}

.modal-success {
  display: none;
  text-align: center;
}
.modal-success .modal__form-title {
  padding-bottom: 15px;
}

.form-group__title {
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 10px;
}
.form-group__title span {
  color: #f65959;
  font-weight: 300;
}

.form-group {
  margin-bottom: 25px;
}

.form-group-help {
  padding-top: 4px;
  font-size: 13px;
  display: none;
}

.btn-holder {
  text-align: center;
  padding-top: 40px;
}
.btn-holder .btn {
  background-color: #2cb93d !important;
}
.btn-holder .btn:hover {
  background-color: #1b7225 !important;
}

.form-group--error .form-group-help {
  display: block;
  color: #f70400;
}

.modal--success .modal-content {
  display: none;
}
.modal--success .modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}/*# sourceMappingURL=index.css.map */