@import url("https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700&display=swap&subset=cyrillic");

button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: none; 
}
*,*:before,*:after{
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


.heater {
  margin: 15px 0;
  font-family: 'PT Sans', sans-serif; 
}
  .heater .logo img {
    margin-top: 5px;
    margin-right: 22px;
    float: left; 
}
  .heater .logo strong {
    font-size: 25px;
    color: #368c02; 
}
  .heater .logo span {
    font-size: 14px;
    font-weight: bold; 
}
  .heater .phone-block {
    color: #0d0d0d; 
}
    .heater .phone-block span {
      font-size: 14px;
      font-weight: 400; 
  }
    .heater .phone-block strong {
      font-size: 18px;
      font-weight: 700; 
  }
  .heater .right-block a {
    color: #368c02;
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    margin-left: 60px; 
}
  .heater .right-block button {
    width: 180px;
    height: 40px;
    margin-top: 10px;
}

/*nav*/

.navi{
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
    font-family: 'PT Sans', sans-serif;
}
.navi:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3da001;
    z-index: 2;
}
.navi__body{
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    height: 40px;
    -ms-align-items: center;
    align-items: center;
}
.navi__burger{
    display: none;
}
.navi__menu{
    margin: 0 auto;
}

.navi__list{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    z-index: 3;
    margin-bottom: 0;
}
.navi__list li{
    list-style: none;
    margin: 0;
    padding: 10px;
}

.navi__list li:hover,
.navi__list li:focus {
  background: -webkit-gradient(linear, left top, left bottom, from(#4abf06), to(#3da001));
  background: linear-gradient(to bottom, #4abf06 0%, #3da001 100%); 
}
.navi__link:hover,
.navi__link:focus{
  text-decoration: none;
  color: #fff;
}
.navi__link{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
@media (max-width:767px){
    .hea_top{
      margin-top: 50px;
    }
    body.lock{
        overflow: hidden;/*чтоб не ездило содержимое, при открытом меню*/
    }
    .navi{
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 50;
  }
    .navi__body{
        height: 50px;
    }
    .navi__burger{
        display: block;
        position: relative;
        width: 30px;
        height: 20px;

        position: relative;
        z-index: 3;
    }
    .navi__burger span{
        position: absolute;
        background-color: #fff;
        left: 0;
        width: 100%;
        height: 2px;
        top: 9px;
        transition: all 0.3s ease 0s;
    }
    .navi__burger:before,
    .navi__burger:after{
        content: '';
        background-color: #fff;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
    }
    .navi__burger:before{
        top: 0;
    }
    .navi__burger:after{
        bottom: 0;
    }

    .navi__burger.active:before{
        transform: rotate(45deg);
        top: 9px;
    }
    .navi__burger.active:after{
        transform: rotate(-45deg);
        bottom: 9px;
    }
    .navi__burger.active span{
        transform: scale(0);
    }
    .navi__menu{
        margin: 0;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;/*чтобы скролилось меню*/
        transition: all 0.3s ease 0s;
        background-color: #3da001;
        padding: 70px 10px 20px 10px;   
    }
    .navi__menu.active{
        top: 0;
    }

    .navi__list{
        display: block;
    }
     .navi__list li{
        margin: 0 0 20px 0;
    }
    .navi__link{
        font-size: 24px;
    }

}
/*Colors*/
.text-lighten {
  color: #fff; }

.danger_button, .forest_button {
  -webkit-box-shadow: 0 5px 10px rgba(0, 1, 3, 0.17);
  box-shadow: 0 5px 10px rgba(0, 1, 3, 0.17);
  border-radius: 5px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold; }

.danger_button {
  background-color: #368c02;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#640000), color-stop(3%, #640000), color-stop(5%, #8c0202), to(#e30000));
  background-image: linear-gradient(to top, #640000 0%, #640000 3%, #8c0202 5%, #e30000 100%);
  border: none; }

.forest_button {
  background-color: #368c02;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#44b400), color-stop(3%, #44b400), to(#3a9702));
  background-image: linear-gradient(to top, #44b400 0%, #44b400 3%, #3a9702 100%); }

.form-input {
  border-radius: 5px;
  border: 1px solid #d0d0d0;
  background-color: #f7f7f7;
  font-size: 16px;
  color: #626262;
  font-style: italic;
  padding-left: 20px; }

.section-header {
  margin: 80px 0 0;
  font-family: 'PT Sans', sans-serif;
  text-align: center;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: bold; }
  .section-header-darken {
    color: #132d03; }

/*promo_block*/
.promo {
  min-height: 790px;
  background: #fff url(../images/bg-1.jpg) center top no-repeat;
  background-size: cover;
  font-family: 'PT Sans', sans-serif;
  padding-top: 40px; }
  .promo__header {
    text-align: center;
    margin-bottom: 115px; }
    .promo__header h1 {
      font-size: 50px; }
    .promo__header h2 {
      font-size: 44px; }
    .promo__header h1, .promo__header h2 {
      margin-top: 35px; }
      .promo__header h1 span, .promo__header h2 span {
        background-color: #3da001;
        color: #fff;
        text-transform: uppercase;
        padding: 10px 35px;
        font-weight: bold; }
    .promo__header p {
      margin: 60px auto 110px;
      font-size: 29px;
      max-width: 620px;
      text-align: center; }
  .promo__form {
    text-align: center;
    background-color: #fff;
    max-width: 640px;
    height: 300px;
    -webkit-box-shadow: 0 14px 40px rgba(0, 1, 3, 0.15);
            box-shadow: 0 14px 40px rgba(0, 1, 3, 0.15);
    margin: 0 auto;
    padding: 35px 35px; }
    .promo__form h3 {
      margin-bottom: 40px; }
  .promo__input {
    width: 260px;
    height: 55px; }
    .promo__input:first-child {
      margin-left: 0; }
    .promo__input:nth-child(2) {
      margin-left: 20px; }
  .promo__button {
    margin-top: 35px;
    width: 300px;
    height: 55px; }

/*about */
.about {
  padding-bottom: 80px; }
  .about-block {
    font-family: 'PT Sans', sans-serif;
    text-align: center;
    margin: 60px 10px 0; }
    .about-block h3, .about-block p {
      font-size: 18px; }
    .about-block h3 {
      font-weight: bold;
      margin-bottom: 5px; }
    .about-block p {
      padding: 0 30px;
      line-height: 1; }
  .about-img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 2px solid #368c02;
    margin: 0 auto; }
    .about-img img {
      margin: 28px auto; }

/*promo november*/
.promonov {
  background: #1e0403 url("../images/bg-2.jpg") center top no-repeat;
  background-size: cover;
  font-family: 'PT Sans', sans-serif;
  padding-top: 80px;
  color: #fff;
  min-height: 590px; }
  .promonov__header {
    text-align: center; }
    .promonov__header h2 {
      font-size: 50px;
      font-weight: bold; }
    .promonov__header p {
      font-size: 28px;
      letter-spacing: -1px; }
  .promonov__form {
    margin-top: 50px; }
  .promonov__input {
    width: 410px;
    height: 55px;
    margin-bottom: 10px; }
  .promonov__button {
    margin-top: 10px;
    width: 410px;
    height: 60px;
    font-size: 20px;
    border: 1px solid #000; }

/*count*/
.count {
  min-height: 120px;
  -webkit-box-shadow: inset 0 14px 21px rgba(0, 1, 3, 0.27);
          box-shadow: inset 0 14px 21px rgba(0, 1, 3, 0.27);
  background: #ab0d19 url("../images/bg-3.png") top center no-repeat;
  background-size: cover; }
  .count h3 {
    color: #ffffff;
    font-family: "PT Sans";
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-top: 35px; }
    .count h3 span {
      display: inline-block;
      color: #464646;
      background-color: #fff;
      margin-left: 5px;
      padding: 0 10px;
      border-radius: 10px;
      -webkit-box-shadow: 5px 5px 5px #910b15;
              box-shadow: 5px 5px 5px #910b15; }

/*kits*/
.kits {
  min-height: 660px;
  background: #fff url("../images/bg-3.jpg") top center no-repeat;
  background-size: cover;
  font-family: "PT Sans"; }
  .kits p.text-lighten {
    font-size: 18px;
    text-align: center;
    margin: 20px 0 60px; }
  .kits-block {
    min-width: 460px;
    min-height: 380px;
    background: #fff;
    padding: 30px 50px; }
    .kits-block:first-child {
      margin-right: 20px; }
  .kits-head {
    height: 165px;
    width: 460px;
    margin: 0 auto; }
  .kits-img {
    float: left;
    margin-right: 100px; }
  .kits-size {
    font-size: 16px; }
    .kits-size p {
      position: relative;
      z-index: 3;
      margin-bottom: 10px; }
      .kits-size p:before {
        content: '';
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 215px;
        width: 22px;
        height: 30px;
        background: #fff url("../images/icons/tree.png") 0 0 no-repeat; }
  .kits-terms {
    text-align: center;
    font-size: 20px; }
    .kits-terms p {
      margin-bottom: 0; }
  .kits__button {
    margin-top: 10px;
    width: 220px;
    height: 45px;
    font-size: 16px; }

@media (max-width: 1200px) {
  .kits-block {
    padding: 20px 10px; } }
@media (max-width: 990px) {
  .kits {
    height: 600px; } }
/*reviews*/
.review {
  font-family: 'PT Sans', sans-serif; }
  .review-img {
    width: 140px;
    height: 140px;
    float: left;
    margin: 0 20px 120px 0; }
    .review-img img {
      width: 100%;
      height: 100%;
      border-radius: 50%; }
  .review-item {
    margin-bottom: 50px; }
    .review-item h4 {
      font-size: 16px;
      font-weight: bold;
      margin: 4px 0; }
    .review-item p {
      font-size: 14px;
      padding: 10px 20px 0 0; }
    .review-item button {
      font-size: 18px;
      font-weight: bold;
      width: 300px;
      height: 50px; }
  .review h2 {
    margin-bottom: 80px; }

/*production*/
.production {
  min-height: 540px;
  background: #fff url("../images/bg-4.jpg") top center no-repeat;
  background-size: cover;
  font-family: "PT Sans"; }
  .production-block {
    margin-top: 80px; }
    .production-block img {
      margin: 0 auto 25px; }
    .production-block p {
      font-size: 18px;
      font-weight: bold;
      text-align: center; }

/*catalog*/
.catalog_1 {
  background: #fff url("../images/bg-5.jpg") top center no-repeat;
  background-size: cover; }

.catalog_2 {
  background-color: #f4f4f4; }

.catalog_3 {
  background: #fff url("../images/bg-6.jpg") top center no-repeat;
  background-size: cover; }

.catalog {
  font-family: "PT Sans"; }
  .catalog-block {
    margin: 75px 20px; }
    .catalog-block-in {
      background-color: #fff;
      padding: 12px;
      text-align: center; }
      .catalog-block-in img {
        margin: 0 auto; }
      .catalog-block-in h3 {
        font-size: 16px;
        font-weight: bold; }
      .catalog-block-in h4 {
        font-size: 14px;
        font-weight: normal;
        color: #717171; }
      .catalog-block-in p {
        font-size: 14px;
        color: #000; }
  .catalog__button {
    margin-top: 20px;
    width: 100%;
    height: 55px;
    font-size: 20px; }

.contacts {
  font-family: "PT Sans";
  background: #fff url("../images/bg-7.jpg") top center no-repeat;
  background-size: cover;
  min-height: 430px; }
  .contacts__item {
    height: 370px;
    background-color: #fff;
    margin-top: 30px;
    -webkit-box-shadow: 0 14px 20px rgba(0, 1, 3, 0.15);
            box-shadow: 0 14px 20px rgba(0, 1, 3, 0.15);
    padding-left: 60px;
    padding-top: 60px; }
  .contacts h3 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px; }
  .contacts p {
    margin-bottom: 25px;
    padding-left: 55px; }
  .contacts #address, .contacts #time {
    font-size: 18px; }
  .contacts #address {
    background: url("../images/icons/location.png") 0 5px no-repeat; }
  .contacts #time {
    background: url("../images/icons/clock.png") 0 5px no-repeat; }
  .contacts #phone {
    font-size: 22px;
    font-weight: bold;
    background: url("../images/icons/phone.png") 0 5px no-repeat; }

/*test*/
.test {
  height: 360px;
  width: 180px;
  background-color: #f0f;
  margin: 5px; }

/*media*/
@media (max-width: 1020px) {
  .promo__header h1 {
    font-size: 42px; }
  .promo__header h2 {
    font-size: 38px; }
  .promo__header h1 span, .promo__header h2 span {
    padding: 5px; } }
@media (max-width: 767px) {
  .section-header {
    margin: 40px 0; }

  .promo__header h1 {
    font-size: 36px;
    line-height: 2; }
  .promo__header h2 {
    font-size: 32px;
    line-height: 2; }
  .promo__header p {
    margin-bottom: 30px; } }
@media (max-width: 660px) {
  .promo__header h1 {
    font-size: 36px;
    line-height: 2.2; }
  .promo__header h2 {
    margin-top: 0;
    font-size: 30px;
    line-height: 2; }
  .promo__header p {
    margin-top: 20px; }
  .promo__form {
    padding: 15px 10px; }
    .promo__form h3 {
      margin-bottom: 10px; }
  .promo__input {
    margin: 0 auto 10px; }
    .promo__input:nth-child(2) {
      margin-left: 0; }
  .promo__button {
    margin-top: 10px; }

  .promonov {
    padding-top: 20px; } }

/*# sourceMappingURL=style.css.map */