/* common class */
:root 
{
    --content-title: 42px;
    --main: #E76203;
    --black: #111;
    --gray:#767676;
}

.body_bottom_text_wrap 
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:12px 0;
	justify-content: center;
	margin: 100px 0 40px;
}

.bbt_title
{
	font-size:var(--content-title);
}

.bbt_sub_title
{
	font-size:var(--content-sub-title);
}

.list_wrap 
{
	display: flex;
    gap: 0 40px;
    width: 100%;
    margin-top: 40px;
}

.list 
{
	flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e5e5ec;
    border-radius: 13px;
    padding: 24px;
}


/* 반응형 구간 */

/* 노트북 & 테블릿 가로 (해상도 1024px ~ 1279px)*/ 
@media all and (max-width:1279px) 
{ 

} 

/* 테블릿 가로 (해상도 768px ~ 1023px)*/ 
@media all and (max-width:1023px) 
{ 

} 

/* 모바일 가로 & 테블릿 세로 (해상도 480px ~ 767px)*/ 
@media all and (max-width:767px)
{
	:root 
	{
	    --content-title: 28px;
	    --content-sub-title:16px;
	}
	.list_wrap { gap: 40px; flex-direction: column; margin-top: 20px; }
	.bbt_sub_title { text-align: center; }
}
/* 모바일 세로 (해상도 ~ 479px)*/ 
@media all and (max-width:479px) 
{   
	
}

