@charset "utf-8";

.cross__wrap {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.cross__item {
  padding-bottom: 60px;
  border-bottom: 1px solid #E1E6E2;
}
.cross__item:nth-of-type(3) {
  border-color: rgba(255, 255, 255, 0.9);
}
.cross__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.cross__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media screen and (min-width: 768px) {
  .cross__top {
    flex-direction: row;
  }
}


.cross__top-img {
  aspect-ratio: 472 / 351;
  width: min(100%, 472px);
  height: auto;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .cross__top-img {
    width: min(calc(472 / 1366 * 100vw), 472px);
  }
}
.cross__top-list {
  padding: 25px 20px;
  background: #fff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 21px;
}
@media screen and (min-width: 768px) {
  .cross__top-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 21px 60px;
    width: 100%;
  }
}
.cross__top-list-text {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cross__top-list-text::before {
  content: "";
  background: url('../images/icon-check.svg') center / contain no-repeat;
  width: 22px;
  height: 22px;

}

.effect__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}
@media screen and (min-width: 768px) {
  .effect__wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.effect__img {
  aspect-ratio: 225 / 164;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.specifications__wrap {
  margin-top: 67px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.specifications__item {
  padding: 36px 20px;
  background: #fff;
  display: grid;
  grid-template-rows: 1fr;
}
@media screen and (min-width: 768px) {
  .specifications__item {
    padding: 36px 60px 36px 0;
    grid-template-rows: unset;
    grid-template-columns: 1fr calc(424 / 968 * 100%);
    justify-content: end;
    align-items: center
  }
}

.specifications__item img {
  height: auto;
  margin-inline: auto;
}

.specifications__item:nth-of-type(1) {
  gap: 48px;
}
.specifications__item:nth-of-type(1) img {
  width: min(100%, 424px);        
}
@media screen and (min-width: 768px) {
  .specifications__item:nth-of-type(1) img {
    width: 955;
  }
}
@media screen and (min-width: 1300px) {
  .specifications__item:nth-of-type(1) img {
    width: min(calc(424 / 1366 * 100vw), 424px);
  }
  }
}

.specifications__item:nth-of-type(2) {
  gap: 90px;
}
.specifications__item:nth-of-type(2) img {
  width: min(100%, 355px);
}
@media screen and (min-width: 768px) {
  .specifications__item:nth-of-type(2) img {
    width: 95%;
  }
}
@media screen and (min-width: 1200px) {
  .specifications__item:nth-of-type(2) img {
    width: min(calc(355 / 1366 * 100vw), 355px);
  }
}

.specifications__item:nth-of-type(3) {
  gap: 36px;
}
.specifications__item:nth-of-type(3) img {
  width: min(100%, 464px);
}
@media screen and (min-width: 768px) {
  .specifications__item:nth-of-type(3) img {
    width: 95%;
  }
}
@media screen and (min-width: 1350px) {
  .specifications__item:nth-of-type(3) img {
    width: min(calc(464 / 1366 * 100vw), 464px);
  }
}

.specifications__title {
  border-bottom: 1px solid #E1E6E2;
}


.industry__wrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}
@media screen and (min-width: 768px) {
  .industry__wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry__img {
  aspect-ratio: 225 / 164;
  width: 100%;
  height: auto;
  object-fit: cover;
}






