@charset "UTF-8";
/* =========================================================
  용인수지노인복지관 : 공통 변수
========================================================= */
/* =========================================================
  용인수지노인복지관 : 공통 믹스인 (미디어쿼리)
========================================================= */
#overview .overview_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
#overview .img_box {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
#overview .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#overview .text_box {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(151, 158, 167, 0.3);
}
#overview .text_box .overview_detail {
  display: inline-grid;
  padding: 30px;
  row-gap: 20px;
  column-gap: 20px;
  align-self: stretch;
  grid-template-rows: repeat(8, fit-content(100%));
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-flow: row;
  border-radius: 20px;
  background: url("../img/bg.svg") right 30px bottom no-repeat, #f9f9f9;
}
#overview .text_box .overview_detail .item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-self: stretch;
}
#overview .text_box .overview_detail .item:nth-child(1) dt::before {
  background: url("../img/ico_01.svg") center no-repeat;
}
#overview .text_box .overview_detail .item:nth-child(2) dt::before {
  background: url("../img/ico_02.svg") center no-repeat;
}
#overview .text_box .overview_detail .item:nth-child(3) dt::before {
  background: url("../img/ico_03.svg") center no-repeat;
}
#overview .text_box .overview_detail .item:nth-child(4) dt::before {
  background: url("../img/ico_04.svg") center no-repeat;
}
#overview .text_box .overview_detail .item:nth-child(5) dt::before {
  background: url("../img/ico_05.svg") center no-repeat;
}
#overview .text_box .overview_detail .item:nth-child(6) dt::before {
  background: url("../img/ico_06.svg") center no-repeat;
}
#overview .text_box .overview_detail .item:nth-child(7) dt::before {
  background: url("../img/ico_07.svg") center no-repeat;
}
#overview .text_box .overview_detail .item:nth-child(8) dt::before {
  background: url("../img/ico_08.svg") center no-repeat;
}
#overview .text_box .overview_detail dt {
  width: 100px;
  color: #2a5cad;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
#overview .text_box .overview_detail dt::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
#overview .text_box .overview_detail dd {
  color: #333;
  word-break: keep-all;
}

@media (max-width: 1440px) {
  #overview .img_box {
    width: 80%;
  }
}
@media (max-width: 1280px) {
  #overview .img_box {
    width: 100%;
    height: 550px;
  }
}
@media (max-width: 1024px) {
  #overview .overview_wrap {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
  #overview .img_box {
    position: relative;
    left: initial;
    top: initial;
    transform: none;
    z-index: 0;
    height: auto;
  }
  #overview .text_box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  #overview .overview_wrap {
    gap: 20px;
  }
  #overview .logo {
    width: 80%;
  }
  #overview .text_box {
    padding: 20px;
  }
  #overview .text_box .overview_detail .item {
    gap: 10px;
    flex-direction: column;
  }
}