@charset "utf-8";

.home_products {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 32px;
}
.home_products_title_wrapper {
  display: flex;
}
.home_products_title {
  font-size: 28px;
  font-weight: 600;
}
.home_products_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 46px;
  margin-top: 24px;
  border: solid 1px #dce2e8;
  border-radius: 48px;
  transition: border-color 0.15s ease;
}
.home_products_btn_text {
  margin-right: 8px;
  font-weight: 500;
}
.home_products_btn_img {
  width: 18px;
  height: auto;
}
.home_products_description {
  width: 50%;
  margin-left: auto;
  font-size: 16px;
  line-height: 1.6;
}
.home_products_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0 0 20px;
}
.home_products_list_item {
  width: calc(33.333% - 27px);
  position: relative;
}
.home_products_list_item_label {
  display: flex;
  align-items: center;
  position: absolute;
  top: -8px;
  left: -12px;
  transform: rotate(90deg);
  transform-origin: left;
}
.home_products_list_item_label_text {
  color: #a8b4bf;
  font-size: 12px;
  font-weight: 500;
}
.home_products_list_item_label_line {
  width: 36px;
  height: 1px;
  margin-left: 16px;
  background-color: #c5d0da;
}
.home_products_list_item_link {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 32px;
  background-color: #eff3f5;
}
.home_products_list_item_link_logo {
  width: auto;
  height: 40px;
  margin: 0 auto;
}
.home_products_list_item_link_title {
  padding: 4px 16px 0;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
.home_products_list_item_link_img {
  width: 100%;
  height: auto;
  margin-top: auto;
}
.home_products_list_item_link_hover_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  border-radius: 9px;
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.home_products_list_item_link_hover_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  background-color: #fff;
  border: solid 1px #dce2e8;
  border-radius: 48px;
}
.home_products_list_item_link_hover_btn_text {
  margin-right: 8px;
  font-weight: 500;
}
.home_products_list_item_link_hover_btn_img {
  width: 18px;
  height: auto;
}

@media screen and (max-width: 1040px) {
  .home_products_list_item_link_logo {
    height: 36px;
  }
}

@media screen and (max-width: 860px) {
  .home_products_list_item {
    width: calc(50% - 27px);
  }
  .home_products_list_item_link_logo {
    height: 40px;
  }
}

@media screen and (max-width: 760px) {
  .home_products_list_item_link_logo {
    height: 36px;
  }
}

@media screen and (min-width: 641px) {
  .home_products_btn:hover {
    border-color: #182127;
  }
  .home_products_list_item_link:hover .home_products_list_item_link_hover_bg {
    opacity: 1;
  }
}

@media screen and (max-width: 640px) {
  .home_products {
    margin: 40px auto 0;
    padding: 0 20px;
  }
  .home_products_title_wrapper {
    flex-direction: column;
  }
  .home_products_title_inner_wrapper {
    display: contents;
  }
  .home_products_title {
    order: 1;
  }
  .home_products_btn {
    order: 3;
  }
  .home_products_description {
    order: 2;
    width: 100%;
    margin-top: 24px;
  }
  .home_products_list_item {
    width: 100%;
  }
  .home_products_list_item_link_logo {
    height: 40px;
  }
}

@media screen and (max-width: 480px) {
  .home_products_title {
    font-size: 24px;
  }
  .home_products_description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }
}

@media screen and (max-width: 360px) {
  .home_products_list_item_link_logo {
    height: 36px;
  }
}
