@charset "UTF-8";

.title-wrap {
  background-image: url(../img/products/main.jpg);
  background-position: center;
  background-size: cover;
}

/* products */
.products {
  width: 80%;
  margin: 0 auto;
  padding: 80px 0 0 0;
}
.products-title-wrap {
  margin: 0;
}
.products-title-inner {
  position: relative;
  padding-top: 20px;
}
.products-title-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: #d2464b;
}
.products-title {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.1;
  margin: 0;
}
.products-title-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  color: #6f767d;
  margin: 10px 0 0 0;
  line-height: 1.4;
}
.products-title-txt {
  font-size: clamp(12px, 1.1vw, 16px);
  line-height: 1.8;
  margin-top: 40px;
}
.products-ul {
  box-sizing: border-box;
  width: 100%;
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: stretch;
}
.products-li a {
  height: 100%;
  min-height: 230px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.products-li a:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.products-icon {
  width: 80%;
}
.icon {
  width: 100%;
  height: auto;
  display: block;
  color: #26303a;
  flex-shrink: 0;
}
.icon * {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-miterlimit: 10;
}
.products-name-wrap {
  margin-top: auto;
  padding-top: 30px;
  margin-left: 0;
  display: block;
}
.products-name {
  font-family: "Inter", sans-serif;
  font-size: clamp(12px, 1.2vw, 17px);
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}
.products-name-sub {
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: #6f767d;
  margin: 8px 0 0 0;
}

/* selection */
.selection {
  width: 80%;
  margin: 100px auto 0 auto;
}
.selection-ul {
  box-sizing: border-box;
  width: 100%;
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}
.selection-li {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  padding: 50px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.selection-li:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.logo-tranTixxii {
  width: 60%;
  max-width: 270px;
  margin: 0 auto;
}
.logo-mako {
  width: 60%;
  max-width: 230px;
  margin: 0 auto;
}
.logo-frost {
  width: 60%;
  max-width: 220px;
  margin: 0 auto;
}
.logo-polytron {
  width: 60%;
  max-width: 275px;
  margin: 0 auto;
}
.logo-astec {
  width: 36%;
  max-width: 150px;
  margin: 0 auto;
}
.logo-celight {
  width: 60%;
  max-width: 160px;
  margin: 0 auto;
}

@media screen and (max-width: 1140px) {
  /* products */
  .products {
    width: 90%;
  }
  .products-ul {
    grid-template-columns: repeat(3, 1fr);
  }
  /* selection */
  .selection {
    width: 90%;
  }
  .selection-ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-tranTixxii {
    width: 50%;
  }
  .logo-mako {
    width: 50%;
  }
  .logo-frost {
    width: 50%;
  }
  .logo-polytron {
    width: 50%;
  }
  .logo-astec {
    width: 30%;
  }
  .logo-celight {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  /* products */
  .products {
    padding: 60px 0 0 0;
  }
  .products-title-wrap {
    margin: 0;
  }
  .products-ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-li a {
    min-height: 170px;
    padding: 15px;
    transition: none;
  }
  .products-li a:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  }
  .products-name-wrap {
    padding-top: 20px;
  }
  .products-name-sub {
    line-height: 1.5;
  }
  .products-name-sub {
    line-height: 1.3;
    margin: 5px 0 0 0;
  }
  /* selection */
  .selection {
    margin: 60px auto 0 auto;
  }
  .logo-tranTixxii {
    width: 80%;
  }
  .logo-mako {
    width: 80%;
  }
  .logo-frost {
    width: 80%;
  }
  .logo-polytron {
    width: 80%;
  }
  .logo-astec {
    width: 50%;
  }
  .logo-celight {
    width: 80%;
  }
}