/**
* Template Name: Dewi
* Template URL: https://bootstrapmade.com/dewi-free-multi-purpose-html-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Pretendard Variable", Pretendard, 'Gowun Batang', 'SBAggroB', -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  --heading-font:  "Pretendard Variable", Pretendard,   sans-serif;
  --nav-font:  "Pretendard Variable", Pretendard,  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff4a17; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #e5eaee;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff4a17; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff4a17; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight:normal;
}
li,ol,dd {list-style:none;}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.header_t .container {
  display: flex;
  align-items: center;
  max-width: 1920px !important;
  padding: 0;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}

.header_logo {
  position: relative;
  display: inline-block;
}

.header_logo img {
  display: block;
}

.logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header_t:hover .logo-hover {
  opacity: 1;
}
.header_t.f-nav .logo-hover {
  opacity: 1;
}

.menu-btn {
  position: relative;
  display: inline-block;
}

.menu-btn img {
  display: block;
  width: 100%;
}

.mobile-menu-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header_t:hover .mobile-menu-hover {
  opacity: 1;
    z-index: 3;
}
.header_t.f-nav .mobile-menu-hover {
  opacity: 1;
  z-index: 3;
}

.header_t:hover .menu-on {
  opacity: 1;
  color: #FF0000 !important;
}
.header_t.f-nav .menu-on {
  opacity: 1;
  color: #FF0000 !important;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero .container img {
	position: relative;
	width: 230px;
	height: auto; 
	margin-bottom: 72px;
}
.hero:before {
  content: "";
  /* background: color-mix(in srgb, var(--background-color), transparent 30%); */
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .pc {
  display: block;
}
.hero .mobile {
  display: none;
}
.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2%;
  text-transform: uppercase;
}
.hero h2 br {
  display: none;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}
.hero img.pc {
  display: block;
}
.hero img.mobile {
  display: none;
}
.text_red {color: #FF0B0B; letter-spacing: -1% !important;}
.hero .d-flex {
  display: flex !important;
	text-align: center;
	color: rgba(255,255,255,0.7);
  font-size: 20px;
}

/* @media (max-width: 768px) {
  .hero h2 {
    font-size: 32px !important;
  }

  .hero p {
    font-size: 18px;
  }
} */

.row {
  margin: 0;
  --bs-gutter-x: 0;
}


.sub-txt1 h3{
  margin-top: 60px;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -2%;
  color: #000;
  margin-bottom: 30px;
}
.sub-txt1 p{
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -3%;
  color: rgba(61, 76, 109, 0.8);
  margin-bottom: 0;
}

.product_bg1 {  
  padding-bottom: 200px !important;
  background-image: url('../images/img_product_bg0.png'); 
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 1110px;
  background-size: contain;
  background-color: #F2F5FC;
}
.product_bg2 .container {
  max-width: 1540px !important;
}

.product_bg2 {
  background-image: url('../images/img_product_bg.png'); 
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.product_bg2 .product-img1 {
  margin: 86px 0;
}
.product_bg2 .contents-txt1 {
  color: #fff;
}
.product_bg2 .product-box {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 1440px;
}
.product_bg2 .product-box .box {
  position: relative;
  width: 25%;
  background-color: #1C2032;
  border-radius: 12px;
  border: 2px solid #464963;
  min-height: 385px;
  text-align: center;
  padding-top: 40px;
}
.product_bg2 .product-box .box h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -2%;
  color: #fff;
  margin-top: 26px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.product_bg2 .product-box .box .img {
  width: 140px;
  margin: 0 auto;
}
.product_bg2 .product-box .box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -3%;
  color: rgba(250, 250, 250, 0.65);
}
.product_bg2 .product-img1.mobile {
  display: none;
}
.product_bg3 {
  background-color: #F2F5FC;
  padding-bottom: 170px !important;
}
.product_bg3 .pro-box {
  width: 100%;
  align-items: center;
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}
.product_bg3 .pro-box.m80 {
  margin-top: 80px;
}
.product_bg3 .pro-box .box{
  position: relative;
  width: 470px;
  min-height: 372px;
  margin-right: 16px;
  padding: 58px 30px 0 50px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  word-break: keep-all;
  -webkit-box-shadow: 0px 4px 4px 2px rgba(195, 195, 238, 0.25);
  -moz-box-shadow: 0px 4px 4px 2px rgba(195,195,238,0.25);
  box-shadow: 0px 4px 4px 2px rgba(195, 195, 238, 0.25);
}
.product_bg3 .pro-box .box:last-child {
  margin-right: 0;
}
.product_bg3 .pro-box .box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 26px;
  letter-spacing: -5%;
  line-height: 1.2;
  color: #000;
}
.product_bg3 .pro-box .box p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(42, 50, 68, 0.8);
  letter-spacing: -4%;
  line-height: 1.3;
}
.product_bg3 .pro-box .box p span {
  font-weight: 700;
  color: #FF0000;
}
.product_bg3 .pro-box .box .img {
  position: absolute;
  right: 50px;
  bottom: 30px;
  width: 140px;
  height: 140px;
}
.product_bg3 .zoomin-txt {
  word-break: normal;
  letter-spacing: -6%;
}

.product_bg4 {
  background-image: url('../images/img_product_bg1.png'); 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.product_bg4 .contents-txt1 {
  color: #fff;
}
.product_bg4 .pro-box1 {
  display: flex;
  width: 100%;
  margin-top: 120px;
}
.product_bg4 .pro-box1 {
  display: flex;
  width: 100%;
}
.product_bg4 .pro-box1 .box {
  width: 33%;
  letter-spacing: -3%;
}
.product_bg4 .pro-box1 .box h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin: 30px 0 16px 0;
}
.product_bg4 .pro-box1 .box p{
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}
.product_bg4 .pro-box1 .box .img {
  width: 64px;
}

.product_bg4 .pro-box2 {
  display: flex;
  width: 100%;
  margin-top: 70px;
}
.product_bg4 .pro-box2 {
  display: flex;
  width: 100%;
}
.product_bg4 .pro-box2 .box {
  width: 33%;
  letter-spacing: -3%;
}
.product_bg4 .pro-box2 .box h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin: 30px 0 16px 0;
}
.product_bg4 .pro-box2 .box p{
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}
.product_bg4 .pro-box2 .box .img {
  width: 64px;
}
/*--------------------------------------------------------------
# 도임사례 Section
--------------------------------------------------------------*/
.sbody-container { 
  width: 100%;
  padding: 180px 0 180px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sbody-container.m-top {
  margin-top: 80px;
  padding-bottom: 150px;
}
.business_bg1 {
  background: linear-gradient(to bottom, #0F1120, #0E153A); 
    padding-bottom: 150px;
}
.business_bg2 {
  background-image: url('../images/img_business_bg.png'); 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.business_bg2 .sub-txt {
    margin-bottom: 7px;
}
.sub-htitle { 
  font-size: 40px;
  font-weight: 700;
  color: #000;
  letter-spacing: -3%;
  margin-top: 6px;
  margin-bottom: 24px;
  line-height: 1;
}
.sub-txt {
  letter-spacing: -4%;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 45px;
  line-height: 1.3;
}
.business_bg2 .sub-htitle { 
  line-height: 1.2;
}
.business_bg1 .sub-htitle, .business_bg2 .sub-htitle {
  color: #fff;
}
.business_bg1 .sub-txt, .business_bg2 .sub-txt {
  color: rgba(255, 255, 255, 0.8);
}
.business_bg1 .sub-txt {
  margin-bottom: 33px;
}
.business_bg2 .sub-txt {
  letter-spacing: -5%;
}

.business_bg1 .mobile, .business_bg2 .mobile {display: none;}

@media (min-width: 992px){
  .col-lg-7 { width:50% ;}
  .col-lg-5 { width:50% ;}
}
@media (max-width: 822px){
.business_bg1 .mobile, .business_bg2 .mobile {
        display: block;
    }
    .ps-rg-6 {
        margin-right: 0;
        text-align: center;
    }
    .ps-lg-6 {
        margin-left: 0 !important;
        text-align: center;
    }
        .business_bg1 .pc, .business_bg2 .pc {
        display: none;
    }
}
.business-list, .business-list ul {margin: 0; padding: 0;}
.business-list li{
  border-bottom:1px solid rgba(232, 235, 246, 0.8);
  padding: 16px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #4B597C;
  margin: 0;
  text-align: left;
}
.business-list li img {
  width: 60px;
  margin-right: 12px;
}
.business-list li .round-title {
  background-color:  rgba(232, 235, 246, 0.9);
  color: #0E153A;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: 30px;
  min-width: 80px;
  letter-spacing: -4%;
  text-align: center;
  font-size: 12px;
  margin-right: 12px;
}
.business-total {
  font-size: 12px;
  font-weight: 400;
  color: #4B597C;
  margin-top: 15px;
  text-align: right;
}
.business-total span {
  font-size: 16px;
  font-weight: 700;
  color: #FF0000;
}
.business_bg1 .business-list li, .business_bg2 .business-list li{
  border-bottom:1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  text-align: left;
}
.business_bg1 .business-list li img {
  width: 60px;
  margin-right: 12px;
}
.business_bg1 .business-list li .round-title, .business_bg2 .business-list li .round-title {
  background-color:  rgba(64, 68, 99, 0.9);
  color: #fff;
}
.business_bg1 .business-total, .business_bg2 .business-total  {
  color: rgba(255, 255, 255, 0.6);
}
.business_bg1 .business-total span, .business_bg2 .business-total span  {
  color: #fff;
}
.ps-lg-6 {
  margin-left: 90px;
  word-break: keep-all;
}
.ps-rg-6 {
  margin-right: 90px;
  word-break: keep-all;
}
.business_bg0 .row.center {
  align-items: center;
}
.business_bg1 .col-lg-7, .business_bg0 .col-lg-7, .business_bg2 .col-lg-7 {
  width: 760px;
}
.business_bg1 .col-lg-5,.business_bg2 .col-lg-5, .business_bg0 .col-lg-5 {
  width: calc(100% - 760px);
}

/*-------------모델 --------------------*/
.model_bg1 {
  margin-top: 80px;
  padding: 120px 0 100px 0;
}
.model_bg1 .contents-txt2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3%;
  margin-bottom: 56px;
  margin-top: 6px;
  color: #000;
}
.model_bg1 .contents-txt2 br {
  display: none;
}
.model_bg1 .model-img01 {
  display: flex;
  align-items: center;
  width: 600px;
}
.model_bg1 .model-table {
  width: 100%;
  display: flex;
  gap: 30px;
  margin-top: 19px;
}
.model_bg1 .model-table h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -3%;
  color: #000;
  margin-bottom: 18px;
}
.model_bg1 .model-table h3 span {
  font-weight: 400;
  font-size: 14px;
  margin-left: 10px;
  color: rgb(75, 89, 124, 0.8);
}
.model_bg1 .model-table ul {
  margin: 16px 0 0 0;
  padding: 0;
}
.model_bg1 .model-table li {
  font-weight: 400;
  font-size: 14px;
  color: rgb(75, 89, 124, 0.8);
  background-image: url('../images/dot.png'); 
  background-position: left 7px;
  background-repeat: no-repeat;
  padding-left: 8px;
}
.model_bg1 .model-table table {
  width: 100%;
}
.model_bg1 .model-table .table1 {
  width: calc(65% - 30px);
  letter-spacing: -2%;
}
.model_bg1 .model-table .table1 table {
  width: 100%;
  border: 1px solid #ECEFF2;
}
.model_bg1 .model-table .table1 th {
  width: 33%;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 12px 0;
  height: 48px;
}
.model_bg1 .model-table .table1 th.th1 {
  background-color: #555F86;
}
.model_bg1 .model-table .table1 th.th2 {
  background-color: #FF0000;
  border-left:1px solid #ECEFF2;
  border-right: 1px solid #ECEFF2;
}
.model_bg1 .model-table .table1 th.th3 {
  background-color: #000000;
}
.model_bg1 .model-table .table1 td {
  color: #000;
  font-size: 14px;  
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  border-right: 1px solid #ECEFF2;
  border-top:1px solid #ECEFF2;
    height: 48px;
}
.model_bg1 .model-table .table1 td.left-td {
  background-color: #F8F8FD;
  font-weight: 400;
}
.model_bg1 .model-table .table1 td p {
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: rgb(75, 89, 124, 0.8);
}
.model_bg1 .model-table .table1 .p26 {
  padding: 0;
  height: 96px;
}
.model_bg1 .model-table .table1 .p26 br {
  display: none;
}
.model_bg1 .model-table .table2 {
  width: 35%;
}
.model_bg1 .model-table .table2 table {
  width: 100%;
  border: 1px solid #ECEFF2;
}
.model_bg1 .model-table .table2 th {
  color: #000;
  background-color: #F8F8FD;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  padding: 12px 0;
  height: 48px;
}
.model_bg1 .model-table .table2 th.th35 {
  width: 40%;
}

.model_bg1 .model-table .table2 td {
  color: #000;
  font-size: 14px;  
  font-weight: 400;
  text-align: center;
  padding: 12px 0;
  height: 48px;
  border-right: 1px solid #ECEFF2;
  border-top:1px solid #ECEFF2;
}

.model_bg2 {
  background-color: #F2F5FC;
  padding: 120px 0 100px 0;
}
.model_bg2 .contents-txt2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3%;
  margin-top: 6px;
  margin-bottom: 94px;
  color: #000;
}
.model_bg2 .contents-txt2 br {
  display: none;
}
.model_bg2 .model-table {
  width: 100%;
  display: flex;
  gap: 16px;
}
.model_bg2 .model-table .table1, .model_bg2 .model-table .table2 {
  width: 50%;
  letter-spacing: -2%;
}
.model_bg2 .model-table table {
  width: 100%;
}
.model_bg2 .model-table .table1 th {
  color: #fff;
  background-color: #000;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  padding: 12px 0;
  height: 48px;
}
.model_bg2 .model-table .table1 td {
  color: #000;
  font-size: 14px;  
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  border-right: 1px solid #ECEFF2;
  border-top:1px solid #ECEFF2;
  background-color: #fff;
  height: 48px;
}
.model_bg2 .model-table .table1 td.left-td {
  background-color: #E8EBF6;
  font-weight: 400;
  width: 250px;
}
.model_bg2 .model-table .table2 th {
  color: #fff;
  background-color: #505875;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  height: 48px;
}
.model_bg2 .model-table .table2 td {
  color: #000;
  font-size: 14px;  
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  height: 48px;
  border-right: 1px solid #ECEFF2;
  border-top:1px solid #ECEFF2;
  background-color: #fff;
}
.model_bg2 .model-table .table2 td.left-td {
  background-color: #E8EBF6;
  font-weight: 400;
    width: 250px;
}

.model_bg2 .model-table ul {
  margin: 16px 0 0 10px;
  padding: 0;
}
.model_bg2 .model-table ul br {
  display: none;
}
.model_bg2 .model-table li {
  font-weight: 400;
  font-size: 14px;
  color: rgb(75, 89, 124, 0.8);
  background-image: url('../images/dot.png'); 
  background-position: left 7px;
  background-repeat: no-repeat;
  padding-left: 8px;
  letter-spacing: -3%;
}

.model_bg3 {
  background-image: url('../images/img_model_bg3.png'); 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 100px 0;
}
.model_bg3 .contents-txt2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3%;
  margin-bottom: 93px;
  margin-top: 6px;
  color: #fff;
}
.model_bg3 .contents-txt2 br {
  display: none;
}
.model_bg3 .model-box {
  width: 100%;
  display: flex;
  gap: 16px;
}
.model_bg3 .model-box .box {
  width: 25%;
  position: relative;
}
.model_bg3 .model-box .box .box-wrap {
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
  letter-spacing: -3%;
height: 374px;
}
.model_bg3 .model-box .box .model-round {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 30px;
  background-color: #E8EBF6;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content:center;
}
.model_bg3 .model-box .box .model-round.round01 {
  width: 152px;
}
.model_bg3 .model-box .box .model-round.round02 {
  width: 200px;
}
.model_bg3 .model-box .box .model-round.round03 {
  width: 230px;
}
.model_bg3 .model-box .box .model-round.round04 {
  width: 180px;
}
.model_bg3 .model-box .box .model-round span {
  width: 1px;
  height: 12px;
  background-color: #919FD0;
  margin: 0 8px;
}
.model_bg3 .model-box .box .won {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 43%;
  right: -47px;
  z-index: 3;
}

.model_bg3 .model-txt {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  padding: 52px 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin-top: 20px;
  text-align: center;
  letter-spacing: -3%;
}
.model_bg3 .model-box .box h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 18px 0;
  line-height: 1;
  color: #000;
}
.model_bg3 .model-box .box p {
  text-align: center;
  color: #4B597C;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -3%;
  line-height: 1.2;
  margin-bottom: 0;
}
.model_bg3 .model-box .box p span {
  font-size: 14px;
  line-height: 14px;
  color: rgba(75, 89, 124, 0.8) !important;
}
.model_bg3 .pc {
  display: block;
}
.model_bg3 .mobile {
  display: none;
}
.model_bg4 {
  background-color: #F2F5FC;
  padding: 120px 0 ;
}
.model_bg4 .contents-txt2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3%;
  margin-bottom: 90px;
  margin-top: 6px;
  color: #000;
}
.model_bg4 .contents-txt2 br {
  display: none;
}
.model_bg4 .model-box1 {
  width: 100%;
  display: flex;
  gap: 16px;
} 
.model_bg4 .model-box1 h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -4%;
  text-align: center;
  margin-bottom: 33px;
  color: #1D1F37;
}
.model_bg4 .model-box1 .model-won1 {
  width: 25%;
}
.model_bg4 .model-box1 .model-won1 .icon {
  width: 56px;
  margin: 0 auto;
}

.model_bg4 .model-box1 .model-won1 .won {
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1 / 1; 
  background-color: #1D1F37;
  color: #fff;
  text-align: center;
  padding-top: 50px;
}
.model_bg4 .model-box1 .model-won1 .won h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin:24px 0 20px 0;
  color: #fff;
}
.model_bg4 .model-box1 .model-won1 .won p{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -3%;
}
.model_bg4 .model-box1 .model-won2 {
  width: 25%;
  z-index: 3;
  margin-left: -50px;
}
.model_bg4 .model-box1 .model-won2 .won {
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1 / 1; 
  background-color: rgba(255, 255, 255, 0.8);
  color: #1D1F37;
  text-align: center;
  padding-top: 50px;
    -webkit-box-shadow: 0px 4px 8px 2px rgba(195, 195, 238, 0.25);
    -moz-box-shadow: 0px 4px 8px 2px rgba(195,195,238,0.25);
    box-shadow: 0px 4px 8px 2px rgba(195, 195, 238, 0.25);
}
.model_bg4 .model-box1 .model-won2 .won h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin:24px 0 20px 0;
  color: #1D1F37;
}
.model_bg4 .model-box1 .model-won2 .won p{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -3%;
}
.model_bg4 .model-box1 .model-won2 .icon {
  width: 56px;
  margin: 0 auto;
}

.model_bg4 .model-box1 .model-won3 {
  width: 25%;
  z-index: 3;
  margin-left: -50px;
}
.model_bg4 .model-box1 .model-won3 .won {
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1 / 1; 
  background-color: #FF0000;
  color: #fff;
  text-align: center;
  padding-top: 50px;

}
.model_bg4 .model-box1 .model-won2 .pc {
  display: block;
}
.model_bg4 .model-box1 .model-won2 .mobile {
  display: none;
}
.model_bg4 .model-box1 .model-won3 .won h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin:24px 0 20px 0;
  color: #fff;
}
.model_bg4 .model-box1 .model-won3 .won p{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -3%;
}
.model_bg4 .model-box1 .model-won3 .icon {
  width: 56px;
  margin: 0 auto;
}

.model_bg4 .model-box1 .model-won4 {
  width: 25%;
  z-index: 3;
  margin-left: -50px;
}
.model_bg4 .model-box1 .model-won4 .icon {
  width: 56px;
  margin: 0 auto;
}

.model_bg4 .model-box1 .model-won4 .won {
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1 / 1; 
  background-color: #1D1F37;
  color: #fff;
  text-align: center;
  padding-top: 50px;
}
.model_bg4 .model-box1 .model-won4 .won h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin:24px 0 20px 0;
  color: #fff;
}
.model_bg4 .model-box1 .model-won4 .won p{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -3%;
}

.model_bg5 {
  padding: 120px 0 100px 0;
}
.model_bg5 .model-box {
  width: 100%;
  display: flex;
}

.model_bg5 .model-box .mobile {
  display: none;
}
.model_bg5 .model-box.m160 {
  margin: 160px 0 80px 0;
}
.model_bg5 .model-box .model-title {
  width: 30%;
}
.model_bg5 .model-box .model-title .contents-txt2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -3%;
  margin-top: 4px;
  margin-bottom: 0;
  text-align: left;
  color: #000;
}
.model_bg5 .model-box .model-table {
  width: 70%;
}
.model_bg5 .model-box .model-table table {
  width: 100%;
}
.model_bg5 .model-box .model-table th {
  width: 25%;
  border-left: 1px solid #fff;
  text-align: center;
  background-color: #000 ;
  color: #fff;
  padding: 14px 16px;
  height: 48px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -2%;
}
.model_bg5 .model-box .model-table th:first-child {
  border-left: none;
}
.model_bg5 .model-box .model-table .left-td {
  background-color: #F8F8FD;
  font-weight: 500;
  border-right: none;
}
.model_bg5 .model-box .model-table td {
  text-align: center;
  padding: 12px;
  border-bottom: 1px solid #ECEFF2;
  border-right: 1px solid #ECEFF2;
  color: #000;
  letter-spacing: -2%;  
  font-size: 14px;
  font-weight: 600;
}
.model_bg5 .model-box .model-table td:last-child {
    border-right: none;
}
.model_bg5 .model-box .model-grap {
  width: 70%;
}
.model_bg5 .model-box .model-title .model-time {
  width: calc(100% - 40px);
  background-color: #f8f8fd;
  text-align: center;
  padding: 32px;
  margin-right: 40px;
}
.model_bg5 .model-box .model-title .model-time .time-won {
  display: flex;
  align-items: end;
  justify-content: center;
}
.model_bg5 .model-box .model-title .model-time .won1 {
  margin-right: -20px;
  z-index: 4;
}
.model_bg5 .model-box .model-title .model-time .won1 .won-grap {
  background-color: rgb(47, 50, 85, 0.95);
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 50%;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}
.model_bg5 .model-box .model-title .model-time .won1 .won-grap span {
  font-size: 16px;
  font-weight: 400;
}
.model_bg5 .model-box .model-title .model-time .won2 .won-grap {
  background-color: #7584ba;
  width: 140px;
  height: 140px;
  line-height: 140px;
  border-radius: 50%;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}
.model_bg5 .model-box .model-title .model-time .won2 .won-grap span {
  font-size: 18px;
  font-weight: 400;
}
.model_bg5 .model-box .model-title .model-time .won1 p {
  margin-top: 12px;
   margin-bottom: 0;
}
.model_bg5 .model-box .model-title .model-time .won2 p {
  font-size: 18px;
  color: #56669f;
  margin-top: 12px;
  margin-bottom: 0;
}
.model_bg5 .model-box .model-title .model-time p {
  font-size: 18px;
  font-weight: 600;
}
.model_bg5 .model-box .model-title ul {
  margin: 10px 0 0 0;
  padding: 0;
}
.model_bg5 .model-box .model-title li {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -2%;
  color: rgb(75, 89, 124, 0.8);
  text-align: left;
  background-image: url('../images/dot.png'); 
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 8px;
}

.model_bg5 .model-table2 {
  width: 70%;
}
.model_bg5 .model-table2 table {
   width: 100%;
   border-bottom:1px solid #ECEFF2;
}
.model_bg5 .model-table2 th {
  color: #fff;
  background-color: #000;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  height: 48px;
  border-left: 1px solid #fff;
}
.model_bg5 .model-table2 th:first-child {
    border-left: none;
}
.model_bg5 .model-table2 th.last-th {
  background-color: #555F86;
  border-left: 1px solid #fff;
}
.model_bg5 .model-table2 td {
  color: #000;
  font-size: 14px;  
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  height: 48px;
  border-right: 1px solid #ECEFF2;
  border-top:1px solid #ECEFF2;
  background-color: #fff;
  letter-spacing: -2%;
}
.model_bg5 .model-table2 td.left-td {
  background-color: #f8f8fd;
  font-weight: 400 !important;
  width: 16%;
}
.model_bg5 .model-table2 td.red_bg {
  background-color: #FFCDCD;
  font-weight: 800;
}
.model_bg5 .model-table2 td.red {
  color: #FF0000;
  font-weight: 700;
}
.model_bg5 .model-table2 td.red_bg:first-child {
      font-weight: 400 !important;
    }
.model_bg5 .model-table2 .li-wrap {
  display: flex;
  margin-top: 10px;
  color: rgb(75, 89, 124, 0.8);
}
.model_bg5 .model-table2 .li-wrap p {
  width: 80px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.model_bg5 .model-table2 .li-wrap ul {
  margin: 0;
  padding: 0;
}
.model_bg5 .model-table2 .li-wrap li {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -2%;
  color: rgb(75, 89, 124, 0.8);
  text-align: left;
  background-image: url('../images/dot.png'); 
  background-position: left 7px;
  background-repeat: no-repeat;
  padding-left: 8px;
}

.montserrat-font {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
 .graph-wrap {
      max-width: 1100px;
      margin: 26px auto 0 auto;
    }

    .graph-row {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 0;
    }

    .bar-area {
      flex: 1;
      height: 70px;
      background: transparent;
      position: relative;
      overflow: hidden;
      border-radius: 0 6px 6px 0;
    }

    .bar-fill {
      width: 0;
      height: 100%;
      border-radius: 0 6px 6px 0;
      display: flex;
      align-items: center;
      padding-left: 38px;
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      white-space: nowrap;
      transition: width 2s ease;
    }

    .bar-fill.top {
      background: linear-gradient(90deg, #2F3255 0%, #1D1F37 100%);
    }

    .bar-fill.bottom {
      background: linear-gradient(90deg, #7584BA 0%, #8892B9 100%);
    }

    .bar-title {
      font-size: 22px;
      font-weight: 700;
    }

    .bar-title span {
      font-size: 14px;
      font-weight: 500;
      letter-spacing: -4%;
      opacity: 0.9;
      margin-left: 10px;
    }

    .value {
      min-width: 140px;
      text-align: right;
      font-size: 68px;
      line-height: 0.9;
      font-weight: 700;
      color: #000;
      letter-spacing: -3px;
    }

    .value em {
      font-style: normal;
      font-size: 32px;
      margin-left: 2px;
    }
.model_bg6 {
  background-image: url('../images/img_model_bg6.png'); 
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 210px 0 276px 0;
  background-color: #101221;
}
.model_bg6 .contents-txt2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3%;
  margin-bottom: 54px;
  margin-top: 61px;
  color: #fff;
}
.model_bg6 .contents-txt2 br {
  display: none;
}
.model_bg6 p {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -3%;
  color: #fff;
  line-height: 30px;
}

.model_bg6-1 {
  background-color: #101221;
  padding: 48px 0 30px 0;
}
.model_bg6-1 .contents-txt2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3%;
  margin-bottom: 64px;
  color: #fff;
}

.model_bg6-1 .singitbox-wrap.mobile {
  display: none;
}
.model_bg6-1 .singitbox-wrap {
  width: 100%;
  display: flex;
}
.model_bg6-1 .singitbox-wrap .sigitbox-img {
  width: 25%;
  position: relative;
}
.model_bg6-1 .singitbox-wrap .sigitbox-img .sigitbox-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 40px);
  margin: 20px;
  min-height: 120px;
}
.model_bg6-1 .singitbox-wrap .sigitbox-img .sigitbox-txt h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -4%;
  color: #fff;
}
.model_bg6-1 .singitbox-wrap .sigitbox-img .sigitbox-txt p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -6%;
  word-break: keep-all;
  color: #fff;
  margin-bottom: 0;
}

 .model_bg6-1 .compare-section{
        display: flex;
        align-items: center;
        width: 100%;
        margin-top: 80px;
        position: relative;     
      }
      .model_bg6-1 .compare-section .compare-table1 table {
        width: 100%;
      }
      .model_bg6-1 .compare-section table br {
        display: none;
      }
      .model_bg6-1 .compare-section .compare-table1 {
        width: 60%;   
        height: 100%;  
      }
      .model_bg6-1 .compare-section .compare-table1 .compare-table-bg {
        position: absolute;
        right: 40%;
        top: 0;
        z-index: 3;
        width: auto;
        height: 100%;
      }
      .model_bg6-1 .compare-section .compare-table1 .compare-table-bg img {
        width: 100%;
        height: 100%;
      }
      
      .model_bg6-1 .compare-section .compare-table1 th {
        background-color: #E8EBF6;
        color: #000;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: -2%;
        line-height: 1;
        padding: 16px 0px;
        text-align: center;
        height: 48px;
      }
      .model_bg6-1 .compare-section .compare-table1 th:last-child {
        border-left: 1px solid #fff;
      }
      .model_bg6-1 .compare-section .compare-table1 td {
        background-color: #fff;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2;
        padding: 13px 0px;
        text-align: center;
        border-top: 1px solid #E8EBF6;
        border-right: 1px solid #E8EBF6;    
        letter-spacing: -2%;    
        color: #000;
        background-color: #F8F8FD;
        height: 48px;
      }
      .model_bg6-1 .compare-section .compare-table1 td:first-child {
        width: 33%;
      }
      .model_bg6-1 .compare-section .compare-table2 {
        width: 40%;              
      }
      
      .model_bg6-1 .compare-section .compare-table2 table {
        border: 3px solid #FF0000;
        width: 100%;
      }
      .model_bg6-1 .compare-section .compare-table2 th {
        background-color: #FF0000;
        color: #fff;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: -2%;
        line-height: 1;
        padding: 18px 3px;
        text-align: center;
      }
      .model_bg6-1 .compare-section .compare-table2 td {
        background-color: #fff;
        color: #000;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -4%;
        padding: 18px 3px;
        text-align: center;
        border-top: 1px solid #E8EBF6;
        border-right: 1px solid #E8EBF6;
      }
      .model_bg6-1 .compare-section .compare-table2 td p {
        font-weight: 500;
        margin-bottom: 0;
      }
      .model_bg6-1 .compare-section .compare-table2 td.h100 {
        height: 100px;
      }
.model_bg6-2 {
  background-color: #101221;
  padding: 110px 0 110px 0;
}
.model_bg6-2 .contents-txt2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3%;
  margin-bottom: 64px;
  margin-top: 6px;
  color: #fff;
}
.model_bg6-2 .contents-txt2 br {
  display: none;
}
.model_bg6-2 .pro-box {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
}
.model_bg6-2 .pro-box .box {
    position: relative;
    width: 400px;
    min-height: 313px;
    padding: 48px;
    background-color: #F2F5FC;
    border-radius: 12px;
    overflow: hidden;
    word-break: keep-all;

}
.model_bg6-2 .pro-box .box .img {
    position: absolute;
    right: 48px;
    bottom: 40px;
    width: 120px;
    height: 120px;
}
.model_bg6-2 .pro-box .box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -4%;
    line-height: 1;
    color:#1D1F37;
}
.model_bg6-2 .pro-box .box p {
    font-size: 18px;
    color: #000;
    letter-spacing: -3%;
    line-height: 22px;
    padding-bottom: 0;
}
.model_bg7 {
  background-color: #F2F5FC;
  padding: 120px 0;
}
.model_bg7 .contents-txt2 {
  font-size: 40px;
  font-weight: 700;
  color:#000;
  line-height: 1;
  letter-spacing: -3%;
  margin-bottom: 48px;
  margin-top: 6px;
}
.model_bg7 .info-box .info-text {
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -2%;
    margin-bottom: 48px;
    color:#000
}
.model_bg7 .info-box .info-text .info-title {
    font-weight: 700;
    min-width: 110px;
    background-color: rgb(75, 89, 124, 0.8);
    color: #fff;
    text-align: center;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 18px;
    line-height: 1;
}
.model_bg7 .info-box .info-text .info-email {
    min-width: 210px;
    font-weight: 700;
}
.model_bg7 .info-box .info-text .line {
    width: 1px;
    height: 18px;
    background-color: rgba(183, 183, 125, 0.8);
}
.model_bg7 .info-box .info-text span {
  font-weight: 700;
}
.model_bg7 .advice-box {
  width: 900px;
  display: flex;
  align-items: center;
}
.model_bg7 .advice-box .input-w50 {
  width: calc(50% - 16px);
  border-radius: 4px;
  border: 1px solid #E8EBF6;
  background-color: #fff;
  color: #4B597C;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 12px;
  line-height: 1;
  margin-bottom: 12px;
  height: 42px;
}
input::placeholder, textarea::placeholder {
  color: #4B597C;
}
.model_bg7 .advice-box .input-w50.m32 {
  margin-left: 32px;
}

.model_bg7 textarea {
  width: 900px;
  min-height: 186px;
  padding: 9px 12px;
  border-radius: 4px;
  border: 1px solid #E8EBF6;
  background-color: #fff;
  color: #4B597C;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 12px;
  line-height: 1;
  margin-bottom: 6px;
  resize: none;
}
.model_bg7 .advice-btn {
  width: 400px;
  text-align: center;
  color: #fff;
  background-color: #000;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  height: 40px;
}
.model_bg7 .advice-btn:hover {
  background-color: #FF0000;
  color: #fff;
}
.model_bg7 .text-number {
  text-align: right;
  font-size: 12px;
  color: rgb(75, 89, 124, 0.5);
  margin-bottom: 16px;
  display: block;
  width: 900px;
}
/*-------------faq --------------------*/
.faq_bg1 {
  background-color: #F2F5FC;
  margin-top: 80px;
  padding: 0;
  padding: 120px 0 200px 0;
}
.faq_bg1.sbody-container, .faq_bg1 .sbody-scontainer{
  align-items:normal !important;
}
.faq .faq-container {
  margin-top: 46px;
}
.faq_bg1 .sub-htitle.pc {
    display: block;
}
.faq_bg1 .sub-htitle.mobile {
    display: none;
}
.faq .faq-container .faq-item {
  background-color: #fff;
  position: relative;
  padding: 36px;
  margin-bottom: 12px;
  border-radius: 10px;
  letter-spacing: -2%;
  overflow: hidden;
  word-break: keep-all;
  -webkit-box-shadow:0px 4px 4px 2px rgba(195,195,238,0.25);
  -moz-box-shadow: 0px 4px 4px 2px rgba(195,195,238,0.25);
  box-shadow: 0px 4px 4px 2px rgba(195,195,238,0.25);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  color: #000;
}
.faq .faq-container .faq-item h3 span {
  color: #FF0000; 
  position: absolute;
  top: 0;
  left: 0;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 20px;
  position: relative;
  padding-left: 28px;
}

.faq .faq-container .faq-item .faq-content p span{
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
}
.faq .faq-container .faq-item .pc {
  display: block;
}
.faq .faq-container .faq-item .mobile {
  display: none;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top:36px;
  right: 36px;
  width: 24px;
  height: 24px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;

  color: #000;
    background-image: url('../images/icon_arrow_up.png'); 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before{
  font-weight: 800 !important;
}

/* .faq .faq-container .faq-item .faq-toggle:hover {
  transform: rotate(90deg);
} */

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 20px;
  line-height: 24px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(180deg);  
}

/*자료실 */
.data_bg1 {
  background-image: url('../images/img_data_bg.png'); 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 80px;
  padding: 0;
  padding: 120px 0 155px 0;
}

.data_bg1.sbody-container, .data_bg1 .sbody-scontainer{
  align-items:normal !important;
}

.data_bg1 .sub-htitle {
  color: #fff;
}

.download-section {
  width: 100%;
  margin-top: 86px;
}

.download-list{
  display:flex;
  flex-direction:column;
  gap:12px;
 }

.download-item{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:32px 90px;
      background:rgba(25, 34, 92, 0.7);
      border:2px solid #575DB9;
      border-radius:12px;
      overflow:hidden;
    }
 .download-info{
      position:relative;
      z-index:1;
      min-width:0;
      flex:1 1 auto;
      display:flex;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
    }

    .download-title{
      margin:0;
      font-size:26px;
      line-height:1.2;
      font-weight:700;
      letter-spacing:-0.02em;
      white-space:nowrap;
      color: #fff;
    }

    .download-divider{
      flex:0 0 auto;
      width:0.5px;
      height:18px;
      background:#fff;
    }

    .download-lang{
      font-size:24px;
      line-height:1.2;
      font-weight:400;
      color:#fff;
      white-space:nowrap;
    }

    .download-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      position:relative;
      z-index:1;
      flex:0 0 auto;
      min-width:200px;
      height:56px;
      padding:0 28px;
      border:none;
      border-radius: 30px;
      background:#fff;
      color:#000;
      font-size:18px;
      font-weight:700;
      letter-spacing:-2%;
      cursor:pointer;
      transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    }

    .download-btn:hover{
      background-color: #FF0000;
      color: #fff;
    }

    .download-btn:active{
      transform:translateY(0);
    }

    .download-btn:focus-visible{
      outline:3px solid rgba(255,255,255,0.5);
      outline-offset:3px;
    }
    .download-btn:disabled{
      background: rgba(255,255,255,0.25);
      color: rgba(255,255,255,0.4);
      cursor: not-allowed;
      box-shadow: none;
    }

    /*회사소개 */
  .company_bg1 {
    background-image: url('../images/img_company_bg1.png'); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 80px;
    padding: 0;
    padding: 120px 0 155px 0;
  }
  .company_box {
    border-radius: 22px;
    width: 100%;
      -webkit-box-shadow:0px 4px 4px 2px rgba(195,195,238,0.25);
    -moz-box-shadow: 0px 4px 4px 2px rgba(195,195,238,0.25);
    box-shadow: 0px 4px 4px 2px rgba(195,195,238,0.25);
    margin-top: 96px;
    background-color: #fff;
    color: #000;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: -4%;
    display: flex;
    align-items: center;
    position: relative;
    }
    .company_box .col-lg-4 {
      width: 38%;
    }
    .company_box .col-lg-8 {
      width: calc(100% - 560px) !important;
      margin-left: 560px;
    }
    .company_box .col-lg-8 p {
        line-height: 26px;
        font-weight: 500;
        font-size: 21px;
        letter-spacing: -3%;
        margin-bottom: 42px;
      }
    .ceo-img.mobile {display: none;}
    .company_box .m-96 {margin-top: 79px;}
    .ceo-logo {margin-top: -30px;}
    .ceo-img { position: absolute; bottom: 0; left: 0; width: 480px;}
    .ceo-sign {text-align: right; margin: 52px 0;}
    .ceo-sign img {margin-left: 5px;}
    .company_box .row>* {margin-top: 0;}

    .company_bg2 {
      background-image: url('../images/history_bg.png'); 
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;  
      padding: 120px 0 96px 0;
    }
    .company_bg2 .row {width: 90%;
      margin-top: 40px;
    }
    .company_bg2 .ml-50 {
      margin-left: 50px;
    }
    .company_bg2 .col-lg-5 {
      width: calc(45% - 50px);
    }
    .company_bg2 .sub-htitle {
      color: #fff;
    }
    .company_bg2 .history-box {
      width: 100%;
      display: flex;  
      gap: 32px;  
      color: #fff;      
    }
    .company_bg2 .history{
      position: relative;
    }
    .company_bg2 .history::before {
      content: "";
      position: absolute;
      top: 11px;
      bottom: 60px;
      left: 90px;
      width:1px;
      background-color: rgba(255, 255, 255, 0.3);
  }
    .company_bg2 .history-box .year{
      font-size: 22px;
      font-weight: 700;
      /* border-right: 1px solid rgba(255, 255, 255, 0.3); */
      padding-right: 32px;
      min-width: 90px;
      position: relative;
    }
    .company_bg2 .history-box .year.red {
      color: #FF0000;;
    }
    .company_bg2 .history-box .year .dot {
      position: absolute;
      right: -5px;
      top: 10px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #fff;
    }
    .company_bg2 .history-box .year .dot.red {
      background-color: #FF0000;
    }
    .company_bg2 .history-box .text {
      margin: 0 0 24px 0;
      padding: 3px 0 0 0;
      list-style: none;
      display: flex;
      flex-direction: column;
    }
    .company_bg2 .history-box .text li{
      position: relative;
      padding-left: 13px !important;
      font-size: 18px;
      list-style: none;
      word-break: keep-all;
      margin: 0;
    }
    .company_bg2 .history-box .text  li::before {
      content: "-";
      position: absolute;
      left: 0;
      top: 0;
      color: #fff;
      font-weight: 500;
    }
    .company_bg3, .company_bg4 {
      padding: 120px 0;
    }
    .company_bg3 h3 {
      font-weight: 600;
      color: #000;
      text-align: center;
      margin-top: 14px;
      margin-bottom: 20px;
      letter-spacing: -3%;
      font-size: 32px;
      line-height: 40px;
    }
    .text-li {
      font-size: 14px;
      color: rgb(75, 89, 124, 0.8);
      text-align: center;
    }
     .text-li p {
      margin: 0 auto;
      background-image: url('../images/dot.png'); 
  background-position: left 8px;
  background-repeat: no-repeat;
  padding-left: 6px;
  display: block;
  text-align: left;
     }
    .business-box1 {
      font-size: 18px;
      line-height: 1.2;
      font-weight: 600;
      text-align: center;
      display: flex;
      margin-top: 90px;
      color: #000;
    }
    .business-box1 p{
      margin-top: 16px;
    } 
    .business-box1 .business-li {
      padding: 0 13px;
    }
    .business-box2 {
      font-size: 15px;
      font-weight: 500;
      line-height: 1.2;
      text-align: center;
      display: flex;
      margin-top: 64px;
      color: rgb(75, 89, 124, 0.8);
      gap: 16px;
      letter-spacing: -4%;
    }
    .business-box2 .logo {
       margin: 16px 0;
    }
    .business-box2 .col-lg-3 {
      width: 348px;
      border: 1px solid #E8EBF6;
      border-radius: 12px;
    }
    .business-box2 p {
      margin-bottom: 30px;
    }
    .company_bg4 {
      background-color: #F2F5FC;
      padding-bottom: 200px;
    }
    .address-box {
      display: flex;
      align-items: center;
      margin: 24px 0;
    }
    .address-box .address-title{
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -4%;
      color: #fff;
      background-color: #0E0E0E;
      padding: 6px 24px;
      border-radius: 40px;
    }
    .address-box .address-txt {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -3%;
      color: #000;
      margin-left: 10px;
    }
    .info-box {      
      font-size: 18px;
      text-align: left;
      color: #000;
    }
    .info-box .info-text {
      display: flex;
      align-items: center;
      gap: 12px;
      letter-spacing: -2%;
    }
    .info-box .info-text .info-title {
      font-weight: 700;
      min-width: 110px;
    }
    .info-box .info-text .info-title.red {
      color: #FF0000;
    }
    .info-box .info-text .info-email {
      min-width: 210px;
    }
    .info-box .info-text .line {
      width: 1px;
      height: 18px;
      background-color: rgba(183, 183, 125, 0.8);
    }
    .sub-htitle.mobile br {display: none;}
    .company_bg3 .pc {
        display: block;
      }
    .company_bg3 .mobile {
        display: none;
    }
    .address-box .address-txt br {
        display: none;
      }
      .info-box1 {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-top: 64px;
      }
    .info-box1 .info-address {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 18px;
      color: #000;
      font-weight: 600;
    }
    .info-box1 .info-address .info-add-title {
      background-color: #8A95BF;
      color: #fff;
      padding: 5px 20px;
      border-radius: 50px;
      font-size: 16px;
    }
    .mediacope-map {
      width: 100%;
      min-height: 500px;
      margin-top: 32px;
    }
    .sub-txt.pc {display: block;}
    .sub-txt.mobile{display: none;}
    .company_bg4 .pc {
        display: block;
      }
      .company_bg4 .mobile {
        display: none;
      }
      .product_bg2 .pc {
        display: block;
      }
      .product_bg2 .mobile{
        display: none;
      }
      .product_bg3 .pro-box .box .pc {
        display: block;
       }
       .product_bg3 .pro-box .box .mobile {
        display: none;
       }
      .product_bg4 .pc {
        display: block;
      }
      .product_bg4 .mobile {
        display: none;
      }

      .business_bg0 .business-list br {
        display: none;
      }
      .model_bg1 .model-table br {
        display: none;
      }
      .model_bg2 .model-table .table1 td br, .model_bg2 .model-table .table2 td br {
        display: none;
      }

    @media (max-width: 1200px) {
      .header_t .container {
        padding: 0;
      }
      .sub-txt1 h3{
        margin-top: 50px;
        font-size: 24px;
      }
      .sub-txt1 p{
        font-size: 16px;
        line-height: 20px;
      }
      .ceo-img {
          width: 350px;
      }
      .company_box {
        font-size: 16px;
        padding-right: 30px;
        border-radius: 12px;
      }
      .company_box .col-lg-8 {
          width: calc(100% - 380px) !important;
          margin-left: 380px;
      }
      .ceo-logo img {
        width: 360px;
      }
      .sub-htitle.mobile {
        text-align: center;
      }
      .sub-htitle.mobile br {display: block;}

      .company_bg2 .history-box .year .dot {
        width: 8px;
        height: 8px;
        left: -27px;
      }
      .company_bg2 .history::before {
        left: 0;
      }
      .company_bg2 .history.mobile::before  {
        top: 10px;
        bottom: 0;
      }
      .company_bg2 .history.mobile1::before  {
        top: 0;
      }
      .company_bg2 .history-box {
        display: block;
        padding-left: 24px;
        width: calc(100% - 24px);
      }
      .company_bg2 .history-box .year {
        font-size: 20px;
      }
      .company_bg2 .history-box .text li {
        font-size: 15px;
      }
      .company_bg3 h3 { 
        font-size: 20px;
      }
      .model_bg1 .model-table .table1, .model_bg1 .model-table .table2 {
        width: 100% !important;
      }
      .model_bg1 .model-table .table2 {
        margin-top: 64px;
      }
      .model_bg1 .model-table .table1 .p26 {
          padding: 0 15px;
          text-align: left;
          word-break: keep-all;
      }
      .model_bg1 .model-table .table1 .p26 br {
        display: block;
      }
      .model_bg1 .contents-txt2 {
        text-align: center;
        line-height: 1.2;
      }
      .model_bg1 .contents-txt2 br {
        display: block;
      }
      .model_bg1 .model-img01 {
        width: 100%;
      }
      .model_bg1 .model-table {
        display: block;
      }
      .model_bg1 .model-table br {
        display: block;
      }
      .model_bg1 .model-table .table1 td {
        font-size: 13px;
        font-weight: 600;
        height: 40px;
      }
      .model_bg1 .model-table .table1 th {
        font-weight: 600;
        height: 40px;
      }
      .model_bg1 .model-table .table2 th{
        font-size: 13px;
        word-break: keep-all;
        height: 40px;
        font-weight: 600;
      }
       .model_bg1 .model-table .table2 td {
        font-size: 13px;
        word-break: keep-all;
        height: 40px;
        font-weight: 400;
       }
       .model_bg2 .model-table .table1, .model_bg2 .model-table .table2 {
        width: 100% !important;
      }
      .model_bg2 .model-table .table2 {
        margin-top: 64px;
      }
      .model_bg2 .model-table .table1 .p26 {
          padding: 15px;
          text-align: left;
          word-break: keep-all;
      }
      .model_bg2 .contents-txt2 {
        text-align: center;
        margin-bottom: 45px !important;
        line-height: 1.2;
      }
      .model_bg2 .contents-txt2 br {
        display: block;
      }
      .model_bg2 .model-table {
        display: block;
        word-break: keep-all;
      }
      .model_bg2 .model-table .table1 td, .model_bg2 .model-table .table2 td {
        font-size: 13px;
        font-weight: 600;
        padding: 0 16px;
      }
      .model_bg2 .model-table .table1 td br, .model_bg2 .model-table .table2 td br {
        display: block;
      }
      .model_bg2 .model-table .table1 th, .model_bg2 .model-table .table2 th {
        font-weight: 600;
        font-size: 15px;
        padding: 12px 0;
        height: 40px;
      }
      .model_bg2 .model-table .table1 td.left-td, .model_bg2 .model-table .table2 td.left-td  {
        width: 30%;
        height: 56px;
      }
      .model_bg2 .model-table li {
        font-size: 12px;
      }
      .model_bg3 .contents-txt2 {
          text-align: center;
          line-height: 1.2;
          margin-bottom: 8px;
      }
      .model_bg3 .contents-txt2 br {
          display: block;
      }
      .model_bg1 .model-table li {
        font-size: 12px;
      }
      .model_bg1 .model-table .table1 td p {
        font-size: 12px;
      }
      .model_bg4 .model-box1 {
        display: block;
      }
      .model_bg4 .model-box1 h3 {
        text-align: left;
        font-size: 16px;
        line-height: 22px;
        margin: 32px 0 10px 0;
      }
      .model_bg4 .model-box1 .model-won1 {
        width: 100%;
            
      }
      .model_bg4 .model-box1 .model-won1 .won h3 {
        color: #000;
        font-size: 16px;
       margin:0 0 12px 0;
      }
      .model_bg4 .model-box1 .model-won1 .icon {
        margin: 0 12px 0 0;
        width: 32px;
      }
      .model_bg4 .model-box1 .model-won1 .won p{
        font-size: 12px;
        line-height: 1;
        text-align: left;
        margin-bottom: 0;
        color: #1D1F37;
      } 
      .model_bg4 .model-box1 .model-won1 .won br {
         display: none;
      }
      .model_bg4 .model-box1 .model-won1 .won {
        background-color: #fff;
        border-radius: 10px;
        color: #000;
        padding: 24px;
        display: flex;
        align-items: center;
         -webkit-box-shadow: 0px 4px 8px 2px rgba(195, 195, 238, 0.25);
        -moz-box-shadow: 0px 4px 8px 2px rgba(195,195,238,0.25);
        box-shadow: 0px 4px 8px 2px rgba(195, 195, 238, 0.25);
        aspect-ratio:0;   
      }
      .model_bg4 .model-box1 .model-won2 {
        width: 100%;
        margin: 0; 
      }
      .model_bg4 .model-box1 .model-won2 .won h3 {
        color: #000;
        font-size: 16px;
        margin:0 0 12px 0;
        letter-spacing: -9%;
      }
      .model_bg4 .model-box1 .model-won2 .icon {
        margin: 0 12px 0 0;
        width: 32px;
      }
      .model_bg4 .model-box1 .model-won2 .won p{
        font-size: 12px;
        text-align: left;
        margin-bottom: 0;
      } 
      .model_bg4 .model-box1 .model-won2 .won br {
         display: none;
      }
      .model_bg4 .model-box1 .model-won2 .won {
        background-color: #fff;
        border-radius: 10px;
        color: #000;
        padding: 24px 18px 24px 24px;
        display: flex;
        align-items: center;
         -webkit-box-shadow: 0px 4px 8px 2px rgba(195, 195, 238, 0.25);
        -moz-box-shadow: 0px 4px 8px 2px rgba(195,195,238,0.25);
        box-shadow: 0px 4px 8px 2px rgba(195, 195, 238, 0.25);
        aspect-ratio:0;   
      }
      .model_bg4 .model-box1 .model-won3 {
        width: 100%;
        margin: 0; 
      }
      .model_bg4 .model-box1 .model-won3 .won h3 {
        color: #000;
        font-size: 16px;
        margin:0 0 12px 0;
      }
      .model_bg4 .model-box1 .model-won3 .icon {
        margin: 0 12px 0 0;
        width: 32px;
      }
      .model_bg4 .model-box1 .model-won3 .won p{
        font-size: 12px;
        line-height: 1;
        text-align: left;
        margin-bottom: 0;
      } 
      .model_bg4 .model-box1 .model-won3 .won br {
         display: none;
      }
      .model_bg4 .model-box1 .model-won3 .won {
        background-color: #fff;
        border-radius: 10px;
        color: #000;
        padding: 24px;
        display: flex;
        align-items: center;
         -webkit-box-shadow: 0px 4px 8px 2px rgba(195, 195, 238, 0.25);
        -moz-box-shadow: 0px 4px 8px 2px rgba(195,195,238,0.25);
        box-shadow: 0px 4px 8px 2px rgba(195, 195, 238, 0.25);
        aspect-ratio:0;   
      }
      .model_bg4 .model-box1 .model-won4 {
        width: 100%;
        margin: 0; 
      }
      .model_bg4 .model-box1 .model-won4 .won h3 {
        color: #000;
        font-size: 16px;
        margin:0 0 12px 0;
      }
      .model_bg4 .model-box1 .model-won4 .icon {
        margin: 0 12px 0 0;
        width: 32px;
      }
      .model_bg4 .model-box1 .model-won4 .won p{
        font-size: 12px;
        line-height: 1;
        text-align: left;
        margin-bottom: 0;
        letter-spacing: -6%;
      } 
      .model_bg4 .model-box1 .model-won4 .won br {
         display: none;
      }
      .model_bg4 .model-box1 .model-won4 .won {
        background-color: #fff;
        border-radius: 10px;
        color: #000;
        padding: 24px;
        display: flex;
        align-items: center;
         -webkit-box-shadow: 0px 4px 8px 2px rgba(195, 195, 238, 0.25);
        -moz-box-shadow: 0px 4px 8px 2px rgba(195,195,238,0.25);
        box-shadow: 0px 4px 8px 2px rgba(195, 195, 238, 0.25);
        aspect-ratio:0;   
      }
      .model_bg5 .model-box {
        width: 100%;
        display: block;
        text-align: center;
    }
    .model_bg5 .model-box.m160 {
        margin-top: 80px;
    }
    .model_bg5 .model-box .model-title .contents-txt2 {
      margin-bottom: 36px;
      text-align: center;
    }
    .model_bg5 .model-box .model-title .contents-txt2 br {
      display: none;
    }
    .model_bg5 .model-box .model-title, .model_bg5 .model-box .model-table {
      width: 100%;
    }
    .model_bg5 .model-box .model-title .model-time {
      width:100%;
      margin-right: 0;
    }
    .model_bg5 .model-table2 {
    width: 100%;
    margin-top: 56px;
    }
    .model_bg5 .model-table2 td.left-td {    
        width: 22%;
    }
    .model_bg5 .model-table2 td.red {
      font-weight: 700 !important;
    }
    .model_bg5 .model-table2 td.red_bg {
      font-weight: 700 !important;
    }
    
    .model_bg5 .model-table2 td {
      font-weight: 500 !important;
    }
      .model_bg6 .contents-txt2 {
          text-align: center;
      }
      .model_bg6 .contents-txt2 br {
          display: block;
      }
      .model_bg6-1 .singitbox-wrap .sigitbox-img .sigitbox-txt h3 {
        font-size: 18px;
      }
      .model_bg6-1 .singitbox-wrap .sigitbox-img .sigitbox-txt p {
        font-size: 12px;
        letter-spacing: -4%;
      }
    .model_bg6-1 .compare-section .compare-table2 td p {
      margin-top: 0 !important;
    }
    .model_bg6-1 .compare-section .compare-table2 td.last {
      letter-spacing: -3%;
    }
      .model_bg6-1 .compare-section .compare-table1 {
        width: 58%;
      }
     .model_bg6-1 .compare-section .compare-table2 {
      width: 42%;
     }
     .model_bg6-1 .compare-section .compare-table1 .compare-table-bg {
      right: 42%;
     }
      .model_bg6-2  .pro-box {
        width: 100%;
        display: block;
      }
      .model_bg6-2 .contents-txt2 {
          text-align: center;
      }
      .model_bg6-2 .contents-txt2 br {
          display: block;
      }
      .model_bg6-2 .pro-box .box  {
        width: 100%;
        min-height: auto;
        margin-bottom: 10px;
        padding-right: 200px;
       }
      .model_bg6-2 .pro-box .box:last-child {
        margin-bottom: 0 !important;
      }
      .business-box1 {
        font-size: 14px;
      }
      .business-box2 {
        display: block;
      }
      .business-box2 .col-lg-3 {
        width: calc(50% - 20px) !important;
        float: left;
        margin: 0 10px 20px 10px;
      }
      
      .info-box1 {
        display: block;
        text-align: center;
      }
      .info-box1 .info-address {
        display: block;
        letter-spacing: -5%;
      }
      .info-box1 .info-address .info-add-title {
        display: inline-block;
        padding: 3px 22px;
        margin-bottom: 14px;
      }
      /* .info-box {
        font-size: 16px;
      } */
      .info-box1 .mtop {
        margin-top: 24px;
      }
      .sbody-scontainer .contents-txt1 br {
        display: block !important;
      }
      
      .product_bg2 .product-box .box {
        width: 100%;
      }
      .product_bg2 .product-box {
        display: block;
        width: 100%;
       }
       .product_bg2 .product-box .box  {
        margin-bottom: 10px;
       }
       .product_bg3 .pro-box {
        width: 100%;
        display: block;
      }
      .product_bg3 .pro-box .box  {
        width: 100%;
        min-height: auto;
        margin-bottom: 10px;
        padding-right: 200px;
       }
       .pro-box.m80 {
          margin-top: 48px !important;
          margin-bottom: 10px;
      }
      .product_bg3 .pro-box .box:last-child {
        margin-bottom: 0 !important;
      }
      .product_bg4 {
        background-image: url('../images/img_product_bg1-mobile.png'); 
      }
       .product_bg1 {
        background-color: #F2F5FC;
        background-image: none;
        padding-bottom: 80px !important;
      }
      .product_bg2 .pc {
        display: none;
      }
      .product_bg2 .mobile{
        display: block;
      }
      .product_bg4 .pro-box1 {
        margin-top: 62px;
      }
      .product_bg4 .pro-box1, .product_bg4 .pro-box2 {
        display: block;
      }
      .product_bg4 .pro-box2 {
        margin-top: 0;
      }
      .product_bg4 .pro-box1 .box, .product_bg4 .pro-box2 .box {
        width: 100%;
        display: flex;
        gap: 12px;
        padding: 32px;
      }
    
      .product_bg4 .pro-box1 .box h3, .product_bg4 .pro-box2 .box h3 {
        margin-top: 0;
      }
      .model_bg5 .model-box .model-grap {
          width: 100%;
      }
      .business_bg0 .col-lg-7, .business_bg1 .col-lg-7, .business_bg2 .col-lg-7 {
        width: 50%;
      }
      .business_bg0 .col-lg-5, .business_bg1 .col-lg-5, .business_bg2 .col-lg-5 {
        width: 50%;
      }
    }
    /* tablet */
    @media (max-width: 1024px){
      .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl 
      {
        padding: 0 20px;
      }
      .business-total {text-align: center;}
      .download-section{
        padding:0;
        width: 100%;
      }
      .hero h2 {
        font-size: 52px;
      }
      .hero h2 br {display: block;}
      .sbody-scontainer .contents-txt1 p {
        margin-top: 32px;
      }
      .business_bg1 .col-lg-5, .business_bg2 .col-lg-5, .business_bg0 .col-lg-5{
        margin-top: 32px;
      }
      .business_bg0 .col-lg-7, .business_bg1 .col-lg-7, .business_bg2 .col-lg-7{
        margin-top: 0;
      }
      .business_bg0 .col-lg-7, .business_bg1 .col-lg-7, .business_bg2 .col-lg-7, .business_bg0 .col-lg-5, .business_bg1 .col-lg-5, .business_bg2 .col-lg-5 {
        width: 100%;
      }
.business_bg1, .business_bg2, .business_bg3 {
  padding-top: 100px !important;
}
.business_bg2 {
  background-image: url('../images/img_business-mobile_bg.png'); 
}
      .ps-lg-6 {
        margin-left: 0;
        text-align: center;
    }
      
      .company_bg1 {
        background-image: url('../images/img_company-mobile_bg1.png'); 
      }
      .ceo-img.pc {display: none;}
      .ceo-img.mobile {
        display: block; 
        position: relative;
      }
      .company_box {
        margin-top: 0;
        word-break: keep-all;
      }
      .company_box br{display: none;}
      .company_box .col-lg-8 {
        margin-left: 24px;
        width: calc(100% - 48px) !important;
        font-size: 16px;
      }
      .ceo-img {
        width: 100%;
      }
      .ceo-logo {
        margin: 40px;
        text-align: center;
      }
      .ceo-logo img {
        width: 300px;
      }
      .ceo-sign {
        padding-right: 0;
      }
      .download-item{
        padding:32px 40px;
      }
      
      .download-btn{
        min-width:180px;
      }
      .menu-btn {
        width: 30px;
      }
      .ps-lg-6 {
        margin-left: 30px;
      }
      .ps-rg-6 {
        margin-right: 30px;
      }
      .sub-htitle {
        font-size: 22px;
      }

      .company_bg3 .pc {
        display: none;
      }
      .company_bg3 .mobile {
        display: block;
      }  
      .address-box .address-title {
        font-size: 16px;
      }
      .address-box .address-txt {
        font-size: 17px;
      }
      .info-box .info-text {
        display: block;
        text-align: center;
      }
      .info-box .info-text .line {
        display: none;
      }
      .mtop {
        margin-top: 20px;
      }
      .info-box1 {
        display: block;
        text-align: center;
      }
      .info-box1 .info-address {
        display: block;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: -5%;
      }
      .info-box1 .info-address .info-add-title {
        display: inline-block;
        font-size: 15px;
        font-weight: 500;
        padding: 3px 22px;
        margin-bottom: 14px;
      }
      .info-box {
        font-size: 16px;
      }
      .img-product-bg1 {
        display: none;
      }    
      .model_bg3 .model-box .box .model-round.round01 {
          width: 135px;
          height: 40px;
          padding: 0;
      }
      .model_bg3 .model-box .box .model-round.round02 {
          width: 175px;
          height: 40px;
          padding: 0;
      }
      .model_bg3 .model-box .box .model-round.round03 {
          width: 199px;
          height: 40px;
          padding: 0;
      }
      .model_bg3 .model-box .box .model-round.round04 {
          width: 156px;
          height: 40px;
          padding: 0;
      }
      .model_bg3 .model-box .box .model-round {
          position: absolute;
          top: 8px;
          font-size: 13px;
          line-height: 1;
          /* font-weight: 600; */
      }
       .model_bg3 .model-box {
           z-index: 1;
           
       }
       .model_bg3 .pc {
        display: none;
       }
       .model_bg3 .mobile {
        display: block;
        width: 100%;
       }
      .model_bg3 .model-box .box {
          width: 100%;   
           z-index: 1;     
      }
      .model_bg3 .model-box .box h3 {
        font-size: 20px;
        margin: 32px 0 16px 0;
      }
      .model_bg3 .model-box .box h3.last {
        margin: 24px 0 16px 0 !important;
      }
      .model_bg3 .model-box .box p {
        font-size: 14px;
      }
      .model_bg3 .model-box .box p span {
        font-size: 12px;
      }
      .model_bg3 .model-box .box .box-wrap {
        width: 300px;
        height: 290px;
        z-index: 1;
        position: relative;
      }
      .model_bg3  .swiper-slide {
        width: 300px !important;
      }
      .model_bg3 .swiper-slide:last-child {
        width: 340px !important;
      }
      .model_bg1 .model-table .table2 th,
      .model_bg1 .model-table .table2 td {
        padding: 10px 0;
      }
      .model_bg3 .model-box .won {
        width: 60px;
        height: 60px;
        right: 0px;
        top: 38%;
        position: absolute;
        z-index: 33;
      }
      .model_bg3 .model-txt {
        font-size: 16px;
      }
      .model_bg7 .advice-box, .model_bg7 textarea {
        width: 100%;
      }
      .model_bg6-1 .compare-section table br {
        display: block;
      }
      
      .model_bg6-1 .compare-section .compare-table1 th {
        font-size: 13px;
        line-height: 16px;
        padding: 0;
        height: 40px;
      }
      .model_bg6-1 .compare-section .compare-table1 td {
        font-size: 13px; 
        letter-spacing: -7%;    
        padding: 16px 0;
      }    
      
      .model_bg6-1 .compare-section .compare-table2 th {
        font-size: 13px;
      }
      .model_bg6-1 .compare-section .compare-table2 td {
        font-size: 13px;
      }
      .model_bg6-1 .compare-section .compare-table1 .compare-table-bg { 
        width: 32px;
      }

       .sub-txt1 p {
        word-break: keep-all;
       }
       .product_bg4 .pro-box1 .box .txt, .product_bg4 .pro-box2 .box .txt {
         width: calc(100% - 64px);
       word-break: keep-all;
      }

    }

    @media(max-width:900px){
      .company_bg2 .col-lg-5 {
          width: 100%;
      }
      .company_bg2 .ml-50 {
        margin-left: 0;
       }
    }

    /* mobile */
    @media (max-width: 768px){
      .sbody-container { 
        padding: 80px 0;
      }
      .sbody-container.m-top {
        margin-top: 60px;
        padding-bottom: 64px;
      }
      .download-section{
        width: 100%;
      }
      .sbody-scontainer .s-title {
  padding: 3px 16px 4px 16px !important;
      }
      .company_bg2 .history-box {
        padding-left: 16px;
        width: calc(100% - 16px);
        letter-spacing: -3% ;
      }
      .company_bg2 .history-box .year .dot {
            left: -20px;
      }
      .company_bg2 .row {
        width: calc(100% - 10px);
        margin-left: 10px;
      }
      .data_bg1 {
        padding-top: 80px;
      }
      .faq_bg1 {
        margin-top: 60px;
      }
      .ps-lg-6 {
        margin-left: 0;
        text-align: center;
      }
      .ps-rg-6 {
        margin-right: 0;
        text-align: center;
      }
      .business_bg1 .pc, .business_bg2 .pc  {display: none;}
      .business_bg1 .mobile, .business_bg2 .mobile  {display: block;}
      .business-total {text-align: center;}
      .business-total span {
        font-size: 14px;
      }
      .data_bg1 {
        background-image: url(../images/img_data-mobile_bg.png); 
      }
      .download-item{
        flex-direction:column;
        align-items:flex-start;
        padding:32px 20px;
        gap:16px;
      }

      .download-info{
        width:100%;
        gap:10px 14px;
        justify-content:center;
      }

      .download-title{
        white-space:normal;
      }

      .download-divider{
        height:20px;
      }

      .download-btn{
        width: 120px;
        height:46px;
        font-size:16px;
        margin: 0 auto;
      }

      .sub-htitle {
        font-size: 30px;
      }
      .faq .faq-container .faq-item h3 {   
        font-weight: 600;
        font-size: 18px;
        padding-left: 22px;
        letter-spacing: -5%;
      }
      .faq .faq-container .faq-item .faq-content p  {   
        font-size: 18px;
        padding-left: 22px;
      }
      .sub-htitle {
        font-size: 24px;
        text-align: center;
      }
      .sub-txt {
        text-align: center;
        font-size: 14px;
      }
      .sub-txt.pc {display: none;}
      .sub-txt.mobile{display: block;}
      .ceo-img.pc {display: none;}
      .ceo-img.mobile {
        display: block; 
        position: relative;
      }
      .company_box {
        margin-top: 0;
        word-break: keep-all;
      }
      .company_box br{display: none;}
      .company_box .col-lg-8 {
        margin-left: 24px;
        width: calc(100% - 48px) !important;
        font-size: 16px;
      }
      .model_bg5 .model-box .model-table td:last-child {
          border-right: 1px solid #ECEFF2;
      }
      .model_bg2 .model-table ul br {
        display: block;
      }
      .company_box .col-lg-8 p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 33px;
      }
      .ceo-sign {
        margin: 36px 0 42px 0;
      }
      .ceo-img {
        width: 100%;
      }
      .company_box .m-96 {
        margin-top: 33px;
      }
      .ceo-logo {
        margin: 40px;
        text-align: center;
      }
      .ceo-logo img {
        width: 250px;
      }
      .ceo-sign {
        padding-right: 0;
      }      
      .business-box2 {
        display: block;
        font-size: 14px;
        margin-top: 64px;
      }
      .business-box2 .col-lg-3 {
        width: 100% !important;
        margin: 0 0 12px 0;
      }
      .address-box {
        display: block;
      }
      .address-box {
        text-align: center;
      }
      .address-box .address-title {
        display: inline-block;
        margin: 0 auto;
        font-size: 15px;
        font-weight: 400;
        padding: 3px 16px;
      }
      .address-box .address-txt {
        font-size: 16px;
        text-align: center;
        margin-left: 0;
        margin-top: 16px;
      }
      .mediacope-map {
        min-height: 400px;
        margin-top: 52px;
      }
      .sbody-scontainer .contents-txt1 {
        font-size: 24px !important;
        line-height: 1.2;
        font-weight: 700 !important;
      }
      .sub-txt1 h3{
        margin-top: 40px;
        font-size: 18px;
        margin-bottom: 20px;
      }
      .sub-txt1 p{
        font-size: 13px;
      }
      .sub-txt1 p br{
        display: none;
      }
      .sbody-scontainer .contents-txt1 p{
        margin-top: 24px;
      }
      .hero img.pc {
        display: none;
      }
      .hero img.mobile {
        display: block;
      }
      .product_bg1 {
        background-color: #F2F5FC;
        background-image: none;
        padding-bottom: 80px !important;
      }
      .product_bg2 {
        background-image: url('../images/img_product_bg-mobile.png'); 
      }

      .product_bg2 .product-img1.mobile {
        display: block;
      }
      .product_bg2 .product-img1.pc {
        display: none;
      }
      .product_bg2 .product-img1 {
        margin: 65px 0 60px 0;
      }
      .product_bg2 .product-box .box {
        width: 100%;
      }
      .product_bg2 .product-box {
        display: block;
        width: 100%;
       }
       .product_bg2 .product-box .box  {
        min-height: auto;
        padding: 24px;
        margin-bottom: 10px;
       }
      .product_bg2 .product-box .box .img {
        width: 70px;
      }
      .product_bg2 .product-box .box h3 {
        font-size: 18px;
        margin-bottom: 20px;
      }
      .product_bg2 .product-box .box p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 0;
      }
      .product_bg3 {
        padding-bottom: 70px !important;
      }
      .model_bg3 .contents-txt2 {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
        margin: 0 0 40px 0;
      }
      .product_bg3 .pro-box {
        width: 100%;
        display: block;
      }
      .product_bg3 .pro-box .box  {
        width: 100%;
        min-height: auto;
        padding: 96px 18px 24px 24px;
        margin-bottom: 10px;
       }
       .product_bg3 .pro-box .box .pc {
        display: none;
       }
       .product_bg3 .pro-box .box .mobile {
        display: block;
       }
       .product_bg3 .zoomin-txt {
          letter-spacing: -5% !important;
        }
       .pro-box.m80 {
          margin-top: 48px !important;
      }
      .product_bg3 .pro-box .box:last-child {
        margin-bottom: 0 !important;
      }
      .product_bg3 .pro-box .box h3 {
        font-size: 18px;
        margin-bottom: 24px;
      }
      .product_bg3 .pro-box .box p {
        font-size: 12px;
      }
      .product_bg3 .pro-box .box .img {
        width: 44px;
        top: 24px;
        left: 24px;
      }
      .product_bg4 {
        background-image: url('../images/img_product_bg1-mobile.png'); 
        padding-bottom: 130px;
      }
      .product_bg4 .pro-box1 {
        margin-top: 62px;
      }
      .product_bg4 .pro-box1, .product_bg4 .pro-box2 {
        display: block;
      }
      .product_bg4 .pro-box2 {
        margin-top: 0;
      }
      .product_bg4 .pro-box1 .box, .product_bg4 .pro-box2 .box {
        width: 100%;
        display: flex;
        gap: 12px;
        padding: 32px 20px;
      }
      .product_bg4 .pro-box1 .box .img, .product_bg4 .pro-box2 .box .img {
        width: 32px;
      }
    
      .product_bg4 .pro-box1 .box h3, .product_bg4 .pro-box2 .box h3 {
        margin-top: 0;
        font-size: 18px;
      }
      .product_bg4 .pro-box1 .box p, .product_bg4 .pro-box2 .box p {
        font-size: 12px;
        margin-bottom: 0;
        white-space:normal;
      }
      .company_bg2 {
      background-image: url('../images/history_mobile_bg.png'); 
      }
      
      .model_bg3 .model-txt {
          font-size: 14px;
          padding: 45px 26px;
          border-radius: 10px;
          margin: 24px 20px 0 20px;
          text-align: center;
          letter-spacing: -3%;
          width: calc(100% - 40px);
      }
      .model_bg3 .model-box {
        gap: 0;
        padding: 0 20px;
      }
      .model_bg3 .container{
        padding: 0;
      }
      .model_bg4 .contents-txt2 {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
        margin: 0 0 8px 0;
      }
      .model_bg4 .contents-txt2 br {
        display: block;
      }
      .model_bg3 {
        background-image: url('../images/img_model_mobile-bg3.png');
        }
      .model_bg6 {        
        padding: 80px 0 !important; 
        min-height: 400px;
      }
      .model_bg5 .model-box .model-title .contents-txt2 {
      font-size: 24px;
    }
    .model_bg5 .model-box .model-title .model-time .won1 .won-grap {
      width: 124px;
      height: 124px;
      line-height: 124px;
      font-size: 36px;
    }
    .model_bg5 .model-box .model-title .model-time .won2 .won-grap {
      width: 130px;
      height: 130px;
      line-height: 130px;
      font-size: 40px;
    }
    .model_bg5 .model-box .model-title .model-time .won1 .won-grap span ,
    .model_bg5 .model-box .model-title .model-time .won2 .won-grap span{
      font-size: 16px;
      }
    .model_bg5 .model-box .model-table th {
      padding: 12px 3px;
      width: auto;
    }
    .model_bg5 .model-box .model-table td {
      padding: 16px 3px;
    }
    .model_bg5 .model-box .pc {
      display: none;
    }
    .model_bg5 .model-box .mobile {
      display: block;
    }
    .model_bg5 .model-table2 .li-wrap p {
      width: 55px;
      font-size: 12px;
    }
    .model_bg5 .model-table2 .li-wrap br {
      display: block;
    }
    .model_bg5 .model-table2 .li-wrap li {
      font-size: 12px;
    }
    .model_bg5 .model-box .model-title .model-time p {
    font-size: 16px; 
    }
    .model_bg5 .model-box .model-title .model-time .won2 p {
    font-size: 16px; 
  }
  .company_bg2 .row {
    margin-top: 8px;
  }
      .model_bg6 .contents-txt2 {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
        margin: 0 0 40px 0;
      }
      .model_bg6 p {
        font-size: 14px;
        line-height: 20px;
      }
      .model_bg6-1 {
        padding: 40px 0 0 0;
      }
      .model_bg6-1 .contents-txt2 {
          font-size: 22px;
          letter-spacing: -4%;
          margin-bottom: 40px;
      }
      .model_bg6-1 .singitbox-wrap.pc {
        display: none;
      }
      .model_bg6-1 .singitbox-wrap.mobile {
        display: block;
      }
      .model_bg6-1 .singitbox-wrap {
        display: block;
      }
      .model_bg6-1 .singitbox-wrap .sigitbox-img {
        width: 100%;
      }
      .model_bg6-1 .singitbox-wrap .sigitbox-img .sigitbox-txt {
        bottom: 0;
        min-height: auto;
      }
      .model_bg6-1 .singitbox-wrap .sigitbox-img .sigitbox-txt h3 {
        font-size: 18px;
      }
      .model_bg6-1 .singitbox-wrap .sigitbox-img .sigitbox-txt p {
        font-size: 12px;
        letter-spacing: -4%;
      }
      .model_bg6-1 .compare-section {
        margin-top: 64px;
      }
      .model_bg6-1 .compare-section .compare-table1 .compare-table-bg { 
        width: 13px;
      }
      .model_bg6-1 .compare-section .compare-table2 table {
        border: 2px solid #FF0000;
      }
      .model_bg6-1 .compare-section .compare-table2 td {
        font-size: 12px;
        height: 64px;
      }
      .model_bg6-1 .compare-section .compare-table2 td.h100 {
        height: 80px;
        padding: 0;
      }
      .model_bg6-1 .compare-section .compare-table2 td.h120 {
        height: 120px;
        padding: 0;
      }
      .model_bg6-1 .compare-section .compare-table2 td.h120 p {
        margin-top: 6px !important;
      }
      .model_bg6-1 .compare-section .compare-table2 td p {
        color: rgb(75, 89, 124, 0.7);
        font-size: 10px;
        letter-spacing: -10%;
        margin-top: 6px;
        font-weight: 400;
      }
      
      .model_bg6-1 .compare-section .compare-table2 th  {
        padding: 12px 3px;
      }
      .model_bg6-2 .contents-txt2 {
        font-size: 22px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 40px;
      }
      .model_bg6-2 .pro-box {
        width: 100%;
        display: block;
        margin-bottom: 10px;
      }
      .model_bg6-2 .pro-box.m80 {
        margin-top: 0 !important;
      }
      .model_bg6-2 .pro-box .box  {
        width: 100%;
        min-height: auto;
        padding:  20px 24px ;
        margin-bottom: 10px;
        border-radius: 10px;
        min-height: 88px;
        display: flex;
        align-items: center;
       }
       
      .model_bg6-2 .pro-box .box:last-child {
        margin-bottom: 0 !important;
      }
      .model_bg6-2 .pro-box .box h3 {
        font-size: 16px;
        margin-bottom: 8px;
        margin-left: 52px;
        line-height: 1;
      }
      .model_bg6-2 .pro-box .box p {
        font-size: 12px;
        line-height: 16px;
        margin-left: 52px;
        margin-bottom: 0;
        color:#4B597C;
        letter-spacing: -5%;
      }
      .model_bg6-2 .pro-box .box p br {
        display: none;
      }

      .model_bg6-2 .pro-box .box .img {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
        left: 24px;
      }
      .model_bg7 .contents-txt2 {
        margin-bottom: 56px;
      }
      .model_bg7 .info-box .info-text {
          display: block;
          margin-bottom: 48px;
          font-size: 14px;
      }
      .model_bg7 .info-box .info-text .info-title {
          font-size: 13px;
          line-height: 1;
          display: inline-block;
          margin-bottom: 16px;
      }

      .model_bg7 .info-box .info-text .line {
        display: none;
      }
      .model_bg7 .info-box .info-text span {
        font-weight: 700;
      }
      .model_bg7 .advice-box {
        width: 100%;
        display: block;
        }
      .model_bg7 .advice-box .input-w50 {
        width: 100%;
        border-radius: 4px;
        font-size: 13px;
      }
      .model_bg7 .advice-box .input-w50.m32 {
        margin-left: 0;
      }
      .model_bg7 textarea {
        width: 100%;
        font-size: 13px;
      }
      .model_bg7 .advice-btn {
        width: 100%;
        font-size: 13px;
        padding: 8px 0;
      }
      .model_bg7 .text-number {
        width: 100%;
        font-size: 12px;
      }
      .model_bg7 .contents-txt2 {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
      }
      
      .graph-wrap {
        margin-bottom: 32px;
        padding-top: 24px;
      }
      .value {
        min-width: 50px;
        font-size: 26px;
        font-weight: 700;
      }
      .value em {
        font-size: 16px;
      }
      .bar-title {
        font-size: 15px;
        text-align: left;
      }
      .bar-area {
        height: 48px;
      }
      .bar-fill {
        padding-left: 14px;
        line-height: 1.2;
      }
      .bar-title span {
        font-size: 11px; 
        margin-left: 0;
        display: block;        
      }
      .company_bg4 .pc {
        display: none;
      }
      .company_bg4 {
        display: block;
        padding-bottom: 150px;
      }
      .info-box1 {
        margin-top: 36px;
      }
      .model_bg1 .model-table .table1 th, .model_bg1 .model-table .table1 td {
        padding: 12px 0;
      }
      .model_bg1 .model-table {
        margin-top: 56px;
      }
      .model_bg1 .contents-txt2 {
        margin-bottom: 64px;
      }
      .model_bg1 {
        margin-top: 60px;
      }
      .model_bg4 .model-box1 .model-won1 .won h3, 
      .model_bg4 .model-box1 .model-won2 .won h3,
      .model_bg4 .model-box1 .model-won3 .won h3,
      .model_bg4 .model-box1 .model-won4 .won h3,
      .model_bg4 .model-box1 .model-won5 .won h3   {
        font-size: 15px;
        margin: 0 0 7px 0;
        letter-spacing: -4%;
      }
      .model_bg4 .model-box1 .model-won2 .pc {
        display: none;
      }
      .model_bg4 .model-box1 .model-won2 .mobile {
        display: block;
      }
      .model_bg4 .model-box1 .model-won2 .mobile br{
        display: block;
      }
      .model_bg4 .model-box1 .model-won2 .won.won-mobile{
        padding: 16px 24px !important;
      }
      .product_bg4 .pc {
        display: none;
      }
      .product_bg4 .mobile {
        display: block;
      }
    }

    /* small mobile */
    @media (max-width: 480px){
      .header_t {
        min-height: 60px;
        padding: 0 20px;
      }
      .hero .container img {
          width: 120px;
          margin-bottom: 34px;
      }
      .hero h2 {
        font-size: 26px;
        letter-spacing: -5%;
      }
      .hero h2 br {
        display: block !important;
      }
      .text_red {
        font-size: 32px !important;
        line-height: 1 !important;
        margin-top: 12px !important;        
      }
      .hero .d-flex {
        font-size: 13px !important;
        word-break: keep-all !important;
      }
      .hero .pc {
        display: none;
      }
      .hero .mobile {
        display: block;
      }
      .hero .d-flex br {
        display: none;
      }
      .ps-lg-6 {
        margin-left: 0;
        text-align: center;
      }
      .ps-rg-6 {
        margin-right: 0;
        text-align: center;
      }
      .business_bg1 .pc {display: none;}
      .business_bg1 .mobile {display: block;}
      .model_bg1 .contents-txt2{
        font-size: 24px;
        text-align: center;
      }
      
      .model_bg1 .model-table h3 {
        font-size: 18px;
      }
      .model_bg1 .model-table h3 span{
        font-size: 12px;
      }
      .model_bg2 .contents-txt2{
        font-size: 24px;
        text-align: center;
      }
      
      .model_bg2 .model-table h3 {
        font-size: 18px;
      }
      .model_bg2 .model-table h3 span{
        font-size: 12px;
      }
      .model_bg6-1 .compare-section .compare-table1 .compare-table-bg { 
        width: 9px;
      }
      
      .data_bg1 {
        margin-top: 60px;
      }
      .download-section {
        width: 100%;
        margin-top: 46px;
      }
     .download-info {
        justify-content:center;
      }
      .download-section{
        padding:0;
      }
      

      .download-list{
        gap:12px;
      }

      .download-item{
        border-radius:8px;
        padding:32px 16px 24px 16px;
        border: 1.5px solid #575DB9;
      }

      .download-title{
        font-size:16px;
      }

      .download-lang{
        font-size:16px;
      }

      .download-divider{
        height:10px;
      }

      .download-btn{
        min-width: 120px;
        height:32px;
        font-size:13px;
        margin: 0 auto;
      }
      .sub-htitle {
        font-size: 24px;
        text-align: center;
      }
      .sub-txt {
        text-align: center;
        font-size: 14px;
      }
      .business-list li { 
        font-size: 12px;
        letter-spacing: -6%;
      }
      .business_bg1 .business-list li, .business_bg2 .business-list li {
        font-size: 12px;
        line-height: 18px;
        color: rgb(255, 255, 255, 0.9);
        letter-spacing: -6%;
      }
      .business_bg0 .business-list br {
        display: block;
      }
       .business_bg2 {
        padding-bottom: 150px;
       }
      .business-list li .round-title {
        min-width: 75px;
        font-size: 11px;
        padding: 5px 0;
      }
      .sbody-scontainer .s-title {
        font-size: 13px !important; 
      }
      .menu-btn {
        width: 24px;
      }
      .faq_bg1 {
        padding: 60px 0 120px 0;
      }
      .faq_bg1 .sub-htitle.pc {
        display: none;
      }
      .faq_bg1 .sub-htitle.mobile {
        display: block;
        text-align: center;
      }
      .faq .faq-container {
          margin-top: 40px;
      }
      .faq .faq-container .faq-item {
        padding: 24px 10px 24px 16px;
        letter-spacing: -5%;
      }
      .faq .faq-container .faq-item .pc {
        display: none;
      }
      .faq .faq-container .faq-item .mobile {
        display: block;
      }
      .faq .faq-container .faq-item .faq-toggle {        
         right: 16px;
         top: 30px;
         font-size: 12px;
         width: 12px;
         height: 12px;
      }     
      .faq .faq-container .faq-item h3 {   
        font-weight: 700;
        font-size: 14px;
        padding-left: 14px;
        margin-right: 10px;
        letter-spacing: -5%;
      }
      .faq .faq-container .faq-item .faq-content p  {   
        font-size: 13px;
        padding-left: 14px;
        line-height: 18px;
      }
        .faq .faq-container .faq-item .faq-content p span {
          font-size: 14px;
      }
      .faq .faq-container .faq-active .faq-content {
        padding-top: 16px;
      }
      .ceo-img.pc {display: none;}
      .ceo-img.mobile {
        display: block; 
        position: relative;
      }
      .company_box {
        margin-top: 0;
        padding-right: 0;
        font-size: 14px;
        word-break: keep-all;
      }
      .company_box br{display: none;}
      .company_box .col-lg-8 {
        margin-left: 24px;
        width: calc(100% - 48px) !important;
        font-size: 14px;
      }
      .company_bg4 .mobile {
        display: block;
      }
      .company_bg4 .mobile .tel-box {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .company_bg4 .mobile .tel-box .line {
        display: block;
        margin: 0 10px;
        height: 12px;
      }
      .ceo-img {
        width: 100%;
      }
      .ceo-logo {
        margin: 40px;
        text-align: center;
      }
      .company_box .m-96 {
        margin-top: 33px;
      }
      .ceo-logo img {
        width: 180px;
      }
      .ceo-sign {
        padding-right: 0;
      }
      .ceo-sign img {
        width: 75px;
      }
      .text-li {
        font-size: 12px;
        line-height: 18px;
       }
      .company_bg3 h3 { 
        font-size: 16px;
        letter-spacing: -6%;
        line-height: 22px;
      }
      .business-box1{
        margin-top: 64px;
      }
      .business-box1 p{
        letter-spacing: -8%;
      }
      .business-box2 {
        display: block;
        font-size: 14px;
        margin-top: 64px;
      }
      .company_bg3 .mobile {
        width: 100%;
      }
      .business-box2 .col-lg-3 {
        width: 100% !important;
        margin: 0 0 12px 0;
      }
      .business-box1 .business-li {
        padding: 0;      
      }
      .business-box1 .business-li.w90 {
        width: 90px;
      }
      .business-box1 .business-li.m20 {
        margin: 0 18px;
        width: 105px;
      }
      .business-box1 .business-li img {
        width: 90px;
      }
      .address-box {
        text-align: center;
      }
      .address-box .address-title {
        display: inline-block;
        margin: 0 auto;
        font-size: 15px;
        font-weight: 400;
        padding: 3px 16px;
      }
      .address-box .address-txt {
        font-size: 16px;
        text-align: center;
      }
      .address-box .address-txt br {
        display: block;
      }
      .mediacope-map {
        min-height: 220px;
        margin-top: 56px;
      }
      .business_bg0 .business-list li .round-title {
        min-width: 80px;
      }
      .business_bg0 .business-list .logo-img {
        min-width: 80px;
        margin-right: 12px;
        text-align: center;
      }
      .business-list li img {
        margin-right: 0;
      }
      .business_bg1 .business-list li, .business_bg2 .business-list li {
        padding:14px 0;
      }
      .product_bg2 .product-box .box {
        width: 100%;
      }
      .product_bg2 .product-box {
        display: block;
        width: 100%;
       }
       .product_bg2 .product-box .box  {
        min-height: auto;
        padding: 24px 0 32px 0;
        margin-bottom: 10px;
       }
      .product_bg2 .product-box .box .img {
        width: 70px;
      }
      .product_bg2 .product-box .box h3 {
        font-size: 18px;
      }
      .product_bg2 .product-box .box p {
        font-size: 12px;
      }
      .product_bg3 .pro-box {
        width: 100%;
        display: block;
      }
      .product_bg3 .pro-box .box  {
        width: 100%;
        min-height: auto;
        padding: 88px 24px 24px 24px;
        margin-bottom: 10px;
       }
       .pro-box.m80 {
          margin-top: 48px !important;
      }
      .product_bg3 .pro-box .box:last-child {
        margin-bottom: 0 !important;
      }
      .product_bg3 .pro-box .box h3 {
        font-size: 18px;
        margin-bottom: 16px;
      }
      .product_bg3 .pro-box .box p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 0;
        color: #3D4C6D;
      }
      .product_bg3 .pro-box .box .img {
        width: 44px;
        top: 24px;
        left: 24px;
      }
      .product_bg4 .pro-box1 {
        margin-top: 62px;
      }
      .product_bg4 .pro-box1, .product_bg4 .pro-box2 {
        display: block;
      }
      .product_bg4 .pro-box2 {
        margin-top: 0;
      }
      .product_bg4 .pro-box1 .box, .product_bg4 .pro-box2 .box {
        width: 100%;
        display: flex;
        gap: 12px;
        padding: 32px 0 32px 20px;
      }
      .product_bg4 .pro-box1 .box .img, .product_bg4 .pro-box2 .box .img {
        width: 32px;
      }
    
      .product_bg4 .pro-box1 .box h3, .product_bg4 .pro-box2 .box h3 {
        margin-top: 0;
        font-size: 18px;
      }
      .product_bg4 .pro-box1 .box p, .product_bg4 .pro-box2 .box p {
        font-size: 12px;
        margin-bottom: 0;
      }    
      .model_bg6 {
        background-image: url('../images/img_model_bg6m.png');
        min-height: 343px;
      }
      .footer_copyright .link li span {
        font-size: 11px;
      }
      .footer_copyright .link {
        width: 80%;
      }
      .footer_copyright .qr {
        margin: 50px 0 0 0;
    }
    .footer_copyright .qr div {
      text-align: right;
    }
    
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.sbody-scontainer{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100% !important;
}

.sbody-scontainer .s-title {
  background-color: #FF0000; 
  color: #fff; 
  font-size: 20px; 
  padding: 4px 24px 5px 24px; 
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-flex;
}

.sbody-scontainer .contents-txt1 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -4%;
  text-align: center;
  line-height: 1.2;
}
.product_bg1 .contents-txt1, .product_bg3 .contents-txt1 {
  color:#000;
}
.product_bg2 .contents-txt1, .product_bg3 .contents-txt1, .product_bg4 .contents-txt1, .product_bg5 .contents-txt1 {
  font-weight: 700;
}
.sbody-scontainer .contents-txt1 br {
  display: none;
}
.sbody-scontainer .contents-txt1 p {
  font-weight: 700;
}

/* 푸터 */
#wrap_footer					{width:100%; background-color: #000; }

