/* common class */
:root 
{
    --top-title: 16px;
    --banner-title: 48px;
    --sub-title: 20px;
    --section-title2: 48px;
    --main: #E76203;
    --black: #111;
    --gray:#767676;
}
.section.companyIntroduce { padding-bottom:0; }
.title_wrap{ display: flex; gap:0 20px; align-items: center;}
.title_wrap button 
{ 
	padding: 8px 24px;
	 border: 1px solid #e5e5ec;
	 height: 48px;
	 border-radius: 30px;
	 cursor:pointer;
	 font-size: 16px;
}

.title_wrap button:hover 
{
	color: #fff;
	background: #E76203;
	border:0;
} 


.body_bottom_text 
{
	display: flex;
    align-items: center;	
    width: 100%;
}

.text_con 
{
	width: 50%;
}

.body_bottom_text .text_con .main_title 
{
	text-align: left;
	line-height: 1.5;
}

.right_text 
{
	display: flex;
	flex-direction:column;
	gap:24px 0;
}


.body_bottom_text .text_con .sub_title 
{
	color: #111;
    text-align: left;
    display: inline;
    width: initial;
    margin-left: auto;
}

.sign_text 
{
	color: var(--main);
	font-size: var(--sign);
	font-weight: 600;
}




.busienss-introduce-section { width: 100%; }

.title2 
{
	font-size: var(--section-title2)!important;
	margin-bottom: 20px;
}

.top_title
{
	font-size: var(--top-title);	
	letter-spacing:-1;
	font-weight: 300;
	margin-bottom: 8px;
}

.banner_title 
{
	font-size: var(--banner-title);	
	margin-bottom: 20px;
	line-height:1.5;
}

.sub_title 
{
	font-weight: 300;
	line-height:1.5;
	letter-spacing:-1;
	font-size: var(--sub-title);
}

.business-wrapper 
{
	display :flex;
	align-items:center;
	height: 100vh;
}

.business-wrapper:last-child
{
	margin-bottom:150px;
}

.business-wrapper > div 
{
	width: 50%;
}

.business-wrapper > div img 
{
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 12;
	border-radius: 24px;
}

.left-wrapper.text-wrapper 
{
	padding-left: 10.9375%;
	padding-right: calc(10.9375% / 4);
}

.right-wrapper.text-wrapper 
{
	padding-right: 10.9375%;
	padding-left: calc(10.9375% / 4);
}



/* 반응형 구간 */

/* 노트북 & 테블릿 가로 (해상도 1024px ~ 1279px)*/ 
@media all and (max-width:1279px) 
{ 
	:root 
	{
	    --top-title: 16px;
	    --banner-title: 48px;
	    --sub-title: 20px;
	    --section-title: 65px;
	    --section-title2: 42px;
	}
	.left_text  { width: 40%; }
	.right_text  { margin-left: 10%; }
	.business-wrapper { height: initial; margin-bottom:150px; }
	.left-wrapper.text-wrapper { padding-right: calc(10.9375% / 3); }
	.right-wrapper.text-wrapper { padding-left: calc(10.9375% / 3);  padding-right: 10.9375%; }
} 

/* 테블릿 가로 (해상도 768px ~ 1023px)*/ 
@media all and (max-width:1023px) 
{ 
	.body_bottom_text { flex-direction: column; gap:40px 0; }
	.text_con { width: 100%; }
	.right_text { margin-left: 0; }
	.content_body .text_con .sub_title { margin-left: initial; }
	.busienss-introduce-section {  width: calc((1500 / 1920) * 100%); }
	.business-wrapper { flex-direction: column;  gap: 40px 0; }
	.business-wrapper:nth-child(2n) { flex-direction:column-reverse; }
	.business-wrapper > div { width: 100%; padding:0 0!important; }
	.sub_title br { display: none; }
} 

/* 모바일 가로 & 테블릿 세로 (해상도 480px ~ 767px)*/ 
@media all and (max-width:767px)
{
	.business-wrapper { height: initial; margin-bottom:100px; }
}
/* 모바일 세로 (해상도 ~ 479px)*/ 
@media all and (max-width:479px) 
{   
	
}

