

/* Start:/bitrix/templates/aspro-allcorp3/css/new-main.css?178654662921097*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

div.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.container:after, .container:before, .row:after, .row:before{
  display: none !important;
}

.swiper-btn-prev svg,
.swiper-btn-next svg {
  width: 30px;
  height: 30px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: linear-gradient(180deg, var(--dark) 0%, #202d2a 100%);
  padding-top: 150px;
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

@media (min-width:1600px){
  .hero__bg img{
    object-position: bottom
  }
}

.hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero__content {
  max-width: 480px;
}

.hero__content--text-top{
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  font-size: 12px;
}

.hero__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 22px;
}

.hero__text {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 420px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
}

.hero__buttons .btn--outline {
  border: 1px solid #fff !important;
  color: #fff;
}

.hero__buttons .btn--primary{
  border: none !important;    
  display: flex;
  align-items: center;
}

.hero__media {
  display: flex;
  justify-content: flex-end;
}

.hero__image {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 640 / 420;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.hero__image svg {
  width: 100%;
  height: 100%;
}

.stats-card {
  position: absolute;
  right: 34px;
  top: 0;
  width: 270px;
  background: #000000d1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 30px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.stats-card__item:not(:last-child) {
  border-bottom: 1px solid #565656;
  padding-bottom: 20px;
}

.stats-card__item {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 35px;
  align-items: center;
}

.stats-card__icon {
  grid-row: 1 / 3;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-card__icon svg {
  width: 100%;
  height: 100%;
}

.stats-card__num {
  font-size: 23px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.stats-card__label {
  font-size: 13px;
  color: #8b948f;
  line-height: 1.2;
}

div.hero__features {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  padding: 40px 40px 44px;
  margin-top: 20px;
  position: relative;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d6dad8;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
.feature img {
  width: 40px;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 35px 0;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.section__title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 0;
}

.section__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap 0.2s ease;
}
.section__link:hover {
  gap: 8px;
}

.section__link svg {
  width: 24px;
  height: 24px;
}

.section__link--mobile {
  display: none;
}

.section__link--text {
  display: block;
}

.swiper {
  width: 100%;
}

[data-swiper] {
  position: relative;
}

#categories .swiper-slide,
.producers__logo.swiper-slide {
  height: auto;
}

/* ==========================================================================
   Categories
   ========================================================================== */

.category-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.25s ease;
  height: 100%;
}

.category-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.category-card:hover {
  transform: translateY(-4px);
}

.category-card__arrow {
  position: absolute;
  right: 14px;
  bottom: 19px;
}

.category-card__arrow svg {
  width: 24px;
  height: 24px;
}

.category-card__arrow svg path:not(:first-child) {
  stroke: var(--orange);
}

.category-card__body {
  padding: 16px 45px 25px 16px;
  display: block;
}

.category-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.6;
}
.category-card__title i {
  font-style: normal;
  color: var(--text-light-gray);
  font-weight: 400;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.category-card:hover .category-card__title i {
  color: var(--orange);
  transform: translateX(3px);
}

.category-card__img--brick1 {
  background: linear-gradient(145deg, #b4593b, #7c3521);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0 18px,
      rgba(0, 0, 0, 0.18) 18px 20px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 38px,
      rgba(0, 0, 0, 0.15) 38px 40px
    ),
    linear-gradient(145deg, #b4593b, #7c3521);
}
.category-card__img--brick2 {
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0 16px,
      rgba(0, 0, 0, 0.25) 16px 18px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 34px,
      rgba(0, 0, 0, 0.2) 34px 36px
    ),
    linear-gradient(145deg, #5b3a32, #2e1c18);
}
.category-card__img--brick3 {
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0 17px,
      rgba(0, 0, 0, 0.2) 17px 19px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 36px,
      rgba(0, 0, 0, 0.16) 36px 38px
    ),
    linear-gradient(145deg, #d3894f, #a85a2e);
}
.category-card__img--paving {
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.16) 0 3px,
      transparent 3px 34px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.16) 0 3px,
      transparent 3px 34px
    ),
    linear-gradient(145deg, #9a9a94, #6e6e68);
}
.category-card__img--tile {
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.08) 0 2px,
      transparent 2px 48px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0 2px,
      transparent 2px 48px
    ),
    linear-gradient(145deg, #c9cdc9, #9aa09b);
}
.category-card__img--other {
  background: linear-gradient(145deg, #e7e2da, #c9c2b5);
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 30px !important;
  height: 30px !important;
}

body [data-swiper] .swiper-button-prev {
  left: -35px;
}

body [data-swiper] .swiper-button-next{
  right: -35px;
}

section:has([data-swiper]){
  overflow: hidden;
}

/* ==========================================================================
   Producers
   ========================================================================== */

.producers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--white);
}

.section--alt .producers {
  background: var(--white);
}

#producers .producers__logo {
  font-weight: 800;
  font-size: 17px;
  color: #454e4c;
  letter-spacing: -0.01em;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  text-align: center;
  height: 80px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.producers__logo img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.producers__logo a{
  display: flex;
  width: 100%;
  height: 100%;
}
.producers__logo:hover {
  opacity: 1;
}
.producers__logo small,
.producers__logo span {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light-gray);
  text-transform: uppercase;
  margin-top: 1px;
}
.producers__logo--braer {
  font-family: Georgia, serif;
  font-style: italic;
}
.producers__logo--terca {
  color: var(--orange);
}

/* ==========================================================================
   Grid 4 (collections / objects / videos)
   ========================================================================== */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Collections */

.collection-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  height: 100%;
}
.collection-card:hover {
  box-shadow: 0 16px 32px -16px rgba(27, 38, 36, 0.18);
  transform: translateY(-3px);
}

.collection-card__cld {
  position: absolute;
  right: 11px;
  width: 120px;
  top: -33px;
  height: 65px;
  border-radius: 5px;
}

.collection-card__cld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.collection-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
}

.collection-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card__body {
  padding: 18px 18px 20px;
  position: relative;
}

.collection-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 0;
}

.collection-card__meta {
  font-size: 12.5px;
  color: var(--text-gray);
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-direction: column;
}
.collection-cart__logo img {
  width: 80px;
  height: auto;
}

.collection-cart__name{
  margin-bottom: 0;
}

.collection-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.collection-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

/* Objects */

.object-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: transform 0.25s ease;
}

.object-card__img img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-card:hover .object-card__img {
  transform: translateY(-4px);
}

.object-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 0;
}
.object-card__meta {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 0;
}

/* Videos */
.videos-slider .swiper-slide{
  height: auto;
}
.video-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  height: 100%;
}
.video-card__body {
  padding: 15px 17px;
}
.video-card__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.video-card__img video{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.video-card__play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #00000070;
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
  position: absolute;
}
.video-card:hover .video-card__play {
  transform: scale(1.08);
  background: var(--orange);
}
.video-card__play svg {
  margin-left: 2px;
  width: 28px;
  height: 28px;
}

.video-card__time {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(15, 20, 19, 0.8);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
}

.video-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.6;
}
.video-card__meta {
  font-size: 13px;
  color: var(--text-gray);
}

/* ==========================================================================
   Color picker
   ========================================================================== */

.color-picker {
  display: flex;
  gap: 25px;
}

.color-swatches {
  width: calc(100% - 360px);
  display: flex;
  height: max-content;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.color-swatch span{
    color: var(--text);
    line-height: 1.4;
    display: block;
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
}

.color-swatch__dot {
  width: 100%;
  height: 90px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.color-swatch__dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.color-swatch:hover {
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.25);
}

.color-picker__card {
  background: #fff8f4;
  border-radius: var(--radius-sm);
  padding: 17px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 340px;
}
.color-picker__card h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.color-picker__card p {
  color: var(--dark);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.color-picker__card .btn {
  align-self: flex-start;
}

/* ==========================================================================
   Why us
   ========================================================================== */

.why-us {
  display: flex;
  /* justify-content: space-between; */
  gap: 50px;
  width: max-content;
}

@media (min-width:1400px){
  .why-us{
    width: 100%;
    justify-content: space-between;
  }
}

.why-us-section {
  overflow: auto;
}

.why-us__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}

.why-us__item span{
  color: var(--text);
}

.why-us__icon {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.why-us__icon img {
  height: 100%;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-wrap {
  padding-top: 0;
  padding-bottom: 88px;
}

.cta-banner {
  background: linear-gradient(120deg, #f0713a 0%, #de5320 100%);
}

.cta-banner .container {
  position: relative;
}

.cta__content {
  padding: 56px 20px 56px 0;
  max-width: 600px;
  position: relative;
  z-index: 1;
}
.cta__content h2 {
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.cta__content p {
  color: #ffe3d3;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta__media {
  height: 100%;
  min-height: 450px;
  position: absolute;
  top: -55px;
  right: 0;
}
.cta__media img {
  width: 100%;
  height: 100%;
}



/* ==========================================================================
   Responsive — tablet
   ========================================================================== */
@media (max-width:1400px){
  .collection-card__cld{
    width: 90px;
    top: -25px;
    height: 48px;
  }
}
@media (max-width: 1080px) {
  div.container {
    padding: 0 28px;
  }

  .phone-mobile-header {
    display: block;
  }

  .burger {
    display: flex;
  }

  .hero__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__media {
    flex-direction: column;
    justify-content: center;
  }
  .hero__image {
    max-width: 100%;
  }
  .stats-card {
    position: static;
    width: 100%;
    margin-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stats-card__item {
    flex: 1 1 40%;
  }

  div.hero__features {
    flex-wrap: wrap;
    row-gap: 24px;
    justify-content: flex-start;
    display: none;
  }
  .feature {
    flex: 1 1 30%;
  }

  .categories {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us {
    grid-template-columns: repeat(3, 1fr);
  }

  .color-picker {
    grid-template-columns: 1fr;
  }

  .producers {
    justify-content: space-around;
  }

  .cta__content {
    padding: 44px 32px;
  }
  /* .cta__media {
    min-height: 220px;
  } */
  .hero__title {
    font-size: 35px;
  }


  .stats-card__item:nth-of-type(3) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 992px) {
  .cta__content {
    max-width: 100%;
    padding-inline: 0;
  }
  .cta__media {
    display: none;
  }
  .color-picker__card {
    display: none;
  }
  .color-swatches {
    width: 100%;
  }

  #producers :is(.swiper-button-next, .swiper-button-prev),
  .color-picker :is(.swiper-button-prev, .swiper-button-next) {
    display: none;
  }
}

@media (max-width: 768px) {
  .producers__logo {
    padding: 5px !important;
    border: none;
    height: 50px !important;
  }
  .producers__logo img {
    object-fit: contain;
    height: 100%;
  }
  .collection-card__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .collection-card__cld {
    top: -63px;
    height: 52px;
    width: 93px;
    right: 10px;
  }
  .margin-mobile-right {
    margin-right: -18px;
  }
  .color-swatch__dot {
    height: 90px;
  }

  .video-card__img{
    height: 400px;
  }
}

/* ==========================================================================
   Responsive — mobile
   ========================================================================== */

@media (max-width: 640px) {
  .stats-card__item {
    column-gap: 15px;
  }
  .stats-card__num {
    font-size: 15px;
  }
  .stats-card__label {
    font-size: 12px;
  }
  .stats-card__icon {
    width: 35px;
    height: 35px;
  }
  div.container {
    padding: 0 18px;
  }
  .section {
    padding: 30px 0;
  }

  .header__inner {
    height: 68px;
  }
  .logo__title {
    font-size: 14px;
  }
  .logo__subtitle {
    font-size: 10px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 32px;
  }
  section#categories {
    position: relative;
  }
  section#categories:after {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #fff;
    z-index: 1;
  }
  .hero__title {
    font-size: 30px;
  }
  .hero__text {
    font-size: 14.5px;
    margin-bottom: 26px;
    width: 70%;
  }
  .hero__buttons {
    flex-direction: column;
    width: 215px;
  }
  .hero__buttons .btn {
    width: 100%;
    padding-block: 10px;
  }

  .stats-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 23px 0;
    padding: 20px;
  }
  .stats-card__item {
    flex: 1 1 100%;
  }

  div.hero__features {
    display: none;
  }
  .feature {
    flex: 1 1 100%;
  }

  .section__head {
    gap: 10px;
    position: relative;
    z-index: 2;
  }
  .section__title {
    font-size: 18px;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .why-us__item {
    flex-direction: column;
    font-size: 12px;
    text-align: center;
    width: 130px;
  }

  .why-us__icon {
    height: 30px;
    width: auto;
  }

  .producers {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .cta__content h2 {
    font-size: 22px;
  }

  .cta__content .btn{
    width: 100%;
  }

  .category-card__img {
    height: 140px;
  }

  .collection-card__img {
    height: 140px;
  }

  .object-card__img {
    height: 140px;
  }


  .collection-cart__logo {
    display: none;
  }

  .section__link--mobile {
    display: block;
  }

  .section__link--text {
    display: none;
  }
  .section__link {
    font-size: 12px;
  }

  .why-us {
    gap: 10px;
  }  

}

@media (max-width:450px){
  .collection-card__img,
  .object-card__img{
    height: 170px;
  }

}

@media (max-width: 400px) {
  .color-swatch__dot {
    height: 65px;
  }
}

.color-swatch--active .color-swatch__dot {
  box-shadow:
    0 0 0 2px var(--white),
    0 0 0 4px var(--orange);
}

@media (min-width: 400px) and (max-width: 480px) {
  .color-swatch__dot {
    height: 75px;
  }
}


/* End */


/* Start:/bitrix/components/bitrix/player/templates/.default/style.min.css?1770909552122*/
td.popupmenu div.popupitem .playlist-edit{background-image:url(/bitrix/components/bitrix/player/images/playlist_edit.gif)}
/* End */
/* /bitrix/templates/aspro-allcorp3/css/new-main.css?178654662921097 */
/* /bitrix/components/bitrix/player/templates/.default/style.min.css?1770909552122 */
