.company_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10rem;
  width: 100%;
  max-width: 1100px;
  padding: 2rem 0 0 0;
  margin: 0 auto;
}
.company_wrap .in_con {
  display: flex;
  justify-content: space-between;
  gap: 0 80px;
  width: 100%;
  text-align: left;
  padding: 0;
  margin: 0;
}
.company_wrap .in_con img {
  max-width: 100%;
}
.company_wrap .box {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  gap: 6rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.company_wrap .box .pic {
  min-width: 40%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.company_wrap .box img {
  width: 100%;
  transition: all 0.3s;
}
.company_wrap .box img:hover {
  transform: scale(1.2);
}
.company_wrap .contents {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  padding: 0;
  margin: 0;
  font-weight: 500;
  word-break: keep-all;
  word-wrap: break-word;
}
.company_wrap .contents img {
  width: 100%;
  padding: 1.5rem 0 3.5rem 0;
}
.company_wrap .contents .tt {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 2rem;
  color: #111111;
  word-break: keep-all;
  word-wrap: break-word;
}
.company_wrap .contents .tt span{
  font-weight: 800;
  /* color: var(--bs-primary); */
}
.company_wrap .contents .con {
  padding: 0;
  margin: 0;
  font-family: "Pretendard";
  font-weight: 400;
  font-size: 1.05rem;
  color: #505050;
  line-height: 1.6;
  word-break: keep-all;
  word-wrap: break-word;
}
.company_wrap .contents p{
  padding: 0;
  margin: 0;
}
.company_wrap .contents .right {
  width: 100%;
  text-align: right;
  padding: 0 1rem 0 0;
}
@media (max-width: 991.98px) {
  .company_wrap .in_con {
    gap: 0 40px;
  }
  .company_wrap .box .pic {
    min-width: 30%;
  }
}
@media (max-width: 767.98px) {
  .company_wrap {
    padding: 0;
  }
  .company_wrap .in_con {
    flex-direction: column;
    gap: 2rem 0;
  }
  .company_wrap .box {
    flex-direction: column;
    gap: 3rem;
  }
  .company_wrap .box .pic {
    width: 100%;
    min-width: 100%;
    aspect-ratio: 2 / 1.5;
    overflow: hidden;
  }
  .company_wrap .box .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .company_wrap .contents .tt {
    font-size: 1.4rem;
  }
  .company_wrap .contents .con {
    font-size: 1.05rem;
  }
}

.bg_com{
  background: rgba(var(--bs-primary-rgb), 0.1);
}
.com_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1100px;
  padding: 4rem 2rem;
  margin: 5rem auto 0 auto;
  text-align: center;
  transition: all 0.2s;
}
.com_wrap .tt {
  display: flex;
  flex-direction: column;
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--bs-sub);
}
.com_wrap .tt span {
  font-weight: 800;
}
.com_wrap .items_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.com_wrap .items_wrap .items {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  width: calc(33% - 1.5rem);
  padding: 1rem 1.5rem;
  margin: 0;
  background: rgba(255,255,255, 0.5);
  /* border: 1px solid rgba(var(--bs-primary-rgb), 0.15); */
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(var(--bs-primary-rgb), 0.1);
  transition: all .3s;
}
.com_wrap .items_wrap .items:hover {
  background: rgba(var(--bs-primary-rgb), 0.08);
  box-shadow: 0 2px 5px rgba(var(--bs-primary-rgb), 0.2);
}
.com_wrap .items_wrap .items .icon span{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  font-size: 2.0rem;
  color: rgba(var(--bs-primary-rgb), 0.5);
  padding: 1rem;
  /* background: rgba(var(--bs-primary-rgb), 0.3); */
  /* border-radius: 50%; */
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' 0,
  'opsz' 24
}
.com_wrap .items_wrap .items:hover .icon span{
  color: rgba(var(--bs-primary-rgb), 0.8);
}
.com_wrap .items_wrap .items .con{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.com_wrap .items_wrap .items .con .tt{
  font-size: 0.85rem;
  font-weight: 700;
}
.com_wrap .items_wrap .items .con .txt{
  font-size: 0.8rem;
  text-align: left;
}
@media (max-width: 991.98px) {
  .com_wrap .items_wrap {
    gap: 1.5rem;
  }
  .com_wrap .items_wrap .items {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 767.98px) {
  .com_wrap .items_wrap {
    gap: 0.5rem;
  }
  .com_wrap .tt {
    font-size: 1.35rem;
  }
  .com_wrap .items_wrap .items {
    width: calc(100%);
  }
  .com_wrap .items_wrap .items .icon span{
    width: 50px;
    height: 50px;
    font-size: 2.2rem;
  }
  .com_wrap .items_wrap .items .con{
    gap: 0.2rem;
  }
}
