* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

li {
  list-style: none;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background-color: transparent;
}

button {
  cursor: pointer;

}

body.lock {
  overflow: hidden;
}

input {}

textarea {}

/* img,
 svg {
   pointer-events: none;
 } */

/* body {
   padding-top: 100px;

   @media(max-width: 1100px) {
     padding-top: 88px;
   }
 } */

/* modified */
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}


html.lock {
  overflow: hidden;
}

body.lock {
  overflow: hidden;
}

body {

  background-color: #E8E8E6;
}

/* modified */

/* body.not-home {
   padding-top: 153px;

   @media(max-width: 1100px) {
     padding-top: 93px;
   }
 } */

:root {
  --light-color: #fff;
  --dark-color: #2E2F33;
  --darg-gray-color: #8E9293;
  --light-gray-color: #C7C9C9;
  --blue-color: #54B8F0;
  --accent-color: #FF7400;
}

/* h1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
  color: rgba(36, 34, 32, 0.40);


  & span {
    color: #242220;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;

  }

  @media(max-width: 992px) {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;

    & span {
      font-size: 30px;
      font-style: normal;
      font-weight: 700;
      line-height: 90%;
    }
  }

}

h2 {
  color: rgba(36, 34, 32, 0.60);
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%;


  & span {
    color: #242220;

  }

  @media(max-width: 992px) {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
  }
}



h3 {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.48px;

  @media(max-width: 992px) {
    font-size: 30px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.6px;
  }
}

h4 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.4px;

  @media(max-width: 992px) {
    font-size: 30px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.6px;
  }

  @media(max-width: 700px) {
    font-size: 16px;
  }
} */

.container {
  max-width: 1688px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

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

  @media(max-width: 1450px) {
    max-width: 1280px;
  }

  @media(max-width: 1300px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.main-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;

  & img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(.6);
  }
}

header {

  position: relative;
  height: 127px;

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

  .burger {
    width: 35px;
    height: 35px;

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

    @media(min-width: 992px) {
      display: none;
    }

  }

  & .header-inner {
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all .3s ease-in;
    z-index: 5;

    & .navigation {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 25px;

      & .logo {
        height: 87px;
        width: fit-content;
        display: block;

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

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

      & .navigation-right {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1000px;
        width: 100%;
        gap: 25px;


        @media(max-width: 992px) {
          position: absolute;
          left: 0;
          top: 0;
          padding: 40px 20px;
          background-color: #fff;
          height: 100vh;
          flex-direction: column;
          align-items: flex-start;
          opacity: 0;
          left: -120%;
          transition: all .3s ease-in;
          z-index: 5;

          &.active {
            left: 0;
            transition: all .3s ease-in;
            opacity: 1;
          }
        }
      }

      .close-menu {
        display: none;

        @media(max-width: 992px) {
          display: flex;
          justify-content: center;
          align-items: center;
          position: absolute;
          right: 20px;
          top: 40px;
          width: 25px;
          height: 25px;

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

      & .nav-menu {
        display: flex;
        align-items: center;
        gap: 40px;

        @media(max-width: 992px) {
          flex-direction: column;
          gap: 20px;
          align-items: flex-start;
        }

        &>li {
          color: #ffffff;
          font-size: 15px;
          line-height: 1;
          font-weight: 500;
          text-transform: uppercase;
          display: block;
          text-align: center;
          transition: color .3s ease-in;
          cursor: pointer;

          @media(max-width: 992px) {
            color: #2E2F33;
          }

          &:hover {
            color: #99c800;
          }

          & a {
            color: #ffffff;
            font-size: 15px;
            line-height: 1;
            font-weight: 500;
            text-transform: uppercase;
            display: block;
            text-align: center;
            transition: color .3s ease-in;

            @media(max-width: 992px) {
              color: #2E2F33;
            }

            &:hover {
              color: #99c800;
            }
          }



          &:has(.sub-menu) {
            position: relative;
          }

          & .sub-menu {
            display: flex;
            flex-direction: column;
            display: none;

            &.active {
              display: flex;
              position: absolute;
              left: 0;
              background-color: #fff;
              border: 1px solid #99c800;
              padding: 15px 12px;
              min-width: 300px;
              transform: translateY(10px);
              align-items: flex-start;
              gap: 15px;
              z-index: 6;
            }


            & li {
              & a {
                color: #202324;
                font-size: 15px;
                line-height: 1;
                font-weight: 500;
                transition: all .3s ease-in;

              }

              &:hover {
                & a {
                  transition: all .3s ease-in;
                  color: #b8f501 !important;
                }
              }
            }
          }
        }
      }

      & .phones {
        display: flex;
        flex-direction: column;
        gap: 7px;
        align-items: flex-end;

        @media(max-width: 992px) {
          align-items: flex-start;
        }

        & a {
          color: #ffffff;
          font-size: 15px;
          line-height: 1;
          font-weight: 500;
          text-transform: uppercase;
          display: block;
          text-align: center;
          transition: color .3s ease-in;

          @media(max-width: 992px) {
            color: #2E2F33;
          }

          &:hover {
            color: #99c800;
          }
        }
      }


    }

    &.fixed {
      position: fixed;
      width: 100%;
      background-color: #202324aa;
      transition: all .3s ease-in;
      filter: blur(1);
    }
  }

  &.other-page {
    .burger {
      width: 35px;
      height: 35px;

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

        & path {
          stroke: #2E2F33;
        }
      }



    }

    & .header-inner {
      & .navigation {
        & .nav-menu {
          &>li {
            color: #2E2F33;

            @media(max-width: 992px) {
              color: #2E2F33;
            }

            &:hover {
              color: #99c800;
            }

            & a {
              color: #2E2F33;

              @media(max-width: 992px) {
                color: #2E2F33;
              }

              &:hover {
                color: #99c800;
              }
            }

            & .sub-menu {
              & li {
                & a {
                  color: #202324;
                }
              }
            }
          }
        }
      }

      & .phones {

        @media(max-width: 992px) {
          align-items: flex-start;
        }

        & a {
          color: #2E2F33;


          @media(max-width: 992px) {
            color: #2E2F33;
          }

          &:hover {
            color: #99c800;
          }
        }
      }

      &.fixed {
        & svg {
          object-fit: contain;
          width: 100%;
          height: 100%;

          & path {
            stroke: #fff;
          }
        }

        & .navigation {
          & .nav-menu {
            &>li {
              color: #fff;

              @media(max-width: 992px) {
                color: #2E2F33;
              }

              &:hover {
                color: #99c800;
              }

              & a {
                color: #fff;

                @media(max-width: 992px) {
                  color: #2E2F33;
                }

                &:hover {
                  color: #99c800;
                }
              }

              & .sub-menu {
                & li {
                  & a {
                    color: #202324;
                  }
                }
              }
            }
          }
        }

        & .phones {

          @media(max-width: 992px) {
            align-items: flex-start;
          }

          & a {
            color: #fff;


            @media(max-width: 992px) {
              color: #2E2F33;
            }

            &:hover {
              color: #99c800;
            }
          }
        }
      }
    }

  }
}

.breadcrumbs {
  margin-bottom: 30px;

  & .breadcrumbs-items {
    display: flex;
    align-items: center;
    gap: 16px 40px;
    flex-wrap: wrap;

    & li {
      & a {
        color: #202324;
        font-size: 14px;
        position: relative;

        &::after {
          content: '/';
          position: absolute;
          right: -20px;
          top: 50%;
          transform: translateY(-50%);
          font-size: 14px;
          color: #202324;
        }
      }

      &:last-child {
        & a {
          color: #99c800;
          pointer-events: none;

          &::after {
            display: none;
          }
        }
      }
    }
  }
}

.gallery {
  & .gallery-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 3px;

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

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

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

    & li {
      & a {
        padding: 18px 22px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #2E2F33;
        color: #202324;
        transition: all .3s ease-in;

        @media(max-width: 1700px) {
          font-size: 14px;
          padding: 10px 10px;
        }

        &.active {
          border-color: #99c800;
        }

        & span {
          opacity: .7;
          transition: all .3s ease-in;
        }

        &:hover {
          transition: all .3s ease-in;

          & span {
            opacity: 1;
            transition: all .3s ease-in;
          }
        }
      }

    }
  }

  & .gallery-images {
    margin-top: 15px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;

    & li {
      width: 100%;
      height: 370px;

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

      @media(max-width: 768px) {
        height: 250px;
      }

      @media(max-width: 700px) {
        height: 200px;
      }

      @media(max-width:500px) {
        height: 160px;
      }

      & a {
        width: 100%;
        height: 100%;

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

      &:nth-child(20n + 1) {
        grid-column: span 2;

        @media(max-width: 700px) {
          grid-column: span 8;
        }
      }

      &:nth-child(20n + 2) {
        grid-column: span 4;
      }

      &:nth-child(20n + 3) {
        grid-column: span 4;
      }

      &:nth-child(20n + 4) {
        grid-column: span 2;

        @media(max-width: 700px) {
          grid-column: span 8;
        }
      }

      &:nth-child(20n + 5) {
        grid-column: span 4;
      }

      &:nth-child(20n + 6) {
        grid-column: span 2;

        @media(max-width: 700px) {
          grid-column: span 4;
        }
      }

      &:nth-child(20n + 7) {
        grid-column: span 2;

        @media(max-width: 700px) {
          grid-column: span 4;
        }
      }

      &:nth-child(20n + 8) {
        grid-column: span 4;

        @media(max-width: 700px) {
          grid-column: span 8;
        }
      }

      &:nth-child(20n + 9) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 4;
        }
      }

      &:nth-child(20n + 10) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 4;
        }
      }

      &:nth-child(20n + 11) {
        grid-column: span 4;

        @media(max-width: 700px) {
          grid-column: span 4;
        }
      }

      &:nth-child(20n + 12) {
        grid-column: span 2;

        @media(max-width: 700px) {
          grid-column: span 4;
        }
      }

      &:nth-child(20n + 13) {
        grid-column: span 2;

        @media(max-width: 700px) {
          grid-column: span 4;
        }
      }

      &:nth-child(20n + 14) {
        grid-column: span 4;

        @media(max-width: 700px) {
          grid-column: span 8;
        }
      }

      &:nth-child(20n + 15) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 8;
        }
      }

      &:nth-child(20n + 16) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 4;
        }
      }

      &:nth-child(20n + 17) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 4;
        }
      }

      &:nth-child(20n + 18) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 8;
        }
      }

      &:nth-child(20n + 19) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 8;
        }
      }

      &:nth-child(20n + 20) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 4;
        }
      }
    }
  }
}

.section {
  margin-bottom: 90px;

  @media(max-width: 992px) {
    margin-bottom: 50px;
  }
}

.order-btn {
  background-color: #b8f501;
  color: #202324;
  transition: all .3s ease-in;
  padding: 15px 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
  height: fit-content;

  &:hover {
    background-color: #99c800;
    transition: all .3s ease-in;
  }
}



.mainscreen {
  display: flex;
  align-items: center;
  height: calc(100vh - 127px);

  @media(max-width: 992px) {
    height: calc(100vh - 80px);
  }

  & .mainscreen-inner {
    width: 100%;

    & h1 {
      font-size: 70px;
      max-width: 800px;
      color: #fff;
      margin-bottom: 30px;
      font-weight: 600;
      text-transform: uppercase;

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

      @media(max-width: 700px) {
        font-size: 35px;
      }
    }

    & .mainsreen-subtitle {
      font-size: 25px;
      max-width: 800px;
      color: #fff;
      margin-bottom: 45px;

      @media(max-width: 1300px) {
        font-size: 18px;
      }

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

}

.advantages {

  & .advantages-inner {
    & .advantages-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;

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

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

      & li {
        & p {
          color: #202324;
          font-size: 35px;
          line-height: 1;
          margin-bottom: 30px;
          height: 70px;

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

          @media(max-width: 992px) {
            font-size: 22px;
            margin-bottom: 15px;
          }
        }

        & span {
          color: #202324;
          font-size: 15px;
          line-height: 1.1;
          font-weight: 400;
          max-width: 300px;
          display: block;


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

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

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 25px;

  @media(max-width: 380px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

h2 {
  font-size: 55px;
  text-transform: uppercase;
  color: #202324;
  font-weight: 600;
  max-width: 700px;

  @media(max-width: 992px) {
    font-size: 35px;
  }

  @media(max-width: 700px) {
    font-size: 30px;
  }
}

.view-all {
  font-size: 15px;
  color: #202324;
  transition: all .3s ease-in;
  text-transform: uppercase;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-right: 10px;

  & img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all .3s ease-in;
  }

  &:hover {
    & img {
      transform: translateX(10px);
      transition: all .3s ease-in;
    }
  }
}

.gallery {
  & .gallery-preview__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

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

    & li {
      height: 500px;
      overflow: hidden;

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

      & a {
        width: 100%;
        height: 100%;
        display: block;
      }

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: all .3s ease-in;
      }

      &:last-child {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 1;
        }
      }

      &:hover {
        & img {
          transform: scale(1.05);
          transition: all .3s ease-in;
        }
      }
    }
  }
}

.works {
  & .works-preview__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

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

    & li {
      height: 500px;
      position: relative;
      overflow: hidden;

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

      & a {
        width: 100%;
        height: 100%;
        display: block;
      }

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        filter: brightness(.7);
        transition: all .3s ease-in;
      }

      & .works-preview__text {
        position: absolute;
        left: 25px;
        bottom: 25px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 15px;
        color: #202324;
        text-transform: uppercase;
        filter: invert(1);
        opacity: 0;
        transition: all .3s ease-in;

        & img {
          width: 25px;
          height: 25px;
        }
      }

      &:last-child {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 1;
        }
      }

      &:hover {
        & .works-preview__text {
          opacity: 1;
          transition: all .3s ease-in;
        }

        & img {
          transform: scale(1.05);
          transition: all .3s ease-in;
        }
      }
    }
  }

}


.steps {
  & .steps-list {
    display: flex;
    flex-direction: column;
    margin-top: 25px;

    & li {
      & .consult-trigger {
        padding-top: 40px;
        padding-bottom: 40px;
        display: flex;
        align-items: center;
        width: 100%;
        transition: all .3s ease-in;
        border-bottom: 1px solid transparent;
        border-top: 1px solid transparent;

        @media(max-width: 992px) {
          padding-top: 20px;
          padding-bottom: 20px;
          flex-wrap: wrap;
          gap: 15px;
        }

        &:hover {
          border-bottom: 1px solid #99c800;
          border-top: 1px solid #99c800;
          transition: all .3s ease-in;
        }

        & .step-num {
          color: #99c800;
          z-index: 3;
          font-size: 15px;
          margin-right: 20px;
        }

        & .step-head {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          width: 300px;

          & .step-title {
            color: #202324;
            font-size: 30px;
            margin-bottom: 3px;
            text-align: left;

            @media(max-width: 992px) {
              font-size: 20px;
            }
          }

          & .step-subtitle {
            font-size: 13px;
            color: #99c800;
          }
        }

        & .step-description {
          margin-left: 100px;
          color: #202324;
          font-size: 20px;
          max-width: 500px;
          text-align: left;

          @media(max-width: 992px) {
            font-size: 15px;
            margin-left: 0;
            width: 100%;
            max-width: 100%;
          }
        }
      }
    }
  }
}

h3 {
  font-size: 35px;
  color: #202324;
  font-weight: 400;

  @media(max-width: 992px) {
    font-size: 20px;
  }
}

.about {
  & .about-top {
    display: flex;
    gap: 20px;

    & .about-top__image {
      max-width: 1100px;
      width: 100%;
      height: 626px;

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

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

    & .about-top__content {
      max-width: 538px;

      @media(max-width:992px) {
        /* max-width: 55%; */
      }

      & h2 {
        margin-bottom: 20px;
      }

      & .about-top__description {
        margin-bottom: 35px;

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

  & .about-adv__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 50px;

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

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

    & li {
      & a {
        display: block;
        width: 100%;
        height: 100%;

        &:hover {
          & .about-adv__image {
            & img {
              transform: scale(1.05);
              transition: all .3s;
            }
          }
        }

        & .about-adv__image {
          width: 100%;
          height: 476px;
          margin-bottom: 30px;
          overflow: hidden;

          @media(max-width: 992px) {
            height: 350px;
            margin-bottom: 20px;
          }

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

          & img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            transition: all .3s;
          }
        }

        & .about-adv__title {
          margin-bottom: 15px;

          @media(max-width: 992px) {
            margin-bottom: 10px;
          }
        }

        & .about-adv__description {
          font-size: 16px;
          color: #99c800;
          font-weight: 500;
          max-width: 300px;

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

  & .about-banking {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #99c800;
    border-top: 1px solid #99c800;

    & h3 {
      margin-bottom: 25px;
      max-width: 60%;
    }

    & .about-banking__items {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;

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

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

      & li {
        display: flex;
        align-items: center;
        gap: 20px;

        & .about-banking__mark {
          width: 38px;
          height: 38px;
          min-width: 38px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          border: 1px solid #99c800;
          padding: 4px;

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

        & .about-banking__text {
          color: #202324;
          font-size: 16px;
          font-weight: 500;
        }
      }
    }
  }
}

.news-section {
  & h2 {}

  & .news-items {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

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

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

    & li {
      width: 100%;
      height: 100%;

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

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

      & a {
        display: block;
        width: 100%;
        height: 330px;

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

.project-cat {
  & .project-cat__list {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;

    & li {
      height: 370px;
      width: 100%;

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

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

      @media(max-width: 700px) {
        height: 160px;
      }

      &:nth-child(16n + 1) {
        grid-column: span 6;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 2) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 3) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 4) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 5) {
        grid-column: span 3;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 6) {
        grid-column: span 6;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 7) {
        grid-column: span 4;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 8) {
        grid-column: span 4;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 9) {
        grid-column: span 4;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 10) {
        grid-column: span 6;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 11) {
        grid-column: span 6;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 12) {
        grid-column: span 4;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 13) {
        grid-column: span 4;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 14) {
        grid-column: span 4;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 15) {
        grid-column: span 6;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      &:nth-child(16n + 16) {
        grid-column: span 6;

        @media(max-width: 700px) {
          grid-column: span 6;
        }

        @media(max-width: 500px) {
          grid-column: span 12;
        }
      }

      & a {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;

        & .project-cat__text {
          position: absolute;
          left: 20px;
          bottom: 20px;
          z-index: 2;
          color: #b8f501;
          text-transform: uppercase;
          opacity: 0;
          transition: all .3s ease-in;
          font-weight: 500;

          @media(max-width: 992px) {
            font-size: 13px;
            left: 10px;
            bottom: 10px;
          }
        }

        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: all .3s ease-in;
        }

        &:hover {
          & img {
            filter: brightness(.6);
            transition: all .3s ease-in;
          }

          & .project-cat__text {
            opacity: 1;
            transition: all .3s ease-in;
          }
        }
      }
    }

  }
}

.section-title {
  font-size: 35px;
  margin-bottom: 20px;
  color: #2E2F33;
  text-transform: uppercase;
}

.section-description {
  font-size: 15px;
  color: #2E2F33;
  max-width: 900px;
}

.detail-product {

  & .detail-product__inner {
    display: flex;
    gap: 40px;

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

    & .detail-product__sliders {
      max-width: 48%;

      &.moved {
        margin-bottom: 20px;
      }

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

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

      & .detail-slider {
        margin-bottom: 20px;

        & .splide__arrow {
          background-color: #202324;

          & svg {
            fill: #b8f501;
          }
        }

        & li {
          & a {
            display: block;
            width: 100%;
            height: 100%;

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

      & .detail-slider-thumbs {
        & .splide__slide {
          transition: all .3s;
        }

        & .splide__slide.is-active {
          border: 2px inset #99c800;
          transition: all .3s;
        }
      }
    }

    & .detail-product__info {
      & .section-description {
        margin-bottom: 40px;
      }
    }
  }
}

.product-review__inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;

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

  & .product-review__video {
    max-width: 48%;
    width: 100%;
    height: 400px;

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

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

  & .product-review__info {
    display: flex;
    flex-direction: column;
    gap: 25px;

    & .product-review__title {
      font-size: 35px;
      text-transform: uppercase;
      color: #2E2F33;
    }

    & .product-review__description {
      color: #2E2F33;
      font-size: 15px;
      max-width: 500px;
    }
  }
}

.advantages-detail {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #99c800;
  border-top: 1px solid #99c800;
}

.other-projects {
  & .other-projects__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;

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

    & li {
      height: 400px;
      width: 100%;

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

      @media(max-width: 700px) {
        height: 250px;
      }

      & a {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;

        & .other-projects__text {
          position: absolute;
          left: 20px;
          bottom: 20px;
          font-size: 14px;
          text-transform: uppercase;
          color: #b8f501;
          transition: all .3s ease-in;
          opacity: 0;
          font-weight: 500;
        }

        & img {
          object-fit: cover;
          width: 100%;
          height: 100%;
          transition: all .3s ease-in;
        }

        &:hover {
          & img {
            filter: brightness(.7);
            transition: all .3s ease-in;
          }

          & .other-projects__text {
            transition: all .3s ease-in;
            opacity: 1;
          }
        }
      }
    }
  }
}

.about-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;

  & .about-top__info {
    max-width: 50%;

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

    & h1 {
      color: #2E2F33;
      font-size: 34px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    & p {
      font-size: 15px;
      margin-bottom: 15px;
    }

    & span {
      color: #2E2F33;
      opacity: .7;
      font-size: 15px;
    }
  }

  & .about-video {
    height: 400px;
    max-width: 700px;
    width: 100%;

    @media(max-width: 992px) {
      max-width: 100%;
      margin-bottom: 20px;

      @media(max-width: 600px) {

        height: 300px;
      }
    }

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

.about-middle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 20px;

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

  @media(max-width: 600px) {

    grid-template-columns: repeat(1, 1fr);
  }

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

    @media(max-width: 600px) {

      height: 250px;
    }
  }
}

.about-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

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

  & .about-img__bottom {
    height: 400px;
    max-width: 700px;
    width: 100%;

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

    @media(max-width: 600px) {

      height: 300px;
    }

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

  & .about-bottom__info {
    max-width: 60%;
    color: #2E2F33;
    opacity: .7;
    font-size: 15px;

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

.contacts {
  & h1 {
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  & .contacts-inner {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;

    @media(max-width: 992px) {
      flex-direction: column;
      align-items: flex-start;
      margin-top: 20px;
    }

    & .contacts-info {
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 50%;

      & .contact {
        font-size: 15px;
        color: #2E2F33;
        opacity: .7;
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 15px;
        color: #2E2F33;
        font-style: normal;

        & span {
          font-size: 18px;
          font-weight: 500;
          color: #000000;
          opacity: 1;
        }

        & a {
          font-size: 15px;
          color: #2E2F33;
        }
      }
    }

    & .contacts-map {
      max-width: 1000px;
      width: 100%;

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

      & div {
        & iframe {
          width: 100%;
        }
      }
    }
  }
}

.news {
  & h1 {
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  & .news-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 15px;

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

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

    & li {
      width: 100%;
      height: 100%;

      & a {
        display: block;
        width: 100%;
        height: 100%;

        & img {
          height: 330px;
          width: 100%;
          object-fit: cover;
          margin-bottom: 15px;

          @media(max-width: 700px) {
            height: 200px;
          }
        }

        & .news-name {
          text-transform: uppercase;
          color: #202324;
          font-size: 20px;
          margin-bottom: 10px;
          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;
        }

        & .news-description {
          font-size: 15px;
          color: #202324;
          opacity: .7;
          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;
        }
      }
    }
  }
}

.detail-news {
  & h1 {
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  & .news-detail__image {
    max-width: 100%;
    height: 451px;
    margin-bottom: 20px;
    max-width: 700px;

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

  & .news-detail__content {
    & h2 {
      font-size: 30px;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    & h3 {
      font-size: 25px;
      text-transform: uppercase;
      margin-bottom: 15px;
      font-weight: 500;
    }

    & h4 {
      font-size: 20px;
      text-transform: uppercase;
      margin-bottom: 15px;
      font-weight: 500;
    }

    & h5 {
      font-size: 22px;
      text-transform: uppercase;
      margin-bottom: 15px;
      font-weight: 500;
    }

    & h6 {
      font-size: 20px;
      text-transform: uppercase;
      margin-bottom: 15px;
      font-weight: 500;
    }

    & p {
      font-size: 15px;

      margin-bottom: 15px;
      color: #2E2F33;
      opacity: .7;
    }

    & strong {
      font-size: 15px;

      margin-bottom: 15px;
      color: #2E2F33;
      opacity: .7;
      font-weight: 500;
    }

    & ul {
      margin-bottom: 15px;
      list-style-type: disc;

      & li {
        font-size: 15px;

        margin-bottom: 5px;
        color: #2E2F33;
        opacity: .7;
        position: relative;
        padding-left: 20px;

        &::before {
          content: '';
          position: absolute;
          width: 5px;
          height: 5px;
          border-radius: 50%;
          background-color: #2E2F33;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
        }
      }
    }

    & ol {
      margin-bottom: 15px;
      padding-left: 0;
      list-style: none;
      counter-reset: item;

      & li {
        position: relative;
        padding-left: 20px;
        font-size: 15px;

        margin-bottom: 5px;
        color: #2E2F33;
        opacity: .7;

        counter-increment: item;

        &::before {
          content: counter(item) ".";
          position: absolute;
          left: 0;
          top: 0;
          font-weight: 600;
        }
      }
    }
  }
}

footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #2E2F33;

  & .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media(max-width: 500px) {
      flex-direction: column;
      gap: 30px;
    }

    & .footer-logo {
      height: 87px;
      width: auto;

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

  & .footer-middle {
    display: flex;
    justify-content: space-between;

    @media(max-width: 500px) {
      flex-wrap: wrap;
      gap: 20px;
    }

    & .footer-menu {
      display: flex;
      flex-direction: column;
      gap: 15px;

      & li {
        & a {
          color: #fff;
          font-size: 15px;
          transition: all .3s ease-in;

          &:hover {
            color: #99c800;
            transition: all .3s ease-in;
          }
        }

        & .sub-menu {
          display: flex;
          flex-direction: column;
          gap: 15px;
          margin-top: 15px;
        }
      }
    }

    & .footer-contacts {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: flex-end;

      & .footer-link {
        font-size: 15px;
        color: #fff;
        transition: all .3s ease-in;

        &:hover {
          color: #99c800;
          transition: all .3s ease-in;
        }
      }
    }
  }

  & .footer-bottom {
    display: flex;
    justify-content: space-between;

    @media(max-width: 700px) {
      flex-direction: column;
      gap: 15px;
    }

    & .requzites {
      color: #fff;
      font-size: 15px;
    }

    & .footer-copy {
      font-size: 15px;
      color: #fff;
    }

    & .footer-policy {
      font-size: 15px;
      color: #fff;
    }
  }
}

.privacy {
  & .privacy-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    & table {
      margin-bottom: 30px;
    }
  }

  & h1 {
    margin-bottom: 40px;
    color: #2E2F33;
    font-size: 34px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  & p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  & h2 {
    margin-bottom: 40px;
    color: #2E2F33;
    font-size: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
}

.overlay {
  background-color: #0000008d;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  display: none;
  &.active {
    display: block;
  }
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 16;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all .3s ease-in;

  &.active {
    opacity: 1;
    transform: scale(1);
    transition: all .3s ease-in;
  }

  & .modal-inner {
    max-width: 300px;
    width: 100%;
    max-height: 500px;
    padding: 50px 20px 20px 20px;
    border-radius: 20px;
    background-color: #fff;
    position: relative;

    & .modal-close {
      position: absolute;
      right: 15px;
      top: 15px;
      width: 25px;
      height: 25px;

      & svg {
        width: 100%;
        height: 100%;
      }
    }
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  margin-bottom: 20px;

  & input {
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid #000000;
    height: 40px;
    border-radius: 6px;
    padding-left: 20px;
  }

  & textarea {
    height: 80px;
    width: 100%;
    display: block;
    border: 1px solid #000000;
    border-radius: 6px;
    padding-left: 20px;
    padding-top: 10px;
    resize: none;
  }
}

& .wpcf7-submit {
  background-color: #b8f501;
  width: 100%;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-top: 25px;
  cursor: pointer;
}

.wpcf7 form .wpcf7-response-output {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 11px;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
}

p:has(.wpcf7-submit) {
  height: 40px;
}

.breadcrumbs {
  & a {
    color: #99c800;
  }
}