:root {
    --costBtncolor: #313131;
    --white: #fff;
    --brandColor: #009deb;
    --brandColor2: #f3fbff;
}

.gsap{
  opacity: 0;
}

.bold {
    font-weight: 700;
}
.f_brand {
    color: var(--brandColor);
}
.f_brand2 {
    color: var(--brandColor2);
}
.f_white {
    color: #fff;
}
.underline{
    width: fit-content;
    position: relative;
    z-index: 1;
    margin: auto;
}
.underline::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    background: var(--brandColor);
    width: 100%;
    height: 30%;
    z-index: -1;
}
.title_wrap h2 {font-size: 35px; font-weight: 700; margin-bottom: 20px;  line-height: 1.3; text-align: center;}
.title_wrap h2 b {color: var(--brandColor);}
/* visual ============================================== */
.visual {
    padding: 120px 0 100px 0;
    background-color: var(--brandColor2);
}
.visual .row {
    display: flex; 
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    margin-top: 60px;
}
.visual .headline_wrap {
    margin-bottom: 0;
    position: relative;
    border-radius: 20px;
}
.visual .headline_wrap::before{
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-image: url(../images/sc1_vis.png);
    background-position: center bottom -20px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 280px;
    height: 320px;
    z-index: 0;
}
.visual .headline {
    text-align: left;
    font-size: 50px;
    line-height: 1.24;
    letter-spacing: -1px;
    color: #24243d;
    font-weight: 800;
    word-break: keep-all;
    position: relative;
    z-index: 1;
}
.visual .headline b {
    color: var(--brandColor);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.visual .sub_headline {
    font-size: 22px;
    line-height: 1.3;
    margin-left: 0;
    color: #ffffffc2;
    border-top: 0;
    padding-top: 0;
}
.visual .form_box {
    width: 440px;
    flex-shrink: 0;
}
/* section_con1 ============================================== */
.section_con1 .headline_wrap {
    text-align: center;
}

.section_con1 .con_wrap .con_list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}
.section_con1 .con_wrap .con_list .con_list_item {
    transition: 0.3s;
    position: relative;
    height: 150px;
}
.section_con1 .con_wrap .con_list .con_list_item::after{
    content: '';
    position: absolute;
    bottom: -5px;
    width: 100%;
    height: 50%;
    background-color: #e6e6e6;
    z-index: 0;
    border-radius: 10px;
    
}
.section_con1 .con_wrap .con_list .con_list_item a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    transition: all 0.3s;
    border: 1px solid #adadad;
    border-radius: 10px;
    background: #f9f9f9;
    z-index: 5;
    position: absolute;
}
.section_con1 .con_wrap .con_list .con_list_item .img_box {
    width: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_con1 .con_wrap .con_list .con_list_item .txt_box {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    overflow: hidden;
    padding: 20px 20px 20px 0;
    display: flex;
    justify-content: center;
    flex-flow: column;
}

.section_con1 .con_wrap .con_list .con_list_item .txt_box .text_wrap{
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 최대 5줄 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.section_con1 .con_wrap .con_list .con_list_item .img_box img {
    
}
.section_con1 .con_wrap .con_list .con_list_item .title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.section_con1 .con_wrap .con_list .con_list_item .title p {
    font-size: 16px;
}
.section_con1 .con_wrap .con_list .con_list_item .plus {
    display: block;
    width: 100%;
    font-size: 17px;
    text-align: right;
    color: #777777;
    margin-top: 40px;
}
.sc_qna .headline {
    text-align: center;
}
/* sc_2 ============================================== */
.section_con2 { background-color: var(--brandColor2); }
.section_con2 .inner {}
.section_con2 .inner .title_wrap {margin-bottom: 50px;}
.section_con2 .inner .title_wrap h2 {}
.section_con2 .inner .title_wrap p {line-height: 1.6; font-size: 16px; color: #333; font-weight: 500; text-align: center;}
.section_con2 .inner ul {display: grid; grid-template-columns: repeat(1, 1fr); gap:25px;}
.section_con2 .inner ul li {position: relative; height: 200px;}
.section_con2 .inner ul li::after{content: ''; position: absolute; bottom: -5px; width: 100%; height: 50%; background-color: #e6e6e6; z-index: 0; border-radius: 20px;}
.section_con2 .inner ul li a {height: 100%; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid #ccc; padding: 30px 40px; border-radius: 20px; background-color: #fff; position: relative; z-index: 10; transition: all .3s;}
.section_con2 .inner ul li a .title_box{display: flex; align-items: center; gap: 10px;}
.section_con2 .inner ul li a .title_box span {position: relative; display: inline-block; height: 36px; font-size: 15px;
font-weight: 500; color: #fff; line-height: 36px; padding: 0 15px; background: var(--brandColor); border-radius: 10px; width: fit-content;}
.section_con2 .inner ul li a .title_box h2 {font-size: 24px; font-weight: 700; line-height: 1.4;}
.section_con2 .inner ul li a p {font-size: 16px; font-weight: 400; line-height: 1.6; color: #222; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;}




/* pc hover */
@media (min-width: 768px) {
    header .group_header .gnb_list .gnb_item:hover {
        color: var(--brandColor);
    }
    .section_con1 .con_wrap .guide_list .guide_item:hover {
        background: #eee;
    }
    .section_con1 .con_wrap .con_list .con_list_item a:hover{
        margin-top: 10px;
        margin-bottom: 5px;
    }
    .section_con2 .inner ul li a:hover{
      margin-top: 10px; margin-bottom: 5px;
    }
    .slide_menu .menu_list .menu_item a:hover {
        font-weight: 600;
        background: #fff;
    }

}
/* 테블릿 */
/* 960 ~ 1023 */
@media (max-width: 1200px) {
  .visual .headline {
    font-size: 50px;
  }
  .visual .headline_wrap::before{
    width: 240px; height: 280px;
  }
  .section_con1 .con_wrap .con_list .con_list_item .title {
    font-size: 21px;
  }
  .section_con1 .con_wrap .con_list .con_list_item .img_box{
    width: 120px;
  }
  .sc_3 .company_list {
    gap: 15px;
  }
  .sc_3 .company_list .company_item img.size_s {
    height: 15px;
  }
  /* NH, 롯데 */
  .sc_3 .company_list .company_item img.size_m {
    height: 18px;
  }
  /* 기본 크기 */
  .sc_3 .company_list .company_item img.size_l {
    height: 20px;
  }
  /* 흥국 */
  .sc_3 .company_list .company_item img.size_xl {
    height: 33px;
  }
}
@media (max-width: 1023px) {
  .visual {
    padding: 120px 0 50px;
  }
  .section_con1 .con_wrap .con_list .con_list_item .desc {
    font-size: 16px;
  }
  .section_con1 .con_wrap .con_list .con_list_item .img_box{
    width: 100px;
  }
  .sc_banner strong {
    font-size: 29px;
  }
  .sc_banner button {
    font-size: 25px;
  }

}
/* 테블릿 */
/* 768 ~ 959 */
@media (max-width: 959px) {

  .headline {
    font-size: 40px;
  }
  .sub_headline {
    font-size: 22px;
  }
  
  .link_more {
    padding: 15px 25px;
  }
  .headline_wrap {
    margin-bottom: 70px;
    z-index: 9;
  }
  .visual .headline_wrap{
    padding: 0;
  }
  .visual .headline {
    font-size: 40px;
  }
  .visual .sub_headline {
    font-size: 20px;
  }
  .visual .headline_wrap::before{
    display: none;
  }
  .visual .row {
    flex-direction: column;
  }
  .visual .form_box{
    width:100%;
  }

  .section_con1 .con_wrap .con_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .sc_banner {
    padding: 35px 0;
  }
  .sc_banner button {
    font-size: 21px;
  }
}

/* 겔럭시 폴드 & 핸드폰 가로 사이즈 */
/* 587 ~ 767 */
@media (max-width: 767px) {
  .inner {
    width: calc(100% - 60px);
  }
  section {
    padding: 90px 0;
  }
  .headline_wrap {
    margin-bottom: 32px;
  }
  .headline {
    font-size: 33px;
  }
  .sub_headline {
    font-size: 19px;
  }
  .visual {
    padding: 100px 0 50px;
  }
  .visual .row {
    margin-top: 0px;
  }
  .visual .form_box {
    flex: 1;
    max-width: 100%;
    width: 100%;
  }
  .visual .headline_wrap {
    width: 100%;
  }
  .logo_list {
    margin-bottom: 25px;
  }
  .section_con1 .con_wrap .con_list .con_list_item .txt_box {
    font-size: 16px;
  }
   .section_con1 .con_wrap .con_list .con_list_item{
    height: 130px;
   }
  .sc_banner button {
    font-size: 19px;
  }
  .qna_list .qna_item .q_box, .qna_list .qna_item .a_box .a_wrap {
    padding: 25px 20px;
  }
  .qna_list .qna_item .q_box .q_wrap {
    gap: 10px;
  }
  .qna_list .qna_item .q_box, .qna_list .qna_item .a_box .a_wrap {
    padding: 25px 20px;
  }
  .qna_list .qna_item .q_box .q_wrap p {
    font-size: 18px;
  }
  .qna_list .qna_item .a_box .a_wrap {
    gap: 10px;
  }
  .sc_banner .text_box {
    flex-direction: column;
    gap: 40px;
  }
  .sc_banner h2 {
    text-align: center;
  }
  .sc_3 .company_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .sc_3 .txt_box h3 {
    font-size: 28px;
  }
  .sc_3 .txt_box p {
    font-size: 21px;
  }
  .title_wrap h2 {font-size: 28px; margin-bottom: 20px;}
  .section_con2 .inner ul li a h2 {font-size: 21px;}
}
/* 핸드폰 */
/* 431 ~ 586 */
@media (max-width: 586px) {
  .inner {
    width: calc(100% - 50px);
  }
  section {
    padding: 70px 0;
  }
  .enter_586 {
    display: block;
  }
  .none {
    display: none;
  }
  .visual .headline {
    font-size: 35px;
  }
  .section_con1 .con_wrap .con_list {
    grid-template-columns: repeat(1, 1fr);
  }
  .section_con1 .con_wrap .con_list .con_list_item{
    height: auto;
  }
  .section_con1 .con_wrap .con_list .con_list_item a {
    position: relative;
  }
  .section_con1 .con_wrap .con_list .con_list_item .txt_box {
      
  }
  .section_con1 .con_wrap .con_list .con_list_item .img_box {
    width: 25%;
  }
  .section_con2 .inner ul li{
    height: auto;
  }
  .section_con2 .inner ul li a{
    gap: 20px;
    padding: 30px 20px;
  }
  .section_con2 .inner ul li a .title_box{
    flex-flow: column;
    align-items: normal;
    gap: 8px;
  }
  
  .sc_banner strong {
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
  }
  .qna_list .qna_item .q_box, .qna_list .qna_item .a_box .a_wrap {
    padding: 15px 15px;
  }
  .qna_list .qna_item .q_box .q_wrap em, .qna_list .qna_item .a_box em {
    font-size: 18px;
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  .qna_list .qna_item .q_box .q_wrap p {
    font-size: 17px;
  }
  .qna_list .qna_item .a_box .txt_box p, .qna_list .qna_item .a_box .txt_box li {
    font-size: 15px;
  }
  .qna_list .qna_item .q_box img {
    width: 15px;
  }
  .sc_banner h2 {
    font-size: 25px;
  }
  .sc_3 .txt_box h3 {
    font-size: 24px;
  }
  .sc_3 .txt_box p {
    font-size: 18px;
  }
  .sc_3 .link_more {
    margin: 20px auto 0;
    font-size: 18px;
  }
}

/* 핸드폰 */
/* 아이폰 XR pro */
/* 360 ~ 430 */

@media (max-width: 430px) {
  .enter_430 {
    display: block;
  }
  .inner {
    width: calc(100% - 40px);
  }
  section {
    padding: 60px 0 40px;
  }
  .headline {
    font-size: 26px;
  }
  .link_more {
    padding: 15px 20px;
  }
  .title_wrap h2{
    font-size: 24px;
  }
  .visual {
    padding: 70px 0 50px;
  }
  .visual .headline{
    font-size: 26px;
  }
  .form_box .form_area h2{
    font-size: 20px;
  }
  .section_con1 .con_wrap .con_list .con_list_item .img_box{
    
  }
  .section_con1 .con_wrap .con_list .con_list_item .title{
    font-size: 18px;
  }
  .section_con1 .con_wrap .con_list .con_list_item .txt_box{

    font-size: 14px;
  }

  .section_con2 .inner ul li a{
    padding: 20px 15px;
    gap: 12px; 
  }
  .section_con2 .inner ul li a .title_box h2{
    font-size: 20px;
  }
  .section_con2 .inner ul li a .title_box span{
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
    font-size: 14px;
  }
  .section_con2 .inner ul li a p{
    font-size: 14px;
  }
  
  .sc_3 .txt_box h3 {
    font-size: 22px;
  }
  .sc_3 .txt_box p {
    font-size: 16px;
  }
}


/* 추가스크롤 */
.scroll-wrap{
  max-height: 600px;
  max-width: 900px;
  overflow-y: auto;
  margin: 75px auto 0px;
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.06);
}

/* 추가섹션 뉴스 */
.section-news .section-wrap{
  display: flex;
  align-items: center;
  height: 250px;
}
.section-news .section-wrap p strong{
  font-size: 2rem;
}


/* 추가섹션 버튼+이미지+텍스트*/
.section-wrap{
  max-width: 1200px;
  margin: 0 auto;
}
.section-list-wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 5px;

}
.section-list{
  width: 350px;
  padding: 20px;
  border-radius: 15px;
  background-color: #f9f9f9;
  box-shadow: 1px 1px 5px #777777
}
.section-list dt{
  font-weight: 600;
  font-size: 24px;
}
.section-list dd{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 95%;
  font-size: 18px;
}
.section-list .section-list-btn-wrap{
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 15px;
  letter-spacing: -1px;
}
.section-list .section-list-btn-wrap a{
  width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 2px;
  background-color: var(--brandColor);
  color: var(--white);
  border-radius: 5px;
  text-align: center;
}
.section-list .section-list-bottom{
  margin-top: 15px;
  line-height: 1.3;
}
.section-list .section-list-bottom h6{
  color: red;
  font-weight: 700;
}
@media (max-width: 767px) {
   .section-list-wrap{
    grid-template-columns: repeat(1, 1fr);
   }
   .section-list{
    width: 100%;
   }
}