/*
    *** 버튼
*/
.cl_baseButton {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap:12px;
    width: 285px;
    height: 76px;
    font-size: 25px;
    color:#ffffff !important;
    font-family:PretendardSB;
    border-radius: 10px;
    box-sizing: border-box;
    border:solid 2px #11244b;
    background-color:#11244b;
}

/*버튼 색상*/
.cl_baseButton.white {border-color:#ffffff; background-color:#ffffff;}
.cl_baseButton.blue {border-color:#5b77a1; background-color:#5b77a1;}
.cl_baseButton.beige {border-color:#c8a76a; background-color:#c8a76a;}

/*버튼 배경*/
.cl_baseButton.bgTransparent {background-color:transparent !important;}


/*버튼 텍스트 색상*/
.cl_baseButton.textBlack {color:#282828 !important;}
.cl_baseButton.textWhite {color:#ffffff !important;}
.cl_baseButton.textDarkBlue {color:#11244b !important;}




/*
    *** 섹션 타이틀
*/
.cl_sectionTitle {margin-bottom:80px; text-align:center;}
.cl_sectionTitle .mainText {font-size:54px; color:#282828; font-family:NanumMjB;}
.cl_sectionTitle .descText {font-size:33px; color:#282828; font-family:PretendardR; margin-top:35px;}
.cl_sectionTitle .highlightText {color:#9b7735;}



/*
    *** 섹션 코멘트
*/
.cl_sectionComment {font-size:33px; color:#282828; text-align:center; line-height: 1.3; margin-top:70px;}






@media (max-width:1400px) {
    /*
        *** 버튼
    */
    .cl_baseButton {
        gap: 12px;
        width: 220px;
        height: 65px;
        font-size: 20px;
        border-radius: 10px;
    }



    /*
        *** 섹션 타이틀
    */
    .cl_sectionTitle {margin-bottom:60px;}
    .cl_sectionTitle .subText {font-size:20px; margin-bottom:25px;}
    .cl_sectionTitle .mainText {font-size:40px;}
    .cl_sectionTitle .descText {font-size:24px; margin-top:25px;}



    /*
        *** 섹션 코멘트
    */
    .cl_sectionComment {font-size:24px; margin-top:50px;}

}




@media (max-width:768px) {
    /*
        *** 버튼
    */
    .cl_baseButton {
        gap: 12px;
        width: 140px;
        height: 40px;
        font-size: 14px;
        border-radius: 6px;
    }
    .cl_baseButton .icon {height:18px;}


    /*
        *** 섹션 타이틀
    */
    .cl_sectionTitle {margin-bottom:35px;}
    .cl_sectionTitle .subText {font-size:13px; margin-bottom:15px;}
    .cl_sectionTitle .mainText {font-size:25px;}
    .cl_sectionTitle .descText {font-size:15px; margin-top:15px;}



    /*
        *** 섹션 코멘트
    */
    .cl_sectionComment {font-size:17px; margin-top:30px;}
}













