

/* Start:/bitrix/templates/aspro-lite/components/bitrix/news.list/portfolio/style.css?176114555712699*/
.main {
  overflow: hidden;
}

.slick-slider, .slick-list, .slick-track {
  height: 100%;
}

/* Текстовый */
.portfolio-container {
  width: 1156px;
  max-width: calc(100% - 40px);
  margin: 130px auto;
}
.portfolio-container h1, .portfolio-container h2 {
  font-weight: 600;
}
.portfolio-container h1:not(:last-child), .portfolio-container h2:not(:last-child) {
  margin-bottom: 44px;
}
.portfolio-container h2 {
  font-size: 32px;
}

/* GALLERY */
.portfolio__heading {
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.portfolio__title {
  font-size: 32px;
}
.portfolio__title > * {
  margin: 0;
}
.portfolio__controls {
  gap: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
}
.portfolio__counter {
  font-size: 32px;
  color: #222222;
  white-space: nowrap;
}
.portfolio__prev, .portfolio__next {
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: .3s;
  border-radius: 10px;
  background-color: #DBE9CB;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
}
.portfolio__prev:hover, .portfolio__next:hover {
  background-color: #70A72F;
}
.portfolio__next {
  transform: rotate(180deg);
}
.portfolio__prev svg, .portfolio__next svg {
  width: 18px;
}
.portfolio__prev path, .portfolio__next path {
  fill: #fff;
}
.portfolio__list {
  margin-top: 32px;
}
.portfolio__slider {
  gap: 60px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.portfolio__slider::-webkit-scrollbar {
  height: 0;
}
.portfolio__slider > .slick-list {
  overflow: initial;
  margin-left: -30px;
  margin-right: -30px;
  width: calc(100% + 60px);
}
.portfolio__slide {
  opacity: .5;
  transition: .3s;
  user-select: none;
  padding: 0 30px;
}
.portfolio__slide--active, .portfolio__slide.slick-active {
  opacity: 1;
}

/* PROJECT */
.project {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #EDEDED;
}
.project__contain {
  gap: 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.project__description {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.project__name {
  color: #70A72F;
  font-size: 40px;
  height: 120px;
  line-height: 1.4;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.project__attributes {
  gap: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 34px;
}
.project__attribute {
  gap: 20px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: max-content;
}
.project__attribute-icon {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
}
.project__attribute-icon::before, .project__attribute-icon::after {
  content: '';
  display: block;
  width: 3px;
  height: 48px;
  border-radius: 3px;
  background-color: #F4F4F4;
}
.project__attribute-value {
  font-size: 16px;
  color: #999999;
}
.project__attribute-value p {
  margin: 0;
  margin-top: 5px;
  font-size: 26px;
  color: #000;
}

.project__specifications {
  margin-top: 45px;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: 40px;
  width: calc(100% + 24px);
}
.project__specification {
  gap: 4px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: transparent;
  transition: .3s;
  font-size: 16px;
  padding: 11px 12px 7px;
  border-radius: 5px;
}
.project__specification:hover {
  background-color: #F4F4F4;
}
.project__specification::before {
  content: '';
  border-bottom: 1px dashed #999999;
  display: block;
  width: 100%;
  height: 18px;
}
.project__specification-title {
  color: #8B8B8B;
  white-space: nowrap;
  order: -1;
}
.project__specification-value {
  color: #222222;
  width: 100%;
  min-width: max-content;
  max-width: max-content;
  text-align: right;
}
.project__specification-title span, .project__specification-value span {
  display: block;
  max-width: 250px;
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}

.project__image, .project__thumbs {
  width: 620px;
}
.project__image {
  position: relative;
}
.project__image-slider {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 6px;
  height: 390px;
}
.project__image-slide img {
  width: 100%;
  min-width: 100%;
}
.project__image-prev, .project__image-next {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFFFFF;
  z-index: 9;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.project__image-next {
  left: auto;
  right: 20px;
}
.project__image-prev svg, .project__image-next svg {
  width: 18px;
}
.project__image-next svg {
  transform: rotate(180deg);
}
.project__image-prev path, .project__image-next path {
  fill: #B9B9B9;
  transition: .3s;
}
.project__image-prev:hover path, .project__image-next:hover path {
  fill: #70A72F;
}

.project__thumbs {
  gap: 20px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 20px;
}
.project__thumbs-slider {
  margin-right: -14px;
  height: 120px;
  width: calc(100% + 14px);
}
.project__thumbs-item {
  border-radius: 6px;
  border: 3px solid transparent;
  width: max-content;
  transition: .3s;
  margin-right: 14px;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.project__thumbs-item.slick-current, .project__thumbs-item--current {
  border-color: #70A72F;
}
.project__thumbs-item img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  transition: .3s;
  border-radius: 6px;
  object-fit: cover;
}
.project__thumbs-item.slick-current img, .project__thumbs-item--current img {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
}

.project__button {
  margin-top: auto;
  width: 274px;
}
.project__button span {
  background-color: #70A72F;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  height: 60px;
}
.project__button a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.project__button a::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block!important;
  position: relative;
  background: url(/bitrix/templates/aspro-lite/css/../images/svg/social.svg) 24px -1px no-repeat;
  background-position-x: -312px;
}

.portfolio-container .consultation {
  margin: 0;
}

.portfolio-container .tizers-list .maxwidth-theme {
  padding: 0;
}
.portfolio-container .tizers-list__item-image-wrapper {
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 1270px) {
  .portfolio-container .grid-list--items-4, .portfolio-container .grid-list--items-3-992 {
    grid-template-columns: repeat(2,1fr);
  }

  .project__image, .project__thumbs {
    width: 520px;
  }
}

@media screen and (max-width: 1099px) {
  .portfolio-container {
    max-width: 100%;
    margin: 80px auto;
  }

  .project__image-slider {
    height: 290px;
  }
  .project__thumbs-slider {
    height: 90px;
  }

  .project__name {
    font-size: 32px;
    height: 90px;
  }
  .project__attributes {
    gap: 20px;
    margin-top: 20px;
  }
  .project__attribute {
    gap: 10px;
  }
  /* .project__attribute-icon {
    gap: 5px;
    width: 48px;
  }
  .project__attribute-icon::before, .project__attribute-icon::after {
    height: 40px;
  } */
  .project__attribute-value p {
    font-size: 20px;
    margin-top: 0;
  }
  .project__specifications {
    margin-top: 20px;
  }
}
@media screen and (max-width: 890px) {
  .project__image-slider {
    height: 200px;
  }
  .project__name {
    height: auto;
  }
  .project__button {
    width: 100%;
  }
  .project__attributes {
    flex-wrap: wrap;
  }
  .project__specification {
    flex-wrap: wrap;
  }
  .project__specification::before {
    content: none;
  }
  .project__specification-title {
    width: 100%;
  }

  .project__specification-value {
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  .project {
    padding: 10px;
  }
  .project__contain {
    flex-wrap: wrap;
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
  }

  #main .portfolio-container .tizers-list__items-wrapper {
    gap: 24px;
    grid-gap: 24px;
    flex-wrap: wrap;
  }

  .portfolio__controls {
    /* display: none; */
    margin-left: 0;
    width: 100%;
  }

  .portfolio__slide {
    padding: 0 16px;
  }
  .project__images {
    width: 100%;
  }
  .project__image, .project__thumbs {
    max-width: 100%;
  }
  .project__image-prev, .project__image-next {
    display: none !important;
  }
  .project__thumbs {
    margin-top: 10px;
  }
  .project__thumbs-slider {
    margin-right: -9px;
    height: 60px;
    width: calc(100% + 9px);
  }
  .project__thumbs-item {
    margin-right: 9px;
  }
  .project__thumbs-item.slick-current img, .project__thumbs-item--current img {
    width: calc(100% - 3px);
    height: calc(100% - 3px);
  }

  .project__attributes {
    gap: 10px;
  }
  .project__attribute {
    width: 100%;
  }
  .project__attribute-icon {
    display: none;
  }

  .project__specifications {
    margin-top: 10px;
  }
  .project__specification {
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .project__specification + .project__specification {
    margin-top: 10px;
  }
}

.tizers-list {
    background-image: url('/upload/tizers/sady/bg.png');
    background-position: center center;
    background-repeat: no-repeat;

}

.tizers__header {
    text-align: center;
}

.tizers__grid {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
}

.tizers__row--tight {
    padding-left: 10em;
    padding-right: 10em;
    display: flex;
    justify-content: space-between;
}

.tizers__row--tight.tezirs__item:last-child {
    text-align: right;
}


.tizers__row--wide {
    display: flex;
    justify-content: space-between;
}
.tizers__row--wide:last-child {
    text-align: right;
}

.tizers__item {
    max-width: 344px;

    margin-top: 20px;

    font-size: 20px;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

@media (max-width: 1200px) {
    .tizers__item {
        max-width: 279px;
          margin-top: 20px;
          font-size: 16px;
    }
    
    .tizers__row--tight {
    padding-left: 5em;
    padding-right: 5em;
}
}

.tizers-list--mobile {
    display: none;
}

@media (max-width: 992px) {
    .tizers-list {
        display: none;
    }
    .tizers-list--mobile {
        display: block;
    }
    .tizers__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .tizers__item {
        max-width: fit-content;
        display: flex;
        align-items: center;
    }
    .tizers__img-container {
        margin-right: 10px;
    }
    .tizers__bg-mobile {
      text-align: center;
    }
}

@media (max-width: 576px) {
    .tizers__grid {
        display: grid;
        grid-template-columns: auto;
        gap: 10px;
    }
    .tizers__img-container {
        margin-right: 20px;
    }
    .tizers__bg-mobile {
      display: none;
    }
    
}

.steps__header {
    text-align: center;
    margin-bottom: 30px;
}

.steps__grid {
    display: flex;
    justify-content: space-between;
    
    flex-wrap: wrap;
}

.steps__row {
    display: flex;
    justify-content: space-between;
}
.steps__item {
    width: 23%;

    margin-top: 20px;

    font-size: 20px;
}
.steps__item:before {
    content: attr(data-step);
      position: absolute;
      transform: translateY(28%) translateX(-22%);
      color: #7DA543;
      font-size: 130px;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 50%;
      opacity: 0.1;
}
.steps__img-container {
    padding-left: 20px;
}
.steps__bg-img {
    width: 100%;
}

@media (max-width: 576px) {
    .steps__grid {
        display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
    }
    .steps__item {
        width: auto;
        font-size: 16px;
    }
    .steps__item:before {
        font-size: 100px;
    }
}
.section__banner {
    margin-bottom: 35px;
    position: relative;
}
.section__banner-item {
   /* border-radius: 10px;*/
}
@media (max-width: 600px) {
    .section__banner {
   	 margin-bottom: 20px;
    }
}

.section__banner-item {
    width: 100%;
    heigth: inherit;
}

.section__pic_wide {

}

.section__pic_mobile {
    display: none;
}

@media (max-width: 750px) {
    .section__pic_wide {
   	 display: none;
    }
    .section__pic_mobile {
   	 display: block;
    }
}
/* End */
/* /bitrix/templates/aspro-lite/components/bitrix/news.list/portfolio/style.css?176114555712699 */
