/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/

/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/

:root {
  --Text-Accent: #5C7A57;
  --Text-Primary: #333;
}

#reviews_content {
  width: 100% !important;
}

.section {
  margin-top: 120px;
  max-width: 100%;
  overflow: hidden;

  @media(max-width: 992px) {
    margin-top: 80px;
  }

  @media(max-width: 600px) {
    margin-top: 60px;
  }
}

.splide {
  z-index: 1;
}

.page-top>div:first-child {
  z-index: 1;
}


.main-button {
  border-radius: 2px;
  background-color: #5c7a57;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-family: 'Evolventa';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 132%;
  letter-spacing: -0.36px;
  transition: color 0.3s ease-in, background-color 0.3s ease-in;

  &:hover {
    color: #fff;
    background-color: #3e534dd9;
  }

  @media(max-width: 600px) {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
    letter-spacing: -0.32px;
  }
}


.section__title {
  color: var(--Text-Accent);
  font-family: "Savoye LET";
  font-size: 68px;
  font-style: normal;
  font-weight: 400;
  line-height: 80%;

  @media(max-width: 992px) {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
  }

  @media(max-width: 600px) {
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
  }
}

.section__subtitle {
  color: var(--Text-Primary);
  font-family: 'Evolventa';
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%;
  letter-spacing: -0.64px;

  @media(max-width: 992px) {
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    letter-spacing: -0.64px;
  }

  @media(max-width: 600px) {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    letter-spacing: -0.48px;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 27px;
  padding-top: 12px;
  padding-bottom: 12px;

  & div {
    display: flex;
    align-items: center;
    gap: 8px;

    &:last-child {
      pointer-events: none;

      & svg {
        display: none;
      }
    }
  }

  & span {
    color: #595959;
    font-family: 'Evolventa';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 124%;
    letter-spacing: -0.28px;
  }
}

.products__section {
  margin-top: 31px;
}

.products-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;

  @media(max-width: 1024px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media(max-width: 600px) {
    grid-template-columns: repeat(2, 1fr);
  }

  & .product-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 459px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    /*background-color: #F9F9F9;*/
    cursor: pointer;
    position: relative;
    justify-content: space-between;

    @media(max-width: 1024px) {
      max-width: 100%;
    }

    & .product-item__head {
      display: flex;
      justify-content: space-between;
      align-items: center;

      & .product-item__cat {
        color: #698564;
        font-family: 'Evolventa';
        font-size: 11px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -0.36px;
        border-radius: px;
        background: #F0F0F0;
        backdrop-filter: blur(4px);
        padding: 8px 12px;
      }

      & .product-item__stock {
        border-radius: 16px;
        background: rgba(92, 122, 87, 0.24);
        backdrop-filter: blur(4px);
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 8px;

        & svg {}

        & span {
          color: var(--Text-Accent);
          font-family: 'Evolventa';
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 100%;
          letter-spacing: -0.36px;
        }
      }
    }

    & .product-item__image {
      width: 100%;
      height: 327px;

      & img {
        object-fit: contain;
        width: 100%;
        height: 100%;
      }
    }

    & .product-item__body {
      display: flex;
      flex-direction: column;
      gap: 16px;

      & .product-item__rating {
        display: flex;
        gap: 2px;
        align-items: center;

        & .product-item__rating__stars {
          display: flex;
          align-items: center;
          gap: 2px;

          & svg {}
        }

        & .product-item__rating-count {
          color: var(--Text-Primary);
          font-family: 'Evolventa';
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 100%;
          letter-spacing: -0.28px;
        }
      }

      & .product-item__info {
        display: flex;
        flex-direction: column;
        gap: 16px;

        & .product-item__for {
          color: #595959;
          font-family: 'Evolventa';
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 124%;
          letter-spacing: -0.28px;
          margin-bottom: 6px;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -moz-box;
          -moz-box-orient: vertical;
          display: -webkit-box;
          -webkit-line-clamp: 1;
          -webkit-box-orient: vertical;
          line-clamp: 1;
          box-orient: vertical;
        }

        & .product-item__name {
          color: var(--Text-Primary);
          font-family: Evolventa;
          font-size: 18px;
		  height: 60px;
          font-style: normal;
          font-weight: 400;
          overflow: hidden;
          line-height: 20px;
          word-break: break-word;


          &:hover {
            color: #5C7A57;
          }
        }


      }

      & .product-item__bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;

        & .product-item__price {
          color: var(--Text-Primary);
          font-family: Evolventa;
          font-size: 24px;
          font-style: normal;
          font-weight: 400;
          line-height: 124%;
          letter-spacing: -0.48px;
        }

        & .product-item__points {
          display: flex;
          align-items: center;
          gap: 4px;

          & .product-item__points-icon {
            & img {}
          }

          & span {
            color: var(--Text-Primary);
            font-family: Evolventa;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 132%;
            letter-spacing: -0.32px;
          }
        }
      }
    }

    & .produvt-item__adv {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      position: relative;

      & .produvt-item__adv-title {
        color: #000;
        text-align: center;
        font-family: 'Evolventa';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 124%;
        letter-spacing: -0.48px;
      }
    }

    &:has(.produvt-item__adv) {
      background-color: transparent;
    }
  }


  & .dec-p {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 2rem;
    max-width: 30%;
  }
}



.consult-bot__phone {
  max-width: 248px;
  width: 100%;
  height: 518px;
  border-radius: 38.37px;
  background: #282828;
  overflow: hidden;
  box-shadow: 0px 30.308px 63.587px 0px rgba(99, 120, 84, 0.09), 0px 12.662px 26.565px 0px rgba(99, 120, 84, 0.06), 0px 6.77px 14.203px 0px rgba(99, 120, 84, 0.05), 0px 3.795px 7.962px 0px rgba(99, 120, 84, 0.05), 0px 2.016px 4.229px 0px rgba(99, 120, 84, 0.04), 0px 0.839px 1.76px 0px rgba(99, 120, 84, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;

  @media(max-width: 600px) {
    max-width: 177px;
    height: 371px;
  }

  & .consult-bot__preview {
    max-width: 232px;
    width: 100%;
    max-height: 502px;
    height: 100%;
    border-radius: 30.377px;
    overflow: hidden;

    @media(max-width: 600px) {
      height: 356px;
      max-width: 166px;
    }

    & img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  & .consult-phone__dynamic {
    border-radius: 23.703px;
    background: #000;
    width: 67px;
    height: 20px;
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    margin: 0 auto;

    @media(max-width: 600px) {
      width: 48px;
      height: 14px;
    }
  }

}

ul li {
  &:before {
    display: none;
  } 
}
  
  @font-face {
    font-family: "Evolventa";
    src:
      local("Evolventa"),
      url("/local/templates/aspro_max/css/fonts/fonts/Evolventa-Regular.otf") format("opentype"),
  }
  
  @font-face {
    font-family: "Savoye LET";
    src:
      local("Savoye LET"),
      url("/local/templates/aspro_max/css/fonts/fonts/savoyeletplain.ttf") format("opentype"),
  }

/* footer */

footer {
  padding-top: 24px;
  padding-bottom: 48px;
  border-radius: 12px 12px 0px 0px;
  background: #EBEBEB;
  margin-top: 45px;

  & li {
    margin-top: 0;
  }

  & .footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;

    & .footer-logo {}

    & .to-top {
      display: flex;
      align-items: center;
      gap: 10px;

      & span {
        color: var(--Text-Primary);
        text-align: center;
        font-family: 'Evolventa';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        /* 17.6px */
      }
    }
  }

  & .footer-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    @media(max-width: 992px) {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    & .footer-item {
      @media(max-width: 992px) {
        flex: 0 0 48%;

        &:nth-child(3) {
          order: 4;
          flex: 0 0 100%;
        }
  
        &:nth-child(4) {
          flex: 0 0 100%;
        }
      }

     

      & .footer-menu {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 0;
        margin-bottom: 0;

        @media(max-width: 600px) {
          gap: 0;
        }

        & li {
          margin-left: 0;
          &::before {
            display: none;
          }

          @media(max-width: 768px) {
            text-align: left;
          }

          & a {
            color: var(--Text-Primary);
            font-family: 'Evolventa';
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 132%;
            letter-spacing: -0.36px;

            @media(max-width: 768px) {
              text-align: left;
            }

            @media(max-width: 600px) {
              font-size: 13px;
              font-style: normal;
              font-weight: 400;
              line-height: 120%;
            }
          }
        }
      }

      & .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 8px;

        @media(max-width: 600px) {
          gap: 0;
        }

        & .footer-contacts__title {
          color: var(--Text-Primary);
          font-family: 'Evolventa';
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 132%;
          letter-spacing: -0.36px;

          @media(max-width: 768px) {
            text-align: left;
          }

          @media(max-width: 600px) {
            font-size: 13px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%;
          }
        }

        & .footer-contacts__items {
          display: flex;
          flex-direction: column;
          gap: 8px;
          margin-top: 0;
          margin-bottom: 0;

          @media(max-width: 600px) {
            gap: 0;
          }

          & li {
            margin-left: 0;
            &::before {
              display: none;
            }
            @media(max-width: 768px) {
              text-align: left;
            }

            & a {
              color: var(--Text-Primary);
              font-family: 'Evolventa';
              font-size: 18px;
              font-style: normal;
              font-weight: 400;
              line-height: 132%;
              letter-spacing: -0.36px;

              @media(max-width: 768px) {
                text-align: left;
              }

              @media(max-width: 600px) {
                font-size: 13px;
                font-style: normal;
                font-weight: 400;
                line-height: 120%;
              }
            }
          }
        }
      }

      & .footer-copy {
        display: flex;
        flex-direction: column;
        gap: 8px;

        & a {
          color: var(--Text-Primary);
          font-family: 'Evolventa';
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 132%;
          letter-spacing: -0.36px;

          @media(max-width: 768px) {
            text-align: left;
          }

          @media(max-width: 600px) {
            font-size: 13px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%;
          }
        }

        & span {
          color: var(--Text-Primary);
          font-family: 'Evolventa';
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 132%;
          letter-spacing: -0.36px;

          @media(max-width: 768px) {
            text-align: left;
          }

          @media(max-width: 600px) {
            font-size: 13px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%;
          }
        }
      }

      & .subscribe {
        max-width: 334px;
        width: 100%;
        height: 48px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 10px;
        border-radius: 4px;
        background-color: #DEE7DD;
        margin-bottom: 15px;

        @media(max-width: 992px) {
          width: 348px;
        }

        @media(max-width: 600px) {
          max-width: 100%;
          width: 100%;
        }

        & span {
          color: #5C7A57;
          font-family: 'Evolventa';
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;
          /* 14.4px */
        }

        & img {
          margin-right: 0;
        }
      }
    }
  }
}

/* header */
nav {
  padding-top: 16px;
  padding-bottom: 16px;
  height: 108px;
}

body.lock {
  overflow: hidden;
  padding-right: 16px;

  @media(max-width: 992px) {
    padding-right: 0;
  }
}

/* body.padding {
  padding-right: 16px;

  @media(max-width: 992px) {
    padding-right: 0;
  }
} */

.nav-inner {
  border-radius: 2px;
  gap: 64px;


  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1348px;
  z-index: 10;

  @media(max-width: 1400px) {}

  @media(max-width: 1370px) {
    max-width: 1305px;
  }

  @media(max-width: 1360px) {
    padding-left: 30px;
    padding-right: 30px;
  }

  @media(max-width: 600px) {
    padding-left: 16px;
    padding-right: 16px;
  }

  & .nav-inner_navigation {
    padding: 18px 16px;
    display: flex;
    justify-content: space-between;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 0px 32px 0px rgba(92, 122, 87, 0.08);
    backdrop-filter: blur(16px);
    position: relative;

    & .nav-right {
      display: flex;
      align-items: center;
      flex-direction: column;

      & .nav-right__inner {
        display: flex;
        align-items: center;
        position: relative;

      }


      & .submenus-container {
        width: 100%;
        position: absolute;
        left: 0;
        background-color: #fff;
        top: 79px;
        border: 1px solid #fff;
        border-bottom: none;
        border-top: none;
        /* box-shadow: 0px 0px 32px 0px rgba(92, 122, 87, 0.08); */
        backdrop-filter: blur(16px);
        border-radius: 2px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
      }

      & .menu-items {
        margin-top: 0;
        margin-bottom: 0;
        display: flex;
        align-items: center;

        & li {
          margin: 0;

          &::before {
            display: none;
          }

          & a {
            padding: 8px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            color: var(--Text-Primary);
            font-family: 'Evolventa';
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 132%;
            letter-spacing: -0.36px;
            transition: color .3s ease-in;

            & span {
              color: currentColor;
              font-family: inherit;
              font-size: inherit;
              font-style: inherit;
              font-weight: inherit;
              line-height: inherit;
              letter-spacing: inherit;
            }

            & svg {
              & path {
                transition: fill .3s ease-in;
              }
            }

            @media(max-width: 1200px) {
              font-size: 16px;
            }
          }

          &:hover {
            & a {
              color: #5C7A57;

              & svg {
                & path {
                  fill: #5C7A57;
                }
              }

            }
          }
        }

        & a.active {
          color: #5C7A57;

          & svg {
            transform: rotate(180deg);

            & path {
              fill: #5C7A57;

            }
          }
        }
      }
    }

    & .nav-right.mobile {
      display: none;
      align-items: flex-end;

      & .burger-menu {
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    }

    & .nav-right.desktop {
      align-items: flex-start;
    }

    @media(max-width: 1024px) {
      & .nav-right.desktop {
        display: none;
      }

      & .nav-right.mobile {
        display: flex;
        gap: 12px;

        & .burger-menu__line {
          position: relative;
          width: 16px;
          height: 1.5px;
          background-color: #333;
          /* transition: all .3s; */

          &::before {
            content: '';
            position: absolute;
            width: 16px;
            height: 1.5px;
            background-color: #333;
            left: 0;
            top: -5px;
            /* transition: all .3s; */
          }

          &::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 1.5px;
            background-color: #333;
            left: 0;
            top: 5px;
            /* transition: all .3s; */
          }
        }

        & .burger-menu.active {
          & .burger-menu__line {

            background-color: transparent;
            /* transition: all .3s; */

            &::before {
              /* transition: all .3s; */
              top: 0;
              transform: rotate(-45deg);
            }

            &::after {
              /* transition: all .3s; */
              top: 0;
              transform: rotate(45deg);
            }
          }
        }
      }
    }


  }

  /* & .sub-menu {
    display: none;
    gap: 32px;
    margin-top: 24px;
    justify-content: space-between;
  } */

  & .sub-menu {
    /* display: flex; */
    gap: 32px;
    margin-top: 24px;
    display: none;
    padding: 16px;
    border-radius: 2px;



    & .catalog-menu__left {
      max-width: 409px;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

      & .company-menu__contacts {
        display: flex;
        flex-direction: column;
        gap: 6px;

        & a {
          color: var(--Text-Primary);
          font-family: Evolventa;
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 132%;
          letter-spacing: -0.36px;
        }
      }

      & .catalog-menu__shops {
        & a:not(:last-child) {
          max-width: 32.4%;
          width: 100%;
          height: 60px;
        }
      }

      & .catalog-menu__cats {
        display: flex;
        flex-direction: column;
        gap: 8px;

        & a {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;

          & span {
            color: var(--Text-Primary);
            text-align: center;
            font-family: 'Evolventa';
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 132%;
            letter-spacing: -0.36px;
            padding: 8px 16px;
            transition: color .3s ease-in;
          }

          & svg {
            & path {
              transition: color .3s ease-in;
            }
          }

          &:hover {
            & span {
              color: #5C7A57;
            }

            & svg {
              & path {
                fill: #5C7A57;
              }
            }
          }
        }
      }


    }

    .catalog-menu__right {
      max-width: 926px;
      width: 100%;

      @media(max-height: 720px) {
        height: calc(100vh - 11rem);
        overflow-y: auto;
      }

      & .catalog-menu__subcats-items {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 8px;
      }

      & .catalog-menu__subcats-item {
        height: 285px;
        border-radius: 8px;
        background-size: cover;
        background-position: top;
        grid-column: span 6;
        cursor: pointer;
        position: relative;
        border-radius: 2px;


        &:nth-child(5) {
          grid-column: span 3;
          height: 120px;
        }

        &:nth-child(6) {
          grid-column: span 3;
          height: 120px;
        }

        &:nth-child(7) {
          grid-column: span 3;
          height: 120px;
        }

        &:nth-child(8) {
          grid-column: span 3;
          height: 120px;
        }

        & .catalog-menu__subcats-item__name {
          position: absolute;
          left: 12px;
          bottom: 20px;
          color: #333;
          font-family: 'Evolventa';
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 132%;
          letter-spacing: -0.36px;
        }

        & svg {
          position: absolute;
          bottom: 20px;
          right: 24px;
          transition: all .3s;
        }


        &:nth-child(5) {
          & .catalog-menu__subcats-item__name {
            left: 8px;
            bottom: 12px;
            max-width: 139px;
          }

          & svg {
            bottom: 24px;
            right: 28px;
          }
        }

        &:nth-child(6) {
          & .catalog-menu__subcats-item__name {
            left: 8px;
            bottom: 12px;
            max-width: 139px;
          }

          & svg {
            bottom: 24px;
            right: 28px;
          }
        }

        &:nth-child(7) {
          & .catalog-menu__subcats-item__name {
            left: 8px;
            bottom: 12px;
            max-width: 139px;
          }

          & svg {
            bottom: 24px;
            right: 28px;
          }
        }

        &:nth-child(8) {
          & .catalog-menu__subcats-item__name {
            left: 8px;
            bottom: 12px;
            max-width: 139px;
          }

          & svg {
            bottom: 24px;
            right: 28px;
          }
        }

        &:hover {
          & svg {
            transition: all .3s;
            transform: rotate(45deg);
          }
        }
      }
    }
  }

  .catalog-menu__shops {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    @media(max-width:600px) {
      gap: 10px;
    }

    & a {
      border-radius: 2px;
      background-color: #5c7a57;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 16px 8px;
      text-align: center;
      color: #fff;
      font-family: 'Evolventa';
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 132%;
      letter-spacing: -0.32px;
      height: 46px;
      flex: 0 0 100%;
      @media(max-width:600px) {
        border-radius: 1px;
        
      }

    }

    & a:not(:last-child) {
      width: calc(50% - 5px);
      max-width: 100%!important;
      flex: none;
      height: 60px;
      @media(max-width:600px) {
        width: calc(50% - 5px);
        max-width: 100%;
        flex: none;
        height: 50px;

      }
    }

  }

  & .sub-menu.active {
    display: flex;
  }

  .mobile-menu__wrap {
    display: none;
    background-color: #fff;
    height: 100%;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 18px;
    flex-direction: column;
    overflow-y: auto;
    height: calc(100vh - 110px);
    gap: 16px;


    & .mobile-menu__subcats-items {
      margin-top: 0;
      margin-bottom: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;

      & .mobile-menu__subcats-item {
        height: 254px;
        position: relative;
        background-position: top;
        background-size: cover;
        border-radius: 8px;
        overflow: hidden;

        @media(max-width: 600px) {
          height: 55px;
          border-radius: 1px;
          display: flex;
        }

        & .mobile-menu__subcats-item__name {
          color: #FFF;
          font-family: 'Evolventa';
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 132%;
          letter-spacing: -0.36px;
          position: absolute;
          max-width: 174px;
          bottom: 20px;
          left: 12px;
          @media(max-width: 600px) {
            position: relative;
            left: 0;
            bottom: 0;
            margin: auto;
            margin-left: 20px;
            color: black;
            font-size: 13px;
            line-height: 100%;
          }
        }

        & svg {
          position: absolute;
          right: 28px;
          bottom: 24px;
          @media(max-width: 600px) {
            display: none;
          }
        }
      }
    }

    & .mobile-menu__items {
      margin-bottom: 0;
      margin-top: 0;
      @media(max-width: 600px) {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      & li {
        margin: 0;
        @media(max-width: 600px) {
          width: calc(50% - 5px);
        }

        & a {
          width: 100%;
          display: block;
          padding-top: 8px;
          padding-bottom: 8px;
          color: var(--Text-Primary);
          font-family: 'Evolventa';
          font-size: 10px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;
          /* 12px */
          @media(max-width: 600px) {
            background-color: #F2F2F2;
            padding: 11px 10px;
            text-align: center;
            font-size: 13px;
            border-radius: 1px;
          }
        }
      }
    }
  }

  .mobile-menu__wrap.active {
    display: flex;
    position: absolute;
    width: 100%;
    left: 0;
    top: 75px;
  }


}

.nav-inner.active {
  background-color: #fff;

  & .nav-inner_navigation {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
  }

  @media(min-width: 1024px) {
    right: 16px;
  }

  @media(max-width: 1300px) {
    width: 95%;
  }


}

.nav-inner.border__radius {
  background-color: #fff;

  @media(max-width: 1305px) {
    padding-left: 0;
    padding-right: 0;
    /* margin-right: 30px; */
    /* margin-left: 30px; */
    max-width: 95%;
  }

  @media(max-width: 600px) {
    max-width: 92%;
  }

  & .nav-inner_navigation {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border: none;
  }
}

.nav-inner.border__none {


  & .nav-inner_navigation {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
  }
}

.nav-inner {
  & .nav-inner_navigation.active {
    background: #fff;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-color: #fff;
    box-shadow: none;
    border: none;
  }


}



.overlay {
  background-color: rgba(51, 51, 51, 0.48);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
}



.overlay.show {
  display: block;
  z-index: 9;
}

.overlay.active {
  display: block;
}


.overlay.visible {
  display: block;
  z-index: 10;
}


.company-menu__right {
  max-width: 926px;
  width: 100%;

  .company-menu__subcats-items {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, 1fr);

    & .company-menu__subcats-item {
      height: 364px;
      cursor: pointer;

      & .company-menu__subcats-item__name {
        color: #595959;
        font-family: 'Evolventa';
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 124%;
        letter-spacing: -0.28px;
        margin-bottom: 4px;
      }

      & .company-menu__subcats-item__image {
        height: 336px;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;

        @media(max-width:1300px) {
          height: 240px;
        }

        & img {
          object-fit: cover;
          width: 100%;
          height: 100%;
        }

        & video {
          object-fit: cover;
          width: 100%;
          height: 100%;
        }
      }
    }
  }
}

.shops-menu__items {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: space-between;

  & .shops-menu__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    border-radius: 2px;
    background: radial-gradient(524.79% 141.42% at 0% 0%, rgba(100, 151, 91, 0.20) 0%, rgba(100, 151, 91, 0.05) 100%);
    height: 140px;
    max-width: 361px;
    width: 100%;
    overflow: hidden;
    cursor: pointer;

    &:last-child {
      padding: 0;
    }

    & .shops-menu__map {
      width: 100%;
      height: 100%;

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }

    & .shops-menu__item-head {
      display: flex;
      justify-content: space-between;
      align-items: center;

      & .shops-menu__item-icon {}

      & .shops-menu__item-arrow {}
    }

    & .shops-menu__item-text {}
  }
}

.search-container {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 85%;
  z-index: -1;
  height: 40px;
  background-color: #fff;
  opacity: 0;

  @media(max-width: 1024px) {
    right: 45px;
    width: 60%;
  }

  @media(max-width: 380px) {
    right: 45px;
    width: 55%;
  }
}

.search-container.active {
  z-index: 3;
  opacity: 1;
}

.search-form {
  /* position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%); */
  height: 100%;
  background-color: #fff;
  border: 1px solid #5C7A57;
  width: 100%;
  transition: all .3s;
  /* opacity: 0;
  z-index: -1; */
  border-radius: 2px;
  overflow: hidden;
  opacity: 1;
  z-index: 2;
  transition: all .3s;

  &::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-48%);
    background-image: url(../../img/search.svg);
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    background-size: contain;
  }


  & .clear-search {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-48%);
    width: 12px;
    height: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;

    & img {
      object-fit: contain;
      width: 100%;
      height: 100%;
    }
  }

  & input {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    padding-left: 36px;
    position: relative;
    color: var(--Text-Primary);
    font-family: 'Evolventa';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.36px;

    &::placeholder {
      font-family: 'Evolventa';
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 100%;
      letter-spacing: -0.36px;

      @media(max-width: 600px) {
        font-size: 10px;
      }
    }
  }
}

/* .search-form.active {
  opacity: 1;
  z-index: 2;
  transition: all .3s;
} */

.search-result {
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%);
  background-color: #fff;
  width: 100%;
  top: 75px !important;
  opacity: 0;
  z-index: -1;
  transition: all .3s;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-top: 16px;
  height: 0;
  overflow: hidden;


  @media(max-width: 992px) {
    flex-direction: column;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  & .search-result__list {
    max-width: 409px;
    width: 100%;

    @media(max-width: 1200px) {
      max-width: 300px;
    }

    @media(max-width: 992px) {
      max-width: 100%;
    }


    & .search-result__list-items {
      display: flex;
      flex-direction: column;
      gap: 32px;

      & .search-result__list-item {
        & .search-result__list-item__title {
          color: #595959;
          font-family: 'Evolventa';
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 124%;
          letter-spacing: -0.28px;
          margin-bottom: 10px;
        }

        & .search-result__list-item__links {
          display: flex;
          flex-direction: column;
          gap: 10px;

          & .search-result__list-item__link {
            display: flex;
            align-items: center;
            justify-content: space-between;

            & span {
              color: var(--Text-Primary);
              font-family: 'Evolventa';
              font-size: 18px;
              font-style: normal;
              font-weight: 400;
              line-height: 132%;
              letter-spacing: -0.36px;

              &:last-child {}
            }
          }
        }
      }
    }
  }

  & .products-items {
    grid-template-columns: repeat(2, 1fr);
    max-height: 664px;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 951px;
    width: 100%;
    padding-right: 12px;
    gap: 16px;

    @media(max-width: 992px) {
      max-height: initial;
      overflow-x: initial;
      overflow-y: initial;
      padding-right: 0;
    }

    @media(max-width: 768px) {
      grid-template-columns: repeat(1, 1fr);
    }
  }
}

.search-result.active {
  opacity: 1;
  z-index: 2;
  transition: all .3s;
  height: auto;
  overflow: visible;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;

  @media(max-width: 992px) {
    flex-direction: column;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;

  }
}

/* modals */

.payment-choise__modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  /* top: 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -100%;
  opacity: 0;
  z-index: -1;
  transition: all .3s;
  @media(max-width: 610px) {
    align-items: flex-end;
  }

  & .payment-choise__modal-inner {
    padding: 42px 12px;
    border-radius: 12px;
    background: #FFF;
    backdrop-filter: blur(16px);
    position: relative;
    padding-top: 100px;
    max-width: 613px;
    width: 100%;
    @media(max-width: 610px) {
      max-height: 520px;
    }

    & .payment-choise__modal-close {
      position: absolute;
      right: 16px;
      top: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    & .payment-choise__modal-content {
      display: flex;
      flex-direction: column;
      align-items: center;

      & .payment-choise__modal-icon {
        margin-bottom: 12px;
      }

      & .payment-choise__modal-title {
        color: var(--Text-Primary);
        text-align: center;
        font-family: 'Evolventa';
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 124%;
        letter-spacing: -0.64px;
        margin-bottom: 92px;
        max-width: 400px;

        @media(max-width: 610px) {
          font-size: 24px;
        }

      }

      & .payment-choise__modal-btns {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;

        & a {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
          height: 46px;
          border-radius: 8px;
          font-family: 'Evolventa';
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 100%;
          letter-spacing: -0.36px;
        }

        & .find-shop {
          color: #fff;
          background-color: #3E534D;
          border: 1px solid #3E534D;
        }

        & .order-online {
          background-color: transparent;
          color: #5C7A57;
          border: 1px solid #5C7A57;
        }
      }
    }
  }
}

.payment-choise__modal.active {
  bottom: initial;
  top: 0;
  opacity: 1;
  z-index: 12;
  transition: all .3s;

  @media(max-width: 610px) {
    top: initial;
    bottom: 0;
    align-items: flex-end;
  }
}


.city-choise__modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  /* top: 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -100%;
  opacity: 0;
  z-index: -1;
  transition: all .3s;
  @media(max-width: 610px) {
    align-items: flex-end;
  }

  & .city-choise__modal-inner {
    padding: 42px 12px;
    border-radius: 12px;
    background: #FFF;
    backdrop-filter: blur(16px);
    position: relative;
    max-width: 613px;
    width: 100%;
    @media(max-width: 610px) {
      max-height: 520px;
    }

    & .city-choise__modal-close {
      position: absolute;
      right: 16px;
      top: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    & .city-choise__modal-content {
      display: flex;
      flex-direction: column;
      align-items: center;

      & .city-choise__modal-title {
        color: var(--Text-Primary);
        text-align: center;
        font-family: 'Evolventa';
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 124%;
        letter-spacing: -0.64px;
        margin-bottom: 32px;
        max-width: 400px;

        @media(max-width: 610px) {
          font-size: 24px;
        }
      }

      & .city-choise__search {
        width: 100%;
        height: 52px;
        border-radius: 10px;
        border: 1px solid #EBEBEB;
        background: #FFF;

        & input {
          display: block;
          width: 100%;
          height: 100%;
          background-color: transparent;
          border: none;
          outline: none;
          padding-left: 20px;
          color: #333;
          font-family: 'Evolventa';
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 124%;
          letter-spacing: -0.32px;

          &::placeholder {
            color: rgba(89, 89, 89, 0.48);
            font-family: 'Evolventa';
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 124%;
            letter-spacing: -0.32px;
          }
        }
      }

      & .city-choise__cities-items {
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        overflow-y: auto;
        overflow-x: hidden;
        width: 100%;
        max-height: 560px;

        @media(max-width: 610px) {
          max-height: 296px;
        }

        & .city-choise__cities-item {
          display: block;
          width: 100%;
          color: var(--Text-Primary);
          font-family: 'Evolventa';
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 124%;
          letter-spacing: -0.32px;
        }
      }
    }
  }
}

.city-choise__modal.active {
  bottom: initial;
  top: 0;
  opacity: 1;
  z-index: 13;
  transition: all .3s;
  @media(max-width: 610px) {
    top: initial;
    bottom: 0;
    align-items: flex-end;
  }
}

.address-choise__modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  /* top: 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -100%;
  opacity: 0;
  z-index: -1;
  transition: all .3s;
  @media(max-width: 610px) {
    align-items: flex-end;
  }

  & .address-choise__modal-inner {
    padding: 42px 12px;
    border-radius: 12px;
    background: #FFF;
    backdrop-filter: blur(16px);
    position: relative;
    max-width: 613px;
    width: 100%;

    @media(max-width: 610px) {
      max-height: 520px;
    }


    & .address-choise__modal-close {
      position: absolute;
      right: 16px;
      top: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    & .address-choise__modal-content {
      display: flex;
      flex-direction: column;
      align-items: center;

      & .address-choise__modal-title {
        color: var(--Text-Primary);
        text-align: center;
        font-family: 'Evolventa';
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 124%;
        letter-spacing: -0.64px;
        margin-bottom: 32px;
        max-width: 400px;

        @media(max-width: 610px) {
          font-size: 24px;
        }
      }

      & .address-modal__items {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-height: 511px;
        overflow-x: hidden;
        overflow-y: auto;

        @media(max-width: 610px) {
          max-height: 296px;
        }

        & .address-modal__item {
          padding-bottom: 24px;
          border-bottom: 1px solid #DDD;

          & .address-modal__item-name {
            color: var(--Text-Primary);
            font-family: 'Evolventa';
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 132%;
            letter-spacing: -0.32px;
            margin-bottom: 4px;
          }

          & .address-modal__item-address {
            color: var(--Text-Primary);
            font-family: 'Evolventa';
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            letter-spacing: -0.28px;
            margin-bottom: 8px;
          }

          & .address-modal__item-worktime {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;

            & span {
              color: var(--Text-Secondary, #595959);
              font-family: 'Evolventa';
              font-size: 14px;
              font-style: normal;
              font-weight: 400;
              line-height: 150%;
              letter-spacing: -0.28px;
              display: block;
              position: relative;

              &::before {
                content: '';
                position: absolute;
                right: -13px;
                top: 50%;
                transform: translateY(-50%);
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background-color: #5C7A57;
              }

              &:last-child {
                &::before {
                  display: none;
                }
              }
            }
          }

          & .show-loc {
            color: #FFF;
            font-family: 'Evolventa';
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 132%;
            letter-spacing: -0.36px;
            padding: 16px 24px;
            border-radius: 8px;
            background: #3E534D;
            max-width: 302px;
            width: 100%;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            @media(max-width: 610px) {
              max-width: 100%;
            }
          }
        }
      }
    }
  }
}

.address-choise__modal.active {
  bottom: initial;
  top: 0;
  opacity: 1;
  z-index: 14;
  transition: all .3s;
  @media(max-width: 610px) {
    top: initial;
    bottom: 0;
    align-items: flex-end;
  }
}

.shop-choise__modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  /* top: 0; */
  display: flex;
  align-items: center;
  justify-content: center;

  bottom: -100%;
  opacity: 0;
  z-index: -1;
  transition: all .3s;
  @media(max-width: 610px) {
    align-items: flex-end;
  }

  & .shop-choise__modal-inner {
    padding: 42px 12px;
    border-radius: 12px;
    background: #FFF;
    backdrop-filter: blur(16px);
    position: relative;
    max-width: 613px;
    width: 100%;
    @media(max-width: 610px) {
      max-height: 520px;
    }


    & .shop-choise__modal-close {
      position: absolute;
      right: 16px;
      top: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    & .shop-choise__modal-content {
      display: flex;
      flex-direction: column;
      align-items: center;

      & .shop-choise__modal-title {
        color: var(--Text-Primary);
        text-align: center;
        font-family: 'Evolventa';
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 124%;
        letter-spacing: -0.64px;
        margin-bottom: 32px;
        max-width: 400px;
        @media(max-width: 610px) {
          font-size: 24px;
        }
      }

      & .shop-modal__items {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 32px;
        max-height: 511px;
        overflow-y: auto;
        overflow-x: hidden;
        
        @media(max-width: 610px) {
          max-height: 296px;
        }

        & .shop-modal__item {
          display: block;
          width: 100%;
          color: var(--Text-Primary, #333);
          font-family: 'Evolventa';
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 124%;
          letter-spacing: -0.32px;
        }
      }

      & .shop-on__map {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        height: 46px;
        border-radius: 8px;
        background: #3E534D;
        color: #FFF;
        font-family: 'Evolventa';
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 132%;
        letter-spacing: -0.36px;
      }
    }
  }
}

.shop-choise__modal.active {
  bottom: initial;
  top: 0;
  opacity: 1;
  z-index: 13;
  transition: all .3s;
  @media(max-width: 610px) {
    top: initial;
    bottom: 0;
    align-items: flex-end;
  }
}

.redirect-choise__modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  /* top: 0; */
  display: flex;
  align-items: center;
  justify-content: center;

  bottom: -100%;
  opacity: 0;
  z-index: -1;
  transition: all .3s;
  @media(max-width: 610px) {
    align-items: flex-end;
  }


  & .redirect-choise__modal-inner {
    padding: 42px 12px;
    border-radius: 12px;
    background: #FFF;
    backdrop-filter: blur(16px);
    position: relative;
    max-width: 613px;
    width: 100%;
    @media(max-width: 610px) {
      max-height: 520px;
    }


    & .redirect-choise__modal-close {
      position: absolute;
      right: 16px;
      top: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    & .redirect-choise__modal-content {
      display: flex;
      flex-direction: column;
      align-items: center;

      & .redirect-choise__modal-title {
        color: var(--Text-Primary);
        text-align: center;
        font-family: 'Evolventa';
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 124%;
        letter-spacing: -0.64px;
        margin-bottom: 32px;
        max-width: 400px;

        @media(max-width: 610px) {
          font-size: 24px;
        }
      }

      & .redirect-choise__modal-link__preview {
        color: var(--Text-Accent);
        text-align: center;
        font-family: 'Evolventa';
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 124%;
        letter-spacing: -0.48px;
        margin-bottom: 32px;
      }

      & .redirect-link {
        border-radius: 8px;
        font-family: 'Evolventa';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 132%;
        letter-spacing: -0.32px;
        display: flex;
        width: 100%;
        height: 46px;
        justify-content: center;
        align-items: center;
      }

      & .redirect-choise__modal-link-go {
        color: #FFF;
        background-color: #3E534D;
        margin-bottom: 8px;
      }

      & .redirect-choise__modal-link-back {
        color: var(--Text-Primary);
      }
    }
  }
}

.redirect-choise__modal.active {
  bottom: initial;
  top: 0;
  opacity: 1;
  z-index: 13;
  transition: all .3s;
  @media(max-width: 610px) {
    top: initial;
    bottom: 0;
    align-items: flex-end;
  }
}

#content {
  z-index: 1 !important;
  position: inherit !important;
}

#footer {
  position: inherit !important;
  z-index: 3;
}

body, .wraps > .wrapper_inner {
  position: initial;
}

input:focus {
  background: transparent !important;
}

input[type="button"]:focus {
  background: #3E534D !important;
}

.main-button:hover, .main-button:focus {
  color: #fff !important;
}

.rss {
  display: none;
}

.company_txt {
  margin-top: 30px;
  text-align: center;
}

/* catalog */
.mainscreen-cat__section {
  & .mainscreen-banner {
    height: 429px;
    width: 100%;
    position: relative;
    margin-top: 24px;

    @media(max-width:600px) {
      height: 238px;
    }

    & .mainscreen-banner__image {
      height: 100%;
      width: 100%;
      border-radius: 2px;
      overflow: hidden;
      position: relative;

      & .ms-cat__bg {
        /*background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.48) 100%);*/
        background: none;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
      }

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 2;
      }
    }

    .mainscreen-banner__text {
      position: absolute;
      left: 12px;
      bottom: 12px;
      color: #FFF;
      font-family: 'Evolventa';
      font-size: 25px;
      font-style: normal;
      font-weight: 400;
      line-height: 120%;
      letter-spacing: -0.64px;
      max-width: 780px;
      z-index: 4;
      text-shadow: 1px 1px 5px #333;

      @media(max-width:600px) {
        font-size: 12px;
      }
    }
  }
}

/* about form */

& .company-form {
  & .company-form__wrapper {
    /*
    display: flex;
    justify-content: center;
    align-items: center;
    */
		padding: 50px 100px 30px;
		border-radius: 2px;
		background: #F3F3F3;
		margin-left: auto;
		margin-right: auto;

    @media(max-width: 600px) {
      padding: 32px 12px;
    }

    & .form {
      opacity: 0;
      max-height: 0;
      display: block;
      visibility: hidden;
      pointer-events: none;
    }

    & .form.active {
      opacity: 1;
      max-height: 100%;
      visibility: visible;
      pointer-events: all;
    }

    & .company-form__title {
      color: var(--Text-Primary);
      font-family: Evolventa;
      font-weight: 400;
      font-size: 28px;
      line-height: 100%;
      text-align: center;

      @media(max-width: 600px) {
        font-size: 24px;
      }
    }

    & .form-select__theme {
      display: flex;
      gap: 10px;
      margin: 24px 0;

      & button {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 2px;
        background: rgba(92, 122, 87, 0.24);
        backdrop-filter: blur(4px);
        color: var(--Text-Accent);
        font-family: 'Evolventa';
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 38px;
        letter-spacing: -0.36px;
        border: none;
        outline: none;
        width: 100%;
        height: 42px;

        @media(max-width: 600px) {
          font-size: 15px;
        }

      }

      & button.active {
        background-color: #5c7a57;
        color: #FFF;
      }
    }

    & form {

      & .input-wrap {
        width: 100%;
        min-height: 53px;
        background: #FFF;
        margin-bottom: 12px;
        border-radius: 2px;
        font-size: 0;

        & br {
          display: none;
        }

        & input, textarea {
          display: block;
          width: 100%;
          height: 100%;
          padding-left: 20px;
          font-family: 'Evolventa';
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 132%;
          letter-spacing: -0.32px;
          border-radius: 2px;
          border: 1px solid;
          border-color: #EBEBEB;
          transition: all .3s ease;
          background: transparent;
          color: rgba(89, 89, 89, 0.48);

          &::placeholder {
            font-family: 'Evolventa';
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 132%;
            letter-spacing: -0.32px;
            color: rgba(89, 89, 89, 0.48);
          }
        }

        & textarea {
          padding-top: 16px;

          &::placeholder {
            font-family: 'Evolventa';
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 132%;
            letter-spacing: -0.32px;
            color: rgba(89, 89, 89, 0.48);
          }
        }

        input.has-text, textarea.has-text {
          color: #5C7A57 !important;
          border-color: #5C7A57 !important;
          transition: all .3s ease;
          opacity: 1;

          &::placeholder {
            color: #5C7A57 !important;
          }
        }

      }

			& .input-wrap:has(input[type="hidden"]) {
				display: none;
			}

      & .custom-ckeckbox {
        display: flex;
        padding-top: 16px;
        margin-bottom: 16px;

        & input[type=checkbox] {
          position: relative;
          border: 1px solid #5C7A57;
          background: none;
          cursor: pointer;
          line-height: 0;
          margin: 0 .6em 0 0;
          outline: 0;
          padding: 0 !important;
          vertical-align: text-top;
          height: 24px;
          width: 24px;
          min-width: 24px;
          -webkit-appearance: none;
          border-radius: 2px;
          background: #fff;
        }

        /* & input[type=checkbox]:hover {
          opacity: 1;
        } */




        & input[type=checkbox]:before {
          content: '';
          position: absolute;
          right: 50%;
          top: 50%;
          width: 4px;
          height: 10px;
          border: solid #5C7A57;
          border-width: 0 2px 2px 0;
          margin: -1px -1px 0 -1px;
          transform: rotate(45deg) translate(-50%, -50%);
          z-index: 2;
          opacity: 0;
        }

        & input[type=checkbox]:checked {
          opacity: 1;

          &::before {
            opacity: 1;
          }
        }

        & label {
          line-height: 100%;
          color: var(--Text-Primary);
          font-family: 'Evolventa';
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 124%;
          letter-spacing: -0.32px;
          cursor: pointer;

          @media(max-width: 600px) {
            font-size: 14px;
          }
        }
      }
    }

    & .submit {
      border-radius: 2px;
      background-color: #5c7a57;
      color: #FFF;
      font-family: 'Evolventa';
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 132%;
      letter-spacing: -0.36px;
      display: flex;
      width: 100%;
      height: 46px;
      justify-content: center;
      align-items: center;
      border: none;

      @media(max-width: 600px) {
        font-size: 16px;
      }
    }
  }
}

body > .wrapper1 {
  background: transparent !important;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], select, textarea {
  background: transparent;
}

.company-form__wrapper input:focus, .company-form__wrapper textarea:focus {
  background: #E9E8E4 !important;
  color: #5C7A57 !important;
  border-color: #5C7A57 !important;
  transition: all .3s ease;
  opacity: 1;
}

.company-form__wrapper .input-wrap input {
  min-height: 53px;
}

.form textarea {
  min-height: 134px;
}

#navigation {
  z-index: 1!important;
}

.bx_filter .bx_filter_parameters_box_container_block {
  width: 45%;
}

#headerfixed {
  display: none;
}

@media(max-width:600px ) {
  & .hm-filters__choise {margin-left: 0;
  margin-right: 0;}
}
.clb {
  display: none;
}

.smartfilter .row {
  margin-left: 0;
  margin-right: 0;
}

.search .search-input {
  padding-top: 5px;
}

.bx_filter .bx_filter_button_box.btns .btn {
  border-radius: 2px;
}

.title-search-result {
  top: 115px !important;
}

.shops-footer-title {
  padding-top: 50px;

  & p {
    font-family: Evolventa;
    font-weight: 400;
    font-size: 18px;
    line-height: 124%;
    text-align: center;
    margin-top: 0;
    @media(max-width: 600px) {
      font-size: 10px;
    }
  }

  & p.contact-title {
    font-family: Savoye LET;
    font-weight: 400;
    font-size: 65px;
    width: 100%;
    text-align: center;
    color: #5C7A57;
    line-height: 124%;
    margin-bottom: 0;
    @media(max-width: 600px) {
      font-size: 34px;
    }
  }
}

.shops-footer {
  display: flex;

  & .shops-menu__items {
    flex-direction: column;

    & .shops-menu__item {
      height: 82px;
    }
  }

}

.splide__list.blog-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.box-shadow:hover {
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.05) !important;
}


.company {
  & .mainscreen-banner-text {
    position: absolute;
    left: 60px;
    bottom: 27px;
    font-family: Evolventa;
    font-weight: 400;
    font-size: 40px;
    line-height: 124%;
    color: #333;
    max-width: 780px;
    z-index: 4;
  }

  & .advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-top: 50px;

    @media(max-width: 600px) {
      display: flex;
      flex-direction: column-reverse;
    }

    & .items {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      column-gap: 10px;
      row-gap: 20px;
      padding: 10px 0;

      @media(max-width: 600px) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        row-gap: 10px;
      }

      .item {
        background-color: #F8F8F8;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;

        & .num {
          font-family: Evolventa;
          font-weight: 400;
          font-size: 32.44px;
          line-height: 124%;
          text-align: center;
          color: #5C7A57;
          @media(max-width: 600px) {
            font-size: 18px;
          }
        }

        & .text {
          font-family: Evolventa;
          font-weight: 400;
          font-size: 13.67px;
          line-height: 124%;
          text-align: center;
          @media(max-width: 600px) {
            font-size: 12px;
          }
        }
        @media(max-width: 600px) {
          width: calc(25% - 7.5px);
          padding: 10px;
        }
      }

      & .item:first-child {
        grid-column: 1 / -1;

        & .num {
          font-size: 47.91px;
          @media(max-width: 600px) {
            font-size: 18px;
          }
        }

        & .text {
          font-size: 20.19px;
          @media(max-width: 600px) {
            font-size: 12px;
          }
        }
        @media(max-width: 600px) {
          width: 100%;
        }
      }
    }
  }

  & .about-text {
    font-family: Evolventa;
    font-weight: 400;
    font-size: 18px;
    line-height: 124%;
    color: #333;

    & p:last-child {
      margin-bottom: 0;
    }
  }

  & .ph {
    background: url(/images/ph-bg.jpg) right center no-repeat;
    padding: 20px 50px 30px;
    background-size: cover;
    margin-top: 50px;
    @media(max-width: 600px) {
      padding: 20px;
      margin-top: 30px;
      background: url(/images/b02f463eb257798e8826267129db0cdb2c3502b8.png) right center no-repeat;
    }

    & h3 {
      font-family: Savoye LET;
      font-weight: 400;
      font-size: 65px;
      line-height: 100%;
      color: #5C7A57;
      background: url(/images/logo-green.png) -20px center no-repeat;
      padding: 10px 0 15px 100px;
      @media(max-width: 600px) {
        font-size: 40px;
        
        padding: 10px 0 15px 70px;
        background: url(/images/logo-green.png) 0 center no-repeat;
        background-size: contain;
      }
    }

    & p {
      font-family: Evolventa;
      font-weight: 400;
      font-size: 18px;
      line-height: 124%;
      max-width: 620px;

      & span, strong {
        color: #5C7A57;
      }
      @media(max-width: 600px) {
        font-size: 12px;
      }
    }
  }

  & .development {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 150px;
    @media(max-width: 600px) {
      padding-top: 30px;
    }

    & .item {
      display: flex;
      gap: 80px;

      &:nth-child(2n) {
        flex-direction: row-reverse;
        @media(max-width: 600px) {
          flex-direction: column-reverse;
        }
      }

      @media(max-width: 600px) {
        flex-direction: column-reverse;
        gap: 10px;
      }

      & .item-image {
        flex-grow: 1;
        flex-basis: 0;

        & img {
          width: 100%;
        }
      }

      & .item-description {
        flex-grow: 1;
        flex-basis: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;

        & h4 {
          font-family: Savoye LET;
          font-weight: 400;
          font-size: 65px;
          line-height: 100%;
          color: #5C7A57;
          @media(max-width: 600px) {
            font-size: 40px;
          }
        }
        & p {
          font-family: Evolventa;
          font-weight: 400;
          font-size: 18px;
          line-height: 124%;
          margin: 0 0 25px;
          max-width: 550px;
          @media(max-width: 600px) {
            font-size: 13px;
          }
        }
      }
    }
  }

  & .forms {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding-top: 75px;
    gap: 100px;

    @media(max-width: 600px) {
      display: flex;
      flex-direction: column;
    }

    & .buttons {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 90px;
      @media(max-width: 600px) {
        gap: 30px;
      }

      & .item {
        & h4 {
          font-family: Evolventa;
          font-weight: 400;
          font-size: 24px;
          line-height: 80%;
          color: #5C7A57;
          @media(max-width: 600px) {
            text-align: center;
            font-size: 16px;
          }
        }
        & p {
          font-family: Evolventa;
          font-weight: 400;
          font-size: 18px;
          line-height: 124%;
          @media(max-width: 600px) {
            text-align: center;
            font-size: 13px;
          }
        }
        & a {
          background-color: #DEE7DD;
          width: 334px;
          display: inline-block;
          text-align: center;
          line-height: 48px;
          @media(max-width: 600px) {
            width: 100%;
          }
        }
      }
    }
  }
}

#form_success_popup{
  margin: auto;
  max-width: 795px;
  width: 100%;
  max-height: 573px;
  height: 100%;
  display: none!important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}
.fancybox-container #form_success_popup{
  display: flex!important;
}
#form_success_popup path{
  fill: none!important;
}
#form_success_popup h4{
  color: var(--Text-Primary);
  font-family: Evolventa;
  font-weight: 400;
  font-size: 40px;
  line-height: 124%;
  text-align: center;
  margin: 20px 0 40px;
}
#form_success_popup button{
  border-radius: 2px;
  background-color: #5c7a57;
  color: #FFF;
  font-family: 'Evolventa';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 132%;
  letter-spacing: -0.36px;
  display: flex;
  width: 100%;
  max-width: 320px;
  height: 46px;
  justify-content: center;
  align-items: center;
  border: none;
}

#form_success_popup .fancybox-button{
  display: none;
}
@media (max-width: 600px){
  #content .splide__pagination .splide__pagination__page {
      height: 5px;
      width: 5px;
  }
  .splide.is-initialized:not(.is-active) .splide__list {
    display: flex!important;
    gap: 20px;
    flex-wrap: wrap;
  }
  .mainscreen-cat__section:not(.subsection_banner) .mainscreen-banner__text span{
    font-size: 16px!important;
  }
  .mainscreen-cat__section:not(.subsection_banner) .mainscreen-banner__text > span{
    margin: 0 0 10px 0!important;
  }
  .company {
    & .mainscreen-banner-text {
        left: 20px;
        bottom: 27px;
        font-size: 16px;
    }
    & .about-text {
        font-size: 13px;
    }
  }
  .categories_block.blog {
    padding: 0px 0 20px;
  }

  .categories_block.blog {

    & ul.categories {
          flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
        & li {
            padding: 2px 10px;
            margin-right: 0;
            & a {
                font-size: 11px;
                line-height: 116%;
              }
          }
      }
  }
  .item-views.news2 .blog-col{
    width: calc(50% - 5px);
  }
  .blog-col:nth-child(3n + 1) > .item-wrapper:nth-child(3), .blog-col:nth-child(3n + 2) > .item-wrapper:nth-child(2), .blog-col:nth-child(3n + 3) > .item-wrapper:nth-child(1) {
    height: 194px;
  }
  .blog-col:nth-child(3n + 1) > .item-wrapper:nth-child(2), .blog-col:nth-child(3n + 2) > .item-wrapper:nth-child(1), .blog-col:nth-child(3n + 3) > .item-wrapper:nth-child(3) {
    height: 245px;
  }
  .blog-col:nth-child(3n + 1) > .item-wrapper:nth-child(1), .blog-col:nth-child(3n + 2) > .item-wrapper:nth-child(3), .blog-col:nth-child(3n + 3) > .item-wrapper:nth-child(2) {
    height: 313px;
  }
  .item-views.news2 .item-wrapper.fon_text_fon .item .inner-text:not(.with-fon) {
    left: 0;
    padding: 0px 10px 10px;
    right: 0;
  }
  .item-views.news2 .item-wrapper .item .inner-text {
      & .title {
          & a {

              font-size: 13px;
                              line-height: 20px;
                display: block;
              & span {
                  font-size: 10px;
              }
          }
      }
  }
  .item-views.news2 .item-wrapper .item.with-fon {
        padding-top: 100%;
    }
.item-views.news2 .item-wrapper.fon_text_fon .item .inner-text {
        position: absolute;
        bottom: 0px;
    }
    .item-views.news2 .item-wrapper .item .inner-text {
    & .title {
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 30px 0 0px;
    }
}
    .item-views.news2 .blog-col:last-child {
        width: 100%;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        & .item-wrapper{
          width: calc(50% - 5px);
          &:first-child{
            height: 313px;
          }
        }
    }
  .bottom_nav.animate-load-state.has-nav .ajax_load_btn {
      margin: 10px auto!important;
      width: 100%!important;
  }
  .single-product__shops{
    flex-wrap: wrap;
    gap: 10px!important;
  }
  .single-product__shops a{
    width: calc(50% - 5px) !important;
  }
  .nav-inner {
    & .mobile-menu__wrap {
        & .mobile-menu__subcats-items {
            grid-template-columns: 1fr;
        }
    }
  }
}
