.image-set {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: var(--indent-sm);
}

.image-set__item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xs);
  overflow: hidden;
}
.image-set__item:first-child {
  grid-column: 1/2;
  grid-row: 1/2;
}
.image-set__item:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.image-set__item:nth-child(3) {
  grid-column: 1/2;
  grid-row: 2/3;
}
.image-set__item:last-child {
  grid-column: 2/3;
  grid-row: 2/3;
}
.image-set__item picture {
  width: 100%;
  height: 100%;
  display: block;
}
.image-set__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.hero {
  position: relative;
  width: 100%;
  max-height: 840px;
}

.hero__image-block {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--cl-background);
}
.hero__image-block img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

.hero__info {
  padding: 20px;
  width: 100%;
  min-height: 104px;
  max-width: 700px;
  box-sizing: border-box;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__info-content {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  gap: 2px;
  background: var(--cl-dark);
  border: 1px solid var(--cl-dark);
  border-radius: var(--radius-xs);
}

.hero__title {
  margin: 0;
  min-height: 100%;
  padding: var(--indent-main);
  box-sizing: border-box;
  flex: 0 0 calc(50% - 1px);
  font-family: "Inter", "Arial", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--cl-main);
  border-radius: var(--radius-xs);
  color: var(--cl-white);
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-family: "Inter", "Arial", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    flex: 0 0 fit-content;
  }
}

.hero__description {
  padding: var(--indent-main);
  box-sizing: border-box;
  flex: 1 1 auto;
  background: var(--cl-main);
  border-radius: var(--radius-xs);
  font-family: "Inter", "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--cl-white);
}
@media screen and (min-width: 1000px) {
  .hero__description {
    font-family: "Inter", "Arial", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
  }
}
.hero__description p {
  margin: 0 0 var(--indent-m);
  padding: 0;
}
.hero__description p:last-child {
  margin-bottom: 0;
}

.hero__button {
  align-self: stretch;
  display: flex;
  flex: 0 0 calc(50% - 1px);
}
@media screen and (min-width: 768px) {
  .hero__button {
    flex: 0 0 100px;
  }
}

.hero__button-link {
  height: 100%;
}

.details {
  display: grid;
}
@media screen and (min-width: 768px) {
  .details {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    row-gap: 30px;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .details {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}

.details__tip {
  margin-bottom: 40px;
  grid-row: 1/2;
  grid-column: 1/2;
}
@media screen and (min-width: 768px) {
  .details__tip {
    margin-bottom: 0;
  }
}

.details__images-set {
  margin-bottom: 110px;
  grid-row: 2/3;
  grid-column: 1/2;
}
@media screen and (min-width: 768px) {
  .details__images-set {
    margin-bottom: 0;
    grid-row: 1/3;
    grid-column: 2/3;
  }
}

.details__content {
  grid-row: 5/6;
  grid-column: 1/2;
}
@media screen and (min-width: 768px) {
  .details__content {
    grid-row: 2/3;
    grid-column: 1/2;
    align-self: end;
  }
}

.details__description {
  font-family: "Inter", "Arial", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--cl-gray);
}
@media screen and (min-width: 768px) {
  .details__description {
    font-family: "Inter", "Arial", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
  }
}
.details__description > * {
  margin: 0 0 var(--indent-m);
  padding: 0;
}
.details__description > *:last-child {
  margin-bottom: 0;
}

.colors__menu {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--indent-xs);
}
@media screen and (min-width: 768px) {
  .colors__menu {
    gap: var(--indent-main);
  }
}

.colors__tabs {
  margin-bottom: 50px;
}

.colors__image-block {
  width: 100%;
  max-width: 670px;
  height: 100%;
  overflow: hidden;
}
.colors__image-block img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.colors__link {
  width: -moz-fit-content;
  width: fit-content;
}

.home__promo {
  margin-bottom: 80px;
}/*# sourceMappingURL=home.css.map */
