html {
  scroll-behavior: smooth;
}

.visual_wrap {
  position: relative;
  width: 100%;
  /* height: 800px; */
  padding: 0;
  margin: 0;
  background: #111;
  overflow: hidden;
}
.visual_wrap .page_down {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 20;
}
.visual_wrap .page_down:hover {
  animation-name: bounce;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.visual_wrap .swiper {
  width: 100%;
  height: 800px;
  z-index: 1;
  overflow: hidden;
}
.visual_wrap .swiper-slide {
  position: relative;
  background: #111;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.2s;
  overflow: hidden;
}
.visual_wrap .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 5%;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.visual_wrap .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
}
.visual_wrap .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 3px solid var(--color-main);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.visual_wrap .swiper-button-prev,
.visual_wrap .swiper-button-next {
  display: none;
}
.visual_wrap .swiper-slide .bg {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform-origin: center;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition-duration: 6s;
  transition-delay: 0.5s;
  z-index: 1;
}
.visual_wrap .swiper-slide .center_wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 55%;
  left: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  transition: 0.5s;
  opacity: 0;
}
.visual_wrap .swiper-slide .text_wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 50%;
  right: 0;
  width: 40%;
  text-align: right;
  color: #fff;
  word-break: keep-all;
  word-wrap: break-word;
  transition: 0.5s;
  z-index: 20;
}
.visual_wrap .swiper .text_wrap h1 {
  font-family: "GmarketSansBold", "Jost", "OneMobileTitle", "SCoreDream",
    system-ui, -apple-system, "Noto Sans", sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--color-main);
  margin-top: 3rem;
  padding-right: 15%;
  opacity: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.visual_wrap .swiper .text_wrap h1 strong {
  font-weight: 900;
  font-size: 4rem;
}
.visual_wrap .swiper .text_wrap .con {
  position: relative;
  width: 100%;
  font-weight: 400;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  word-break: keep-all;
  word-wrap: break-word;
  padding: 3rem 15% 0 0;
  margin-top: 2rem;
  opacity: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.visual_wrap .swiper .text_wrap .con::after {
  position: absolute;
  top: 0.5rem;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(var(--color-main-rgb), 0.5);
}
.visual_wrap .swiper .text_wrap .con strong {
  display: inline-block;
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  margin: 0;
  padding: 0 0 1rem 0;
}
.visual_wrap .swiper .text_wrap .con strong span{
  font-weight: 100;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 .5rem;
}
.visual_wrap .swiper .text_wrap .bt {
  padding: 2rem 15% 0 0;
  margin-top: 3rem;
  opacity: 0;
}
.visual_wrap .swiper .text_wrap a {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 1);
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  padding: 0.3rem 2rem;
  transition: all 0.2s;
}
.visual_wrap .swiper .text_wrap a:hover {
  color: rgba(255, 255, 255, 1);
  background-color: var(--color-point);
  border: 1px solid var(--color-point);
}
.visual_wrap .swiper-slide .img_wrap {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  padding-left: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
  z-index: 1;
}
.visual_wrap .swiper-slide-active .bg {
  opacity: 1;
  transition-duration: 6s;
  transition-delay: 0.2s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.visual_wrap .swiper-slide-active .center_wrap {
  opacity: 1;
  top: 30%;
  transition-duration: 2s;
  transition-delay: 1.2s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.visual_wrap .swiper-slide-active .text_wrap h1 {
  opacity: 1;
  margin-top: 0;
  transition-delay: 2s;
  transition-duration: 0.7s;
}
.visual_wrap .swiper-slide-active .text_wrap .con {
  opacity: 1;
  margin-top: 0;
  transition-delay: 2.5s;
  transition-duration: 0.7s;
}
.visual_wrap .swiper-slide-active .text_wrap .bt {
  opacity: 1;
  margin-top: 0;
  transition-delay: 3s;
  transition-duration: 0.7s;
}
.visual_wrap .swiper-slide-active .img_wrap {
  opacity: 1;
  padding-left: 55%;
  transition-delay: 1.5s;
  transition-duration: 1s;
}
@media (max-width: 991.98px) {
  .visual_wrap .swiper-slide .text_wrap {
    left: 0;
    width: 70%;
    margin: 0 auto;
  }
  .visual_wrap .swiper .text_wrap h1,
  .visual_wrap .swiper .text_wrap .con,
  .visual_wrap .swiper .text_wrap .bt {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .visual_wrap .swiper-slide .img_wrap img {
    transform: scale(0.8);
  }
  .visual_wrap .swiper-slide-active .img_wrap {
    padding-left: 40%;
  }
}
@media (max-width: 767.98px) {
  .visual_wrap .swiper {
    height: 550px;
  }
  .visual_wrap .swiper-pagination {
    bottom: 5%;
  }
  .visual_wrap .swiper-slide .bg {
    /* background-image: url("/img/main_bg_m.jpg?v=0"); */
  }
  .visual_wrap .swiper-slide .center_wrap img {
    max-width: 60%;
  }
  .visual_wrap .swiper-slide .text_wrap {
    text-align: center;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem;
  }
  .visual_wrap .swiper .text_wrap h1 {
    font-size: 2rem;
  }
  .visual_wrap .swiper .text_wrap h1 strong {
    font-size: 2rem;
  }
  .visual_wrap .swiper .text_wrap > div {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .visual_wrap .swiper .text_wrap .con {
    width: 100%;
    text-align: center;
  }
  .visual_wrap .swiper-slide .img_wrap {
    margin-bottom: -3rem;
  }
  .visual_wrap .swiper-slide .img_wrap img {
    transform: scale(0.6);
  }
  .visual_wrap .swiper-slide-active .img_wrap {
    justify-content: center;
    text-align: center;
    padding-left: 0;
    margin: 0 auto;
  }
  .visual_wrap .swiper-slide-active .center_wrap {
    top: 35%;
  }
  .visual_wrap .page_down {
    display: none;
  }
}

.product_wrap {
  padding: 60px 0;

}
.product_wrap > .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}
.product_wrap h1 {
  font-family: "GmarketSansBold", "Roboto", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  color: #0f0f0f;
}
.product_wrap h1 span {
  color: var(--color-main);
}
.product_wrap .tt_str {
  padding: 0 10%;
  margin: 0 auto;
  font-family: "Pretendard", "GmarketSansBold", "Roboto", system-ui,
    -apple-system, "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-align: center;
  color: #b0b0b0;
  word-break: keep-all;
  word-wrap: break-word;
}
.product_wrap > .items {
  display: flex;
  justify-content: center;
  gap: 2rem 0;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  margin: 4rem auto 0 auto;
}
.product_wrap .prod {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  width: 300px;
  text-align: center;
  padding: .5rem .5rem 1rem .5rem;
  word-break: keep-all;
  word-wrap: break-word;
  transition: .2s;
}
.product_wrap .prod:hover{
  background-color: var(--color-main);
  margin: -1.5rem 0 0 0;
}
.product_wrap .prod .pic{
  background: #fff;
  padding: .5rem;
}
.product_wrap .prod .pic img {
  width: 100%;
}
.product_wrap .prod .tt {
  font-family: "Roboto";
  font-size: 1.1rem;
  font-weight: 800;
  padding-top: 1rem;
}
.product_wrap .prod .txt {
  font-size: .7rem;
  color: var(--bs-gray-500);
  padding: 0 20px;
}
.product_wrap .prod:hover .tt,
.product_wrap .prod:hover .txt{
  color: #fff;
}
@media (max-width: 991.98px) {
  .product_wrap > .items {
    flex-wrap: wrap;
    margin: 3rem auto 0 auto;
  }
  .product_wrap .prod {
    width: 33.33%;
  }
}
@media (max-width: 767.98px) {
  .product_wrap h1 {
    font-size: 1.4rem;
  }
  .product_wrap > .items {
    margin: 2rem auto 0 auto;
  }
  .product_wrap .prod {
    width: 50%;
    gap: .5rem;
  }
  .product_wrap .prod .tt {
    font-weight: 600;
    padding-top: 0;
  }
}



.business_wrap {
  padding: 60px 0;
  background-color: var(--bs-gray-100);
}
.business_wrap > .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}
.business_wrap h1 {
  font-family: "GmarketSansBold", "Roboto", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  color: #0f0f0f;
}
.business_wrap h1 span {
  color: var(--color-main);
}
.business_wrap .tt_str {
  padding: 0 10%;
  margin: 0 auto;
  font-family: "Pretendard", "GmarketSansBold", "Roboto", system-ui,
    -apple-system, "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-align: center;
  color: #b0b0b0;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 767.98px) {
  .business_wrap .tt_str br {
    /* display: none; */
  }
}
.business_wrap > .items {
  display: flex;
  justify-content: center;
  gap: 1rem 60px;
  width: 100%;
  max-width: 1100px;
  padding: 0;
  margin: 4rem auto 0 auto;
}
.business_wrap .ca {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem 60px;
  width: 200px;
  word-break: keep-all;
  word-wrap: break-word;
}
.business_wrap .ca > div {
  width: 100%;
}
.business_wrap .ca .icon{
  /* text-align: right; */
  padding-bottom: 1rem;
}
.business_wrap .ca img {
  width: 60px;
  transition-duration: 0.3s;
}
.business_wrap .ca:hover img {
  /* margin-top: -10px; */
  transform: scale(1.1);
}
.business_wrap .ca .no {
  font-family: "Pretendard", "GmarketSansBold", "Roboto", system-ui,
    -apple-system, "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  color: #c4c4c4;
}
.business_wrap .ca .no span {
  font-weight: 800;
  color: var(--color-main);
  margin-left: 5px;
}
.business_wrap .ca .tt {
  position: relative;
  font-family: "GmarketSansMedium", "Roboto", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #222222;
  padding: 30px 0 20px 0;
  transition: all 0.2s;
}
.business_wrap .ca:hover .tt {
  font-family: "GmarketSansBold";
  color: var(--color-main);
}
.business_wrap .ca .tt::before {
  position: absolute;
  content: "";
  left: 0;
  top: 1rem;
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  z-index: 1;
}
.business_wrap .ca .tt::after {
  position: absolute;
  content: "";
  left: 0;
  top: 1rem;
  width: 90px;
  height: 1px;
  background: var(--color-main);
  z-index: 1;
  transition: all 0.2s;
}
.business_wrap .ca:hover .tt::after {
  width: 100%;
}
.business_wrap .ca .txt {
  font-family: "Pretendard", "GmarketSansBold", "Roboto", system-ui,
    -apple-system, "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #898989;
  padding: 20px 0 0 0;
}
@media (max-width: 991.98px) {
  .business_wrap > .items {
    gap: 1rem 50px;
    padding: 0 30px;
  }
  .business_wrap .ca {
    gap: 1rem 30px;
  }
  .business_wrap .ca img {
    width: 50px;
  }
}
@media (max-width: 767.98px) {
  .business_wrap h1 {
    font-size: 1.4rem;
  }
  .business_wrap > .items {
    flex-wrap: wrap;
    gap: 60px;
    padding: 0 2rem;
  }
  .business_wrap .ca {
    width: 40%;
  }
  .business_wrap .ca img {
    width: 55px;
  }
  /* .business_wrap .ca .txt br {
    display: none;
  } */
}

.portfolio_wrap {
  padding: 60px 0;
  background: #f5f5f5;
}
.portfolio_wrap > .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}
.portfolio_wrap h1 {
  font-family: "GmarketSansBold", "Roboto", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  color: #0f0f0f;
}
.portfolio_wrap .tt_str {
  padding: 0 10%;
  margin: 0 auto;
  font-family: "Pretendard", "GmarketSansBold", "Roboto", system-ui,
    -apple-system, "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-align: center;
  color: #b0b0b0;
  word-break: keep-all;
  word-wrap: break-word;
}
@media (max-width: 767.98px) {
  .portfolio_wrap h1 {
    font-size: 1.4rem;
  }
}
.portfolio_wrap .ca_group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 1100px;
  padding: 0;
  margin: 2rem auto 0 auto;
}
.portfolio_wrap .ca_group .tt {
  display: flex;
  justify-content: space-between;
}
.portfolio_wrap .ca_group .tt h6 {
  position: relative;
  font-family: "GmarketSansMedium", "Roboto", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  color: #111111;
  padding: 0 0 0 25px;
  margin: 0;
}
.portfolio_wrap .ca_group .tt h6::after {
  position: absolute;
  content: "";
  left: 0;
  background-image: url("/img/logo_icon.svg");
  background-position: center center;
  background-size: cover;
  width: 20px;
  height: 18px;
}
.portfolio_wrap .ca_group .tt a {
  font-family: "Pretendard", "GmarketSansMedium", "Roboto", system-ui,
    -apple-system, "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  color: #626262;
}
.portfolio_wrap .ca_group .tt a:hover {
  color: var(--color-main);
}
.portfolio_wrap .ca_group .list {
  display: flex;
  justify-content: flex-start;
  gap: 0.4rem;
  overflow: hidden;
}
.portfolio_wrap .ca_group .list > div {
  width: 270px;
  min-width: 270px;
  /* height: 200px; */
  aspect-ratio: 4 / 3; /* 16:11 비율 지정 */
  background: #fff;
  border: 1px solid #e4e4e4;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: all 0.2s;
}
.portfolio_wrap .ca_group .list > div:hover {
  border: 1px solid var(--color-main);
}
.portfolio_wrap .ca_group .list > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.2s;
}
.portfolio_wrap .ca_group .list > div:hover img {
  transform: scale(1.1);
}
.portfolio_wrap .ca_group .list > div a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .portfolio_wrap {
    padding: 50px 20px;
  }
  .portfolio_wrap .ca_group .list {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  .portfolio_wrap .ca_group .list > div {
    width: 49%;
    min-width: auto;
    /* height: 120px; */
  }
}

.cs_wrap {
  position: relative;
  width: 100%;
  background-color: #e1e7ea;
  padding: 150px 0 0 0;
  transition: all 0.2s;
}
.cs_wrap::before {
  position: absolute;
  content: "";
  width: 55%;
  height: 240px;
  left: 0;
  bottom: -50px;
  background-image: url("/img/bg_blue.gif?v=1");
  z-index: 2;
}
.cs_wrap::after {
  position: absolute;
  content: "";
  width: 57.5%;
  height: 240px;
  left: 0;
  bottom: -90px;
  background-image: url("/img/bg_dot.png");
  z-index: 1;
}
.cs_wrap > .items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1100px;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .cs_wrap::before {
    width: 50%;
  }
  .cs_wrap::after {
    width: 52.5%;
  }
}
@media (max-width: 991.98px) {
  .cs_wrap {
    padding: 80px 0;
  }
  .cs_wrap::before {
    display: none;
  }
  .cs_wrap::after {
    display: none;
  }
  .cs_wrap > .items {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .cs_wrap {
    padding: 60px 0;
  }
}

.cs_wrap .eq {
  position: relative;
  width: 60%;
  height: 580px;
}
.cs_wrap .eq .con {
  padding: 0 0 0 180px;
  margin: 0;
}
.cs_wrap .eq h1 {
  font-family: "GmarketSansBold";
  font-size: 3.2rem;
  color: #222;
}
.cs_wrap .eq .opt {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  padding: 0;
  margin: 40px 0 0 0;
}
.cs_wrap .eq .opt li {
  width: 48%;
  list-style: none;
  background-image: url("/img/icon_chk.png");
  background-position: left center;
  background-repeat: no-repeat;
  padding: 0 0 0 26px;
  margin: 0;
  font-family: "GmarketSansMedium";
  font-size: 0.85rem;
  color: #444444;
}
.cs_wrap .eq .opt li:hover {
  color: #0071b7;
}
.cs_wrap .eq .img {
  position: absolute;
  z-index: 10;
}
.cs_wrap .eq .img img {
  transition: all 0.2s;
}
@media (max-width: 1200px) {
  .cs_wrap .eq .img img {
    width: 85%;
  }
}
@media (max-width: 991.98px) {
  .cs_wrap .eq {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
  }
  .cs_wrap .eq .con {
    padding: 0 0 0 40%;
    margin: 0;
  }
  .cs_wrap .eq .img {
    position: relative;
  }
  .cs_wrap .eq .img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 200px;
    left: 0;
    bottom: 0px;
    background-image: url("/img/bg_blue.gif?v=1");
    z-index: -1;
  }
  .cs_wrap .eq .img::after {
    position: absolute;
    content: "";
    width: 70%;
    height: 200px;
    left: 0;
    bottom: -30px;
    background-image: url("/img/bg_dot.png");
    z-index: -2;
  }
  .cs_wrap .eq .img img {
    width: 60%;
    padding-left: 20px;
  }
}
@media (max-width: 767.98px) {
  .cs_wrap .eq h1 {
    font-size: 2rem;
  }
  .cs_wrap .eq .opt {
    gap: 0.5rem 0;
    margin: 30px 0 0 0;
  }
  .cs_wrap .eq .opt li {
    width: 100%;
  }
  .cs_wrap .eq .img::before {
    width: 88%;
    height: 150px;
  }
  .cs_wrap .eq .img::after {
    width: 95%;
    height: 150px;
    bottom: -30px;
  }
  .cs_wrap .eq .img img {
    width: 88%;
    padding-left: 10px;
  }
}

.cs_wrap .cs {
  width: 40%;
  padding-left: 50px;
}
.cs_wrap .cs h1 {
  position: relative;
  font-family: "GmarketSansBold";
  font-size: 1.5rem;
  color: #222;
}
.cs_wrap .cs h1::after {
  position: absolute;
  content: "";
  top: -30px;
  left: 0;
  width: 30px;
  height: 1px;
  background: #222;
}
.cs_wrap .cs p {
  padding: 10px 0 20px 0;
  font-family: "GmarketSansMedium";
  font-size: 0.7rem;
  color: #b4b4b4;
}
.cs_wrap .cs .cs_list {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem 0 0 50px;
  margin: 0;
  height: calc(100% - 140px);
}
.cs_wrap .cs .cs_list::after {
  position: absolute;
  content: "";
  top: 60px;
  left: 20px;
  width: 1px;
  height: 90%;
  background: #c4d0d6;
  z-index: 1;
}
.cs_wrap .cs .items {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  padding: 30px 20px;
  border-bottom: 1px solid #d7dfe3;
  transition: all 0.2s;
}
/* .cs_wrap .cs .items.active,
.cs_wrap .cs .items:hover {
  border-bottom: none;
  border-radius: 0.5rem;
  background-color: #f8f8f8;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.05);
} */
.cs_wrap .cs .items.active {
  padding: 30px 20px;
  border-bottom: none;
  border-radius: 0.5rem;
  background-color: #f8f8f8;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.05);
}
.cs_wrap .cs .items::before {
  position: absolute;
  content: "";
  top: 40px;
  left: -33px;
  width: 7px;
  height: 7px;
  background: #e6ebed;
  border: 2px solid #c4d0d6;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.2s;
}
.cs_wrap .cs .items::after {
  display: none;
  position: absolute;
  content: "";
  top: 40px;
  left: -33px;
  width: 7px;
  height: 7px;
  background: #c82b1d;
  border-radius: 100%;
  z-index: 3;
  transition: all 0.2s;
}
.cs_wrap .cs .items.active::before {
  top: 36.5px;
  left: -36.5px;
  width: 14px;
  height: 14px;
  border: 1px solid #c82b1d;
}
.cs_wrap .cs .items.active::after {
  display: block;
}
.cs_wrap .cs .items ul {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.cs_wrap .cs .items ul::after {
  display: none;
  position: absolute;
  content: "";
  top: 20px;
  left: -24px;
  width: 10px;
  height: 10px;
  background: #f8f8f8;
  transform: rotate(45deg);
}
.cs_wrap .cs .items.active ul::after {
  display: block;
}
.cs_wrap .cs .items li {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "GmarketSansMedium";
  font-size: 0.8rem;
  transition: all 0.2s;
}
.cs_wrap .cs .items li.name {
  font-size: 0.7rem;
}
.cs_wrap .cs .items li.value {
  font-family: "Roboto", system-ui, -apple-system, "Noto Sans", sans-serif;
  letter-spacing: -0.5px;
}
.cs_wrap .cs .items li.str {
  font-size: 0.65rem;
  color: #989898;
  padding-top: 10px;
}
.cs_wrap .cs .items.active li.name,
.cs_wrap .cs .items:hover li.name {
  font-size: 0.8rem;
}
.cs_wrap .cs .items.active li.value,
.cs_wrap .cs .items:hover li.value {
  font-size: 1.3rem;
}
.cs_wrap .cs .items .icon {
  width: 30%;
  text-align: center;
}
.cs_wrap .cs .items .icon img {
  width: 30%;
  transition: all 0.2s;
}
.cs_wrap .cs .items .icon_s {
  width: 15px;
}
.cs_wrap .cs .items.active .icon img,
.cs_wrap .cs .items:hover .icon img {
  width: 50%;
}
@media (max-width: 991.98px) {
  .cs_wrap .cs {
    width: 100%;
    margin-top: 130px;
    padding: 0 30px;
  }
  .cs_wrap .cs .items .icon img {
    width: 20%;
  }
  .cs_wrap .cs .items.active .icon img,
  .cs_wrap .cs .items:hover .icon img {
    width: 25%;
  }
}
@media (max-width: 767.98px) {
  .cs_wrap .cs {
    padding: 0 20px;
  }
  .cs_wrap .cs .cs_list::after {
    display: none;
  }
  .cs_wrap .cs .cs_list {
    padding: 0;
    gap: 0.5rem 0;
  }
  .cs_wrap .cs .items {
    align-items: center;
    padding: 20px 20px;
    border-bottom: none;
    border-radius: 0.5rem;
    background-color: rgb(248, 248, 248);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.05);
  }
  .cs_wrap .cs .items.active {
    padding: 20px 20px;
  }
  .cs_wrap .cs .items.active ul::after {
    display: none;
  }
  .cs_wrap .cs .items li.name {
    font-size: 0.8rem;
  }
  .cs_wrap .cs .items li.value,
  .cs_wrap .cs .items.active li.value {
    font-size: 1.2rem;
  }
  .cs_wrap .cs .items .icon img,
  .cs_wrap .cs .items.active .icon img,
  .cs_wrap .cs .items:hover .icon img {
    width: 50%;
  }
}

.main_blank {
  height: 100px;
}
@media (max-width: 991.98px) {
  .main_blank {
    display: none;
  }
}
