@charset "utf-8";

.home_about {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.home_about_wrapper {
  display: flex;
  align-items: flex-start;
}
.home_about_text_wrapper {
  flex: 1;
  padding-right: 40px;
}
.home_about_title {
  font-size: 28px;
  font-weight: 600;
}
.home_about_description {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.6;
}
.home_about_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 46px;
  margin-top: 24px;
  background-color: #fff;
  border: solid 1px #dce2e8;
  border-radius: 48px;
  transition: border-color 0.15s ease;
}
.home_about_link_text {
  margin-right: 8px;
  font-weight: 500;
}
.home_about_link_img {
  width: 18px;
  height: auto;
}
.home_about_num_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 640px;
  margin-left: auto;
}
.home_about_num {
  width: 33.333%;
  padding-bottom: 40px;
}
.home_about_num_label {
  padding-right: 16px;
  font-size: 15px;
  font-weight: 700;
}
.home_about_num_text {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 700;
}
.home_about_regions_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 64px;
}
.home_about_regions_item {
  position: relative;
  width: calc(20% - 12.8px);
}
.home_about_regions_item_img {
  width: 100%;
  height: auto;
}
.home_about_regions_item_title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  transform: translateY(-50%);
}

@media screen and (max-width: 1080px) {
  .home_about_wrapper {
    display: block;
  }
  .home_about_text_wrapper {
    padding-right: 0;
  }
  .home_about_num_wrapper {
    width: 100%;
    margin: 40px 0 0;
  }
  .home_about_regions_list {
    margin-top: 14px;
  }
  .home_about_regions_item {
    width: calc(25% - 12px);
  }
}

@media screen and (max-width: 840px) {
  .home_about_regions_item {
    width: calc(33.333% - 10.666px);
  }
}

@media screen and (max-width: 760px) {
  .home_about_num {
    width: 50%;
  }
}

@media screen and (min-width: 641px) {
  .home_about_link:hover {
    border-color: #182127;
  }
}

@media screen and (max-width: 640px) {
  .home_about {
    margin-top: 40px;
    padding: 0 20px;
  }
  .home_about_regions_item {
    width: calc(50% - 8px);
  }
}

@media screen and (max-width: 480px) {
  .home_about_title {
    font-size: 24px;
  }
  .home_about_description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }
  .home_about_num_wrapper {
    margin: 32px 0 0;
  }
  .home_about_num {
    padding-bottom: 24px;
  }
  .home_about_num_label {
    font-size: 12px;
  }
  .home_about_num_text {
    font-size: 24px;
  }
  .home_about_regions_list {
    gap: 8px;
    margin-top: 16px;
  }
  .home_about_regions_item {
    width: calc(50% - 4px);
  }
  .home_about_regions_item_title {
    font-size: 14px;
  }
}
