/* --- 대시보드 : 시작 --- */

.section_dashboard {
    position: relative;
    background-color: #f2f2f2;
}
.dashboard_whole {
    padding-top: 135px;
}
.dashboard_whole .wifth_fix {
    width: 1180px;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
}
.dashboard_whole .top_info_line {
    height: 64px;
    border:1px solid #dbdbdb;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    padding:0 32px;
    width: 1180px;
}
.dashboard_whole .top_info_line .user_line {
    display: flex;
    align-items: center;
    margin-right: auto;
}
.dashboard_whole .top_info_line .user_line i {
    display: inline-block;
    width:16px;
    height: 18px;
    background-image: url(../images/dashboard_mam_icon.png);
    background-repeat: no-repeat;
}
.dashboard_whole .top_info_line .user_line .division {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    font-size:14px;
    color:#fff;
    font-weight: 500;
    font-family: 'S-Core';
    padding:0 10px;
    background-color: #506eb5;
    border-radius: 6px;
    margin-left:6px;
}
.dashboard_whole .top_info_line .user_line .division2 {
    display: inline-block;
    font-size:16px;
    color:#757575;
    font-weight: 500;
    font-family: 'S-Core';
    margin-left:6px;
}
.dashboard_whole .top_info_line .user_line .name {
    display: inline-block;
    font-size:16px;
    color:#333;
    font-weight: 500;
    /* font-family: 'S-Core'; */
    margin-left:6px;
}
.dashboard_whole .top_info_line .user_line .name em {
    font-weight: 700;
}
.dashboard_whole .top_info_line .situation {
    background-color: #e1e1e1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0 15px;
}
.dashboard_whole .top_info_line .situation .tit {
    font-size: 13px;
    font-weight: 700;
    color:#333;
}
.dashboard_whole .top_info_line .situation .count {
    font-size: 15px;
    font-weight: 700;
    color:#4562A5;
}
.dashboard_whole .top_info_line .situation.type01 {
    width:155px;
    height: 40px;
    /* margin-left:15px; */
}
.dashboard_whole .top_info_line .situation.type02 {
    width:218px;
    height: 40px;
    margin-left:6px;
}
.dashboard_whole .top_info_line .situation.type03 {
    width:170px;
    height: 40px;
    margin-left:6px;
}
.dashboard_whole .top_info_line .quick_link {
    position: relative;
    margin-left: auto;
}
.dashboard_whole .top_info_line .quick_link .btn_link{
    display:inline-block;
    width:170px;
    height:40px;
    border-radius: 4px;
    position:relative;
    padding-left:14px;
    text-align:left;
    line-height:38px;
    border:1px solid #c6c6c6;
    margin-left:6px;
    color:#333333;
}
.dashboard_whole .top_info_line .quick_link .btn_link:before{
    display:inline-block;
    content:'';
    width:13px;
    height:7px;
    position:absolute;
    top:50%;
    right:16px;
    margin-top:-5px;
    background:url(../images/dashboard_icon_arrow.png) no-repeat;
}
.dashboard_whole .top_info_line .quick_link .btn_link.active:before{
    background:url(../images/dashboard_icon_arrow.png) no-repeat;
}
.dashboard_whole .top_info_line .quick_link .btn_link.active{
    -ms-box-shadow:0 0 8px rgba(0,0,0,.2);
    -webkit-box-shadow:0 0 8px rgba(0,0,0,.2);
    box-shadow:0 0 8px rgba(0,0,0,.2);
}
.dashboard_whole .top_info_line .quick_link .link_list{
    display:none;
    width:170px;
    padding-top:5px;
    padding-bottom:8px;
    position:absolute;
    left:7px;
    top:42px;
    background:#fff;
    border:1px solid #c6c6c6;
    z-index:10;
}
.dashboard_whole .top_info_line .quick_link .link_list.show{
    display:block;
}
.dashboard_whole .top_info_line .quick_link .link_list li{
    margin-top:8px;
    padding-left:14px;
    text-align:left;
}
.dashboard_whole .top_info_line .quick_link .link_list li a:hover{
    color:#111;
}

.dashboard_whole .notice_box{
    position: relative;
    width: 580px;
    height: 244px;
    background-color: #fff;
    border-radius: 10px;
    margin:10px 10px 0 0;
    border:1px solid #dbdbdb;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
    padding:24px 30px;
}
.dashboard_whole .notice_box h3{
    font-size: 18px;
    color:#333333;
    font-weight: 700;
}
.dashboard_whole .notice_box .notice_list{
    margin-top:15px;
}
.dashboard_whole .notice_box .notice_list li{
    margin:4px 0;
}
.dashboard_whole .notice_box .notice_list li a{
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
.dashboard_whole .notice_box .notice_list li a .tit{
    position: relative;
    width: 430px;
    font-size:14px;
    color:#333333;
    padding-left:10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dashboard_whole .notice_box .notice_list li a .tit::before{
    position:absolute;    
    content:'';
    left:0;
    top:50%;
    transform: translateY(-50%);
    width:3px;
    height: 3px;
    background-color: #333333;
    border-radius: 50%;
}
.dashboard_whole .notice_box .notice_list li a .date{
    display: inline-block;
    font-size:14px;
    color:#333333;
}
.dashboard_whole .notice_box .btn_more{
    position: absolute;
    top:30px;
    right:30px;
    width:15px;
    height: 15px;
    background-image: url(../images/dashboard_icon_more.png);
    font-size:0;
}

.dashboard_whole .part_box{
    width: 580px;
    height: 244px;
    background-color: #fff;
    border-radius: 10px;
    margin:10px 0 0 10px;
    border:1px solid #dbdbdb;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
    padding:24px 20px;
}
.dashboard_whole .part_box h3{
    font-size: 18px;
    color:#333333;
    font-weight: 700;
}
.dashboard_whole .news_box{
    width: 580px;
    height: 240px;
    background-color: #fff;
    border-radius: 10px;
    margin:10px 10px 0 0;
    border:1px solid #dbdbdb;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
    padding:24px 20px;
}
.dashboard_whole .news_box h3{
    font-size: 18px;
    color:#333333;
    font-weight: 700;
}
.dashboard_whole .calendar_box{
    width: 580px;
    height: 240px;
    background-color: #fff;
    border-radius: 10px;
    margin:10px 0 0 10px;
    border:1px solid #dbdbdb;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
    padding:24px 20px;
    display: flex;
    justify-content: space-between;
}
.dashboard_whole .calendar_box .calendar_line{
    width: 240px;
    
}
.dashboard_whole .calendar_box .calendar_info{
    width: 260px;    
}
.dashboard_whole .calendar_box .calendar_info h3{
    font-size: 18px;
    color:#333333;
    font-weight: 700;
}
.dashboard_whole .calendar_box .calendar_info .info_list_wrap{
    position:relative;
    overflow-y: auto;
    height: 170px;
}
.dashboard_whole .calendar_box .calendar_info .info_list{
    margin-top:20px;
}
.dashboard_whole .calendar_box .calendar_info .info_list li{
    margin:10px 0;
}
.dashboard_whole .calendar_box .calendar_info .info_list li .badge{
    display: inline-block;
    width:74px;
    height: 20px;
    line-height: 20px;
    color:#fff;
    font-size:13px;
    font-weight: 500;
    text-align: center;
    background-color: #dd0000;
    border-radius: 6px;
}
.dashboard_whole .calendar_box .calendar_info .info_list li .date{
    display: inline-block;
    color:#333;
    font-size:14px;
    font-weight: 500;
    margin-left:10px;
}
.dashboard_whole .calendar_box .calendar_info .info_list li .txt{
    color:#333;
    font-size:14px;
    font-weight: 500;
    margin-top:4px;
    line-height: 1.4em;
}
.dashboard_whole .warning_box{
    position:relative;
    width: 382px;
    height: 150px;
    background-color: #fff;
    border-radius: 10px;
    margin:10px 8px 0 0px;
    border:1px solid #dbdbdb;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
    padding:20px 20px;
}
.dashboard_whole .warning_box h3{
    font-size: 18px;
    color:#333333;
    font-weight: 700;
}
.dashboard_whole .warning_box .inner_cont{
    margin-top:10px;
    display:flex;
    align-items: center;
}
.dashboard_whole .warning_box .inner_cont .chart_line{
    flex-grow:1;
}
.dashboard_whole .warning_box .inner_cont .text_box {
    width:164px;
    height: 60px;
    background-color: #ececec;
    border-radius: 4px;
    flex-grow: 0;
    margin-left:14px;
    font-size:14px;
    color:#555;
    line-height: 1.4em;
    font-family: 'S-Core';
    padding:10px 24px;
}
.dashboard_whole .warning_box .inner_cont .text_box em {
    font-size: 18px;
    color: #378740;
    font-family: 'S-Core';
    font-weight: 700;
}
.dashboard_whole .warning_box .btn_more{
    position: absolute;
    top:25px;
    right:20px;
    width:15px;
    height: 15px;
    background-image: url(../images/dashboard_icon_more.png);
    font-size:0;
}
.dashboard_whole .cyber_box{
    position: relative;
    width: 382px;
    height: 150px;
    background-color: #fff;
    border-radius: 10px;
    margin:10px 8px 0 8px;
    border:1px solid #dbdbdb;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
    padding:20px 20px;
}
.dashboard_whole .cyber_box h3{
    font-size: 18px;
    color:#333333;
    font-weight: 700;
}
.dashboard_whole .cyber_box .notice_list{
    margin-top:10px;
}
.dashboard_whole .cyber_box .notice_list li{
    margin:4px 0;
}
.dashboard_whole .cyber_box .notice_list li a{
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
.dashboard_whole .cyber_box .notice_list li a .tit{
    position: relative;
    width: 230px;
    font-size:14px;
    color:#333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dashboard_whole .cyber_box .notice_list li a .date{
    display: inline-block;
    font-size:14px;
    color:#333333;
}
.dashboard_whole .cyber_box .btn_more{
    position: absolute;
    top:25px;
    right:20px;
    width:15px;
    height: 15px;
    background-image: url(../images/dashboard_icon_more.png);
    font-size:0;
}
.dashboard_whole .week_top_box{
    position: relative;
    width: 382px;
    height: 150px;
    background-color: #fff;
    border-radius: 10px;
    margin:10px 0 0 8px;
    border:1px solid #dbdbdb;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
    padding:20px 20px;
}
.dashboard_whole .week_top_box h3{
    font-size: 18px;
    color:#333333;
    font-weight: 700;
}
.dashboard_whole .week_top_box .notice_list{
    margin-top:10px;
}
.dashboard_whole .week_top_box .notice_list li{
    margin:4px 0;
}
.dashboard_whole .week_top_box .notice_list li a{
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
.dashboard_whole .week_top_box .notice_list li a .tit{
    position: relative;
    width: 230px;
    font-size:14px;
    color:#333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dashboard_whole .week_top_box .notice_list li a .date{
    display: inline-block;
    font-size:14px;
    color:#333333;
}
.dashboard_whole .week_top_box .btn_more{
    position: absolute;
    top:25px;
    right:20px;
    width:15px;
    height: 15px;
    background-image: url(../images/dashboard_icon_more.png);
    font-size:0;
}

/* tab */
.tab.list {
    width: 100%;
    margin-top:10px;
}
.tab.list ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}
.tab.list ul:after {
    content: "";
    display: block;
    clear: both;
}
.tab.list li {
    float: left;
    margin-bottom: -1px;
    margin-left: -1px;
}
.tab.list li a {
    position: relative;
    float: left;
    text-decoration: none;
    border: 1px solid #c7c7c7;
    border-bottom-color: #506eb5;
    background: #fff;
    color: #767676;
    font-size:14px;
}
.tab.list li a span {
    display: inline-block;
    padding: 6px 10px;
    letter-spacing: -1px;
    min-width: 74px;
    text-align: center;
}
.tab.list li ul {
    width: 100%;
    position: absolute;
    top: 32px;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    box-sizing: border-box;    
    border-top: 1px solid #506eb5;
}
.tab.list li li {
    float: none;
    position: relative;
    margin: 8px 0;
    color: #999;
    display: flex;    
}

.tab.list li li a {
    float: none;
    padding: 0;
    margin: 0;
    border: 0 !important;
    color: #333 !important;
    font-size:14px;
    font-weight: normal;
    letter-spacing: normal;
    flex-grow: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.tab.list li li .badge {
    display: inline-block;
    color: #333;
    width: 80px;
    height: 22px;
    flex-shrink: 0;
    line-height: 20px;
    border-radius: 4px;
    color:#fff;
    text-align: center;
    padding:0 10px;
    margin-right: 10px;
}
.tab.list li li .badge.type01 {
    background-color: #ffbb00;
}
.tab.list li li .badge.type02 {
    background-color: #757575;
}
.tab.list li li .badge.orgType01 {
    background-color: #396EF0;
}
.tab.list li li .badge.orgType02 {
    background-color: #f96b4f;
    /* background-color: #E22D08; */
}
.tab.list li li .badge.orgType03 {
	background-color: #3dbacd;
    /* background-color: #248197; */
}
.tab.list li li .badge.orgType04 {
    background-color: #ffbb00;
    /* background-color: #987000; */
}
.tab.list li li .badge.orgType05 {
    background-color: #9262AC;
}
.tab.list li li .badge.orgType06 {
    background-color: #5c6672;
}
.tab.list li li .time {
    display: inline-block;
    color: #333;
    width: 80px;
    flex-shrink: 0;
    text-align: right;
    margin-left: 10px;
}
.tab.list li.badgeRow {
    float: none;
    position: relative;
    margin: 8px 0;
    color: #999;
    display: flex;    
}

.tab.list li.badgeRow a {
    float: none;
    padding: 0;
    margin: 0;
    border: 0 !important;
    color: #333 !important;
    font-size:14px;
    font-weight: normal;
    letter-spacing: normal;
    flex-grow: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.tab.list li.badgeRow .badge {
    display: inline-block;
    color: #333;
    width: 80px;
    height: 22px;
    flex-shrink: 0;
    line-height: 20px;
    border-radius: 4px;
    color:#fff;
    text-align: center;
    /* padding:0 10px; */
    margin-right: 10px;
}
.tab.list li.badgeRow .badge.type01 {
    background-color: #ffbb00;
}
.tab.list li.badgeRow .badge.type02 {
    background-color: #757575;
}
.tab.list li.badgeRow .badge.orgType01 {
    background-color: #396EF0;
}
.tab.list li.badgeRow .badge.orgType02 {
    background-color: #f96b4f;
    /* background-color: #E22D08; */
}
.tab.list li.badgeRow .badge.orgType03 {
	background-color: #3dbacd;
    /* background-color: #248197; */
}
.tab.list li.badgeRow .badge.orgType04 {
    background-color: #ffbb00;
    /* background-color: #987000; */
}
.tab.list li.badgeRow .badge.orgType05 {
    background-color: #9262AC;
}
.tab.list li.badgeRow .badge.orgType06 {
    background-color: #5c6672;
}
.tab.list li.badgeRow .time {
    display: inline-block;
    color: #333;
    width: 80px;
    flex-shrink: 0;
    text-align: right;
    margin-left: 10px;
}

.tab.list li.active > a {
    border: 1px solid #c7c7c7;
    border-bottom: 1px solid #506eb5;
    margin-top: -1px;
    background: transparent;
    color: #fff;
    background-color: #506eb5;
}
.tab.list li.active a span {
    padding-top: 7px;
    font-weight: bold;
}

/* SECTION_FIRST */

.parallels {
    min-width: 1180px;
    margin-top: -142px;
}

.parallels_menu {
    margin-top: -77px;
    position: fixed;
    top: 50%;
    right: 50px;
    z-index: 2;
}

.parallels_menu li {
    margin-top: 14px;
}

.parallels_menu > li > a {
    position: relative;
}

.parallels_menu li:first-child {
    margin-top: 0;
}

.parallels_menu li i {
    display: inline-block;
    width: 45px;
    height: 45px;
    padding-top: 6px;
    line-height: 40px;
    background-color: #5c6672;
    border-radius: 45px;
    text-align: center;
    -webkit-transition: background 1s;
    transition: background 1s;
}

.parallels_menu.an li i {
    background: #aaa;
}

.parallels_menu li i:before {
    display: inline-block;
    content: '';
    width: 21px;
    height: 19px;
}

.parallels_menu .txt {
    display: none;
    height: 31px;
    position: absolute;
    top: 50%;
    right: 60px;
    width: 130px;
    font-weight: 500;
    margin-top: -15px;
    padding-right: 15px;
    color: #111;
    text-align: center;
    line-height: 28px;
    background: url(../images/bg_fullpage_balloon_r.png) no-repeat top right
}

.parallels_menu li:nth-child(1) .txt {
    width: 85px;
}

.parallels_menu li:nth-child(2) .txt {
    width: 70px;
}

.parallels_menu li:nth-child(3) .txt {
    width: 117px;
}

.parallels_menu li:nth-child(4) .txt {
    width: 115px;
}

.parallels_menu li:nth-child(5) .txt {
    width: 100px;
}

.parallels_menu .txt:before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 31px;
    margin-left: -8px;
    background: url(../images/bg_fullpage_balloon_l.png) no-repeat 0 0;
}

.parallels_menu li.active .txt {
    display: inline-block;
}

.parallels_menu li.active i {
    background: #ffbb00
}

.parallels_menu .icon_dashboard i {
    padding-top: 8px
}

.parallels_menu .icon_dashboard i:before {
    width: 19px;
    height: 25px;
    background: url(../images/btn_fullpage_gnb06.png) no-repeat 0 0;
}

.parallels_menu .icon_dashboard .txt {
    margin-top: -20px;
}

.parallels_menu .icon_regtech i:before {
    display: inline-block;
    content: '';
    width: 21px;
    height: 19px;
    background: url(../images/btn_fullpage_gnb01.png) no-repeat 0 0;
}

.parallels_menu .icon_compliance i:before {
    width: 21px;
    height: 21px;
    background: url(../images/btn_fullpage_gnb02.png) no-repeat 0 0;
}

.parallels_menu .icon_reporting i:before {
    width: 22px;
    height: 18px;
    background: url(../images/btn_fullpage_gnb03.png) no-repeat 0 0;
}

.parallels_menu .icon_cyber i:before {
    background: url(../images/btn_fullpage_gnb04.png) no-repeat 0 0;
}

.parallels_menu .icon_service i:before {
    width: 24px;
    background: url(../images/btn_fullpage_gnb05.png) no-repeat 0 0;
}

.section_first {
    min-width: 1180px;
    overflow: hidden;
}
.section_first video {
    position:absolute;
    top:0;
    width: 100%;
    height: auto;
}
.section_first .fp-tableCell {
    /* background: url(../images/bg_main_sec01.jpg) no-repeat left top; */
    background-size: 100% 100%;
    background-color: #000;
}
.section_first .text_wrap .big_txt {
    margin-top: 0px;
    font-size: 42px;
    color: #fff;
    font-family: 'S-Core';
    font-weight: 500;
    text-align: center;
    opacity: 0;
}
.section_first .text_wrap .big_txt strong {
    font-size: 42px;
    font-family: 'S-Core';
    font-weight: 600;
}
.section_first .text_wrap .small_txt {
    margin-top: 30px;
    font-family: 'S-Core';
    font-weight: 500;
    font-size: 16px;
    color: #757575;
    text-align: center;
    opacity: 0;
}
.section_first .search_wrap {
    width: 610px;
    position: relative;
    margin: 50px auto 0;
    opacity: 0;
}
.section_first .search_wrap input {
    display: inline-block;
    width: 100%;
    height: 68px;
    padding-left: 24px;
    padding-right: 50px;
    font-family: Noto Sans KR;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    border: 2px solid #fff;
    background-color: rgba(0,0,0,0.8);
}
.section_first .search_wrap input::-webkit-input-placeholder { color:rgba(255,255,255,0.5) }
.section_first .search_wrap input::-moz-placeholder { color:rgba(255,255,255,0.5) }
.section_first .search_wrap input:-ms-input-placeholder { color:rgba(255,255,255,0.5) }
.section_first .search_wrap input:-moz-placeholder { color:rgba(255,255,255,0.5) }
.section_first .search_wrap input::placeholder { color:rgba(255,255,255,0.5) }


.section_first .search_wrap .btn_search.wh {
    display: inline-block;
    width: 26px;
    height: 26px;
    position: absolute;
    top: 50%;
    right: 26px;
    margin-top: -13px;
    text-indent: -999em;
    font-size: 0;
    background-image: url(../images/sec01_search_icon.png);
    background-repeat: no-repeat;
    color: #fff;
}
.section_first .board_wrap {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.section_first .board_wrap:after {
    display: block;
    content: '';
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
}
.section_first .alarm_area {
    margin: 0 auto 30px;
    text-align: center;
}

.section_first .alarm_area {
    font-family: Noto Sans KR;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.section_first .alarm_area .tit {
    margin-right: 30px;
    color: rgba(255,255,255,1);
    font-family: Noto Sans KR;
}
.section_first .alarm_area .btn_alarm {
    display: inline-block;
    min-width: 240px;
    margin-left: 36px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    font-family: Noto Sans KR;
    font-weight: 400;
    background: #396EF0;
    border-radius: 5em;
    text-align: center;
}
.section_first .alarm_area .btn_alarm:after {
    display: inline-block;
    content: '';
    width: 18px;
    height: 11px;
    margin-left: 30px;
    background-image: url(../images/sec01_arrow01.png);
    background-repeat: no-repeat;
    background-position: center right;
    vertical-align: middle;
}
.section_first .board_wrap .board_area {
    width: 1180px;
    height: 76px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section_first .board_wrap .board_area dt {
    padding-right: 15px;
    padding-top: 4px;
    font-size: 16px;
    color: #fff;
}



.section_first .board_wrap .notice_wrap dt:before {
    width: 30px;
    height: 28px;
}

.section_first .board_area .cont_list {
    width: 330px;
}

.section_first .board_area .cont {
    display: block;
    width: 330px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
    font-family: Noto Sans KR;
    color: #fff;
}

.section_first .board_area dl {
    display: table;
    float: left;
    width: 560px;
    height: 76px;
    position: relative;
}

.section_first .board_area dt, .section_first .board_wrap .board_area dd {
    display: table-cell;
    height: 76px;
    padding-top: 4px;
    vertical-align: middle;
}

.section_first .board_area .btn_more {
    display: inline-block;
    width: 20px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 70px;
    margin-top: -9px;
    text-indent: -999em;
    font-size: 0;
    line-height: 0;
    background: url(../images/sprite_main.png) no-repeat -610px 0;
}

.section_first .board_area .recently_wrap .btn_more {
    right: 0;
}

.section_first .board_area .recently_wrap {
    padding-left: 20px;
}

.section_first .board_area .recently_wrap dt:before {
    width: 23px;
    height: 28px;
    background-position: -80px 0;
}

.section_first .board_area .recently_wrap:before {
    display: inline-block;
    content: '';
    width: 1px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -12px;
    background-color: rgba(255,255,255,.3)
}

/* SECTION_SECOND */
.section_second {
    min-width: 1180px;
}

.section_second .fp-tableCell {
    padding-top: 142px;
    background-color:#f2f2f2;
    background-size: cover
}

.section_second .section_tit {
    padding-top: 0;
    font-family: Noto Sans KR;
    font-size: 18px;
    color: #000;
    text-align: center;
    opacity: 0;
}

.section_second .section_tit em {
    display: block;
    margin-bottom: 3px;
    font-family: 'S-Core';
    font-weight: 600;
    font-size: 36px;
    color: #000;
}

.section_second .menu_list {
    width: 1180px;
    margin: 90px auto 0;
    position: relative;
}

.section_second .menu_list li {
    float: left;
    width: 242px;
    height: 400px;
    margin-left: 70px;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.section_second .menu_list li:first-child {
    margin-left: 0;
}

.section_second .menu_list i {
    display: inline-block;
    width: 131px;
    height: 154px;
    background-image: url(../images/sec02_img01.png);
    background-repeat: no-repeat;
    background-position: bottom center;
   
}



.section_second .menu_list:after {
    display: block;
    content: '';
    clear: both;
}

.section_second .menu_list li:nth-child(2) i {
    width: 132px;
    background-image: url(../images/sec02_img02.png);
}

.section_second .menu_list li:nth-child(3) i {
    width: 139px;
    background-image: url(../images/sec02_img03.png);
}

.section_second .menu_list li:nth-child(4) i {
    width: 182px;
    background-image: url(../images/sec02_img04.png);
}

.section_second .menu_list li > a {
    display: block;
    font-family: Noto Sans KR;
    font-size: 14px;
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
}



.section_second .menu_list .tit {
    display: block;
    margin-top: 25px;
    margin-bottom: 20px;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: 24px;
    color: #111;
}

/*SECTION_THIRD */
.section_third .fp-tableCell {
    padding-top: 142px;
    background: url(../images/sec03_bg.jpg);
    background-repeat: no-repeat;
    background-position: top 50px center;
    background-size: cover;
    vertical-align: top;
    background-color: #757575;
}

.section_third .top_area {
    width: 100%;
    height: 300px;
}
.section_third .st_wrap {
    display: table;
    width: 100%;
}


.section_third .section_tit {
    padding-top:150px;
    font-family: Noto Sans KR;
    font-size: 18px;
    color: #000;
    text-align: center;
    opacity: 0;
}
.section_third .section_tit em {
    display: block;
    margin-bottom: 3px;
    font-family: 'S-Core';
    font-weight: 700;
    font-size: 36px;
    color: #000;
}

.section_third .left_area {
    display: table-cell;
    width: 50%;
    height: 100%;
}
.section_third .left_area  .row_top{    
    text-align: center;
    padding-top:120px;
    display: inline-block;
}
.section_third .left_area  .row_top::before{    
    display: block;
    content: '';
    width: 151px;
    height: 153px;
    margin: 0 auto 0px;
    background-image: url(../images/sec03_img01.png);
    background-repeat: no-repeat;
    background-position: 0 0px;
}

.section_third .left_area .row_unit {
    display: table;
    width: 100%;
    height: 50%;
    text-align: right;
    padding-right: 100px;
}

.section_third .left_area .layer_area{
    position: relative;
}
.section_third .left_area .layer_area .btn_layer{
    text-align: center;
}

.section_third .left_area .text {
    display: inline-block;
    padding: 10px 0 15px;
    font-family: Noto Sans KR;
    font-size: 24px;
    font-weight: 700;
    color:#fff;
    text-decoration: none;
}
.section_third .left_area .text em {
    position: relative;
    display: block;
    width:276px;
    height: 40px;
    font-size:16px;
    color:#008392;
    line-height: 40px;
    background-color: #fff;
    border-radius: 5em;
    font-family: Noto Sans KR;
    font-weight: 700;
    margin-top:10px;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
}
.section_third .left_area .text em::after {
    position:absolute;
    content:'';
    width:10px;
    height: 10px;
    top:15px;
    right:40px;
    background-image: url(../images/sec03_plus_icon.png);

}
.section_third .left_area .info {
    display: block;
    font-family: Noto Sans KR;
    font-size: 14px;
    color: #fff;
}
.section_third .left_area .list_menu {
    display: inline-block;
    padding-top: 35px;
}
.section_third .left_area .list_menu li {
    display: inline-block;
    padding-left: 20px;
}

.section_third .left_area  .list_menu li > a {
    display: inline-block;
    width:180px;
    height: 40px;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    border:1px solid #fff;
}

.section_third .left_area  .row_top,
.section_third .right_area .row_top,
.section_third .right_area .row_bottom {
    opacity: 0;
}

.section_third .left_area .deco {
    display: block;
    width: 152px;
    height: 45px;
    margin: 20px auto 0;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    text-align: center;
    line-height: 45px;
    background: #396EF0;
    border-radius: 45px;
}

.section_third .left_area .go_service {
    display: block;
    margin-top: 20px;
    font-family: Noto Sans KR;
    color: #636363;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
}

.section_third .left_area .go_service span:first-child {
    display: block;
    margin-top: 16px;
    margin-bottom: 28px;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: 30px;
    color: #111;
    text-align: center;
}

.section_third .left_area .go_service span:first-child:after {
    display: inline-block;
    content: '';
    width: 30px;
    height: 30px;
    margin-left: 12px;
    background: url(../images/sprite_main.png) no-repeat -340px 0;
    vertical-align: text-top
}

.section_third .right_area{
    display: table-cell;
    width: 50%;
    height: 100%;
}

.section_third .right_area,
.section_third .right_area a {
    color: #fff;
    font-size: 18px;
}
.section_third .right_area .list_menu li  a {
display: inline-block;
width: 180px;
height: 40px;
color: #fff;
font-size: 14px;
line-height: 40px;
text-align: center;
border: 1px solid #fff;
}

.section_third .right_area .row_unit {
    display: table;
    width: 100%;
    height: 50%;
    text-align: left;
    padding-left: 100px;
}

.section_third .right_area .row_unit .layer_area {
    position: relative;
}

.section_third .right_area .row_top {
    position: relative;
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

.section_third .right_area .row_top:before {
    display: block;
    content: '';
    width: 98px;
    height: 94px;
    margin: 0 auto 20px;
    background: url(../images/sprite_main.png) no-repeat 0 -60px;
}

.section_third .right_area .btn_layer {
    text-align: center;
}
.section_third .right_area .text {
    display: inline-block;
    padding: 10px 0 15px;
    font-family: Noto Sans KR;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.section_third .right_area .text em {
    position: relative;
    display: block;
    width: 276px;
    height: 40px;
    font-size: 16px;
    color: #495963;
    line-height: 40px;
    background-color: #fff;
    border-radius: 5em;
    font-family: Noto Sans KR;
    font-weight: 700;
    margin-top: 10px;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
}
.section_third .right_area .text em::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    top: 15px;
    right: 40px;
    background-image: url(../images/sec03_plus_icon.png);
}



.section_third .right_area .text em:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    top: 15px;
    right: 40px;
    background-image: url(../images/sec03_plus_icon2.png);
}

.section_third .right_area .info {
    display: block;
    font-family: Noto Sans KR;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}

.section_third .right_area .list_menu {
    display: inline-block;
    padding-top: 35px;
}

.section_third .right_area .list_menu:after {
    display: block;
    content: '';
    clear: both;
}

.section_third .right_area .list_menu li {
    display: inline-block;
    padding-left: 20px;
}

.section_third .right_area .list_menu li:first-child {
    padding-left: 0;
}



.section_third .right_area .row_bottom {
    text-align: center;
    padding-top: 120px;
    display: inline-block;
}

.section_third .right_area .row_bottom:before {
    display: block;
    content: '';
    width: 158px;
    height: 163px;
    margin: 0 auto 0;
    background-image: url(../images/sec03_img02.png);
    background-repeat: no-repeat;
}




.section_third .report_layerPop {
    display: none;
    position: absolute;
    width: 650px;
    top: -90px;
    left: 50%;
    margin-left: -350px;
    padding: 0 40px 40px;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, .3);
    -ms-box-shadow: 3px 3px 3px rgba(0, 0, 0, .3);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .3);
}

/*.section_third .report_layerPop:before{display:inline-block;content:'';width:17px;height:10px;position:absolute;top:0px;left:50%;margin-top:-9px;margin-left:-8px;background:url(../images/deco_modal_balloon.png) no-repeat 0 0;}*/
.section_third .report_layerPop dt {
    padding-top: 25px;
    margin-bottom: 10px;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: 18px;
    color: #111;
    text-align: left;
}

.section_third .report_layerPop .btn_close {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 28px;
    right: 40px;
    text-indent: -999em;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    background: url(../images/sprite_main.png) no-repeat -160px 0;
    cursor: pointer;
}

.section_third .report_layerPop table {
    font-size: 15px;
    color: #636363;
    border: 1px solid #ebebeb;
}

.section_third .report_layerPop table tr:first-child th,
.report_layerPop table tr:first-child td {
    border-top: none;
}

.section_third .report_layerPop table th,
.report_layerPop table td {
    height: 39px;
    font-size: 14px;
    border-top: 1px solid #ebebeb
}

.section_third .report_layerPop table th {
    width: 140px;
    background: #f9f9f9;
}

.section_third .report_layerPop table td:nth-child(2) {
    width: 172px;
}

.section_third .report_layerPop table td:nth-child(3) {
    width: 150px;
    border-left: 1px solid #ebebeb
}

.section_third .report_layerPop.rw .left {
    float: left;
    width: 220px;
}

.section_third .report_layerPop.rw .right {
    float: right;
    width: 216px;
}

.section_third .report_layerPop.rw dd {
    font-family: Noto Sans KR;
    font-size: 15px;
    color: #999;
    text-align: left;
}

.section_third .report_layerPop.rw .item {
    margin-top: 10px;
    text-align: left;
}

.section_third .report_layerPop.rw .item,
.report_layerPop.rw .item a {
    font-size: 15px;
    color: #111;
}

.section_third .report_layerPop.rw .item a:after {
    display: inline-block;
    content: '';
    width: 21px;
    height: 21px;
    margin-left: 15px;
    background: url(../images/sprite_main.png) no-repeat -420px 0;
    vertical-align: middle;
}

.section_third .report_layerPop.rw .item li {
    margin-bottom: 8px;
}

.section_third .report_layerPop.rw .item .num {
    margin-left: 10px;
}

.section_third .report_layerPop.rw.short {
    top: 150px;
    padding-bottom: 10px;
}

.section_third .report_layerPop.rw.short dt {
    padding-top: 15px;
    margin-bottom: 5px;
}

.section_third .report_layerPop.rw.short .item li {
    margin-bottom: 4px;
}

.section_third .report_layerPop.rw.short .btn_close {
    top: 15px;
}

.section_third .report_layerPop .stit {
    display: block;
    width: 75%;
    margin: 0 auto;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* SECTION_FOURTH */
.section_fourth .fp-tableCell {
    padding-top: 142px;
    background-image: url(../images/sec04_bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-color: #757575;
}
.section_fourth .fp-tableCell .section_tit {
    padding-top: 60px;
    font-family: Noto Sans KR;
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    opacity: 0;
}
.section_fourth .fp-tableCell .section_tit em {
    display: block;
    margin-bottom: 3px;
    font-family: 'S-Core';
    font-weight: 700;
    font-size: 36px;
    color: #fff;
}

.section_fourth .cont_box_wrap{
    width:1180px;
    margin:60px auto 0;
    display: flex;
    flex-wrap: wrap;
}
.section_fourth .cont_box_wrap .cont_box{
    position: relative;
    width:580px;
    height: 230px;
    background-color: #fff;
    border-radius: 10px;
    margin:10px;
    padding:30px 30px 30px 190px;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
    opacity: 0;
}
.section_fourth .cont_box_wrap .cont_box::before{
    position: absolute;
    content:'';
    top:50%;
    left:30px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
}
.section_fourth .cont_box_wrap .cont_box:nth-child(1)::before{
    background-image: url(../images/sec04_img01.png);
    width:132px;
    height: 116px;
}
.section_fourth .cont_box_wrap .cont_box:nth-child(2)::before{
    background-image: url(../images/sec04_img02.png);
    width:126px;
    height: 119px;
}
.section_fourth .cont_box_wrap .cont_box:nth-child(3)::before{
    background-image: url(../images/sec04_img03.png);
    width:129px;
    height: 117px;
}
.section_fourth .cont_box_wrap .cont_box:nth-child(4)::before{
    background-image: url(../images/sec04_img04.png);
    width:127px;
    height: 116px;
}
.section_fourth .cont_box_wrap .cont_box:nth-child(odd){
    margin-left:0;
}
.section_fourth .cont_box_wrap .cont_box:nth-child(even){
    margin-right:0;
}
.section_fourth .cont_box_wrap .cont_box .cont_info{
    font-family: Noto Sans KR;
    font-weight: 400;
    font-size: 14px;
    color: #767676;
}
.section_fourth .cont_box_wrap .cont_box .cont_info em{
    display: block;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin-bottom:10px;
}
.section_fourth .cont_box_wrap .cont_box .list_menu{
    margin-top:15px;
}
.section_fourth .cont_box_wrap .cont_box .list_menu li{
    display: inline-block;
    margin-left:5px;
    margin-bottom: 5px;
}
.section_fourth .cont_box_wrap .cont_box .list_menu li:nth-child(odd){    
    margin-left:0;
}
.section_fourth .cont_box_wrap .cont_box .list_menu li a{
    display: inline-block;
    width:165px;
    height: 32px;
    border:1px solid #3c71eb;
    text-align: center;
    line-height: 30px;
    font-size:14px;
    color:#767676;
    font-weight: 500;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
}

.section_fourth .text_wrap {
    width: 1180px;
    margin: 0 auto;
    opacity: 0;
}

.section_fourth .slide_wrap {
    width: 1180px;
    margin: 0 auto;
    padding-top: 110px;
    opacity: 0;
}

.section_fourth .slick-dots {
    margin-bottom: 40px;
    position: absolute;
    top: -90px;
    left: 0;
}

.section_fourth .slick-dots:after {
    display: block;
    content: '';
    clear: both;
}

.section_fourth .slick-dots li {
    float: left;
    margin-bottom: 3px;
}

.section_fourth .slick-dots li:nth-child(3) {
    clear: both;
}

.section_fourth .slick-dots li:after {
    display: inline-block;
    content: '/';
    padding: 0 4px;
    color: #fff;
}

.section_fourth .slick-dots li:last-child:after {
    display: none;
}

.section_fourth .slick-dots a, .section_fourth .slick-dots a.on {
    color: #fff;
    font-size: 19px;
}

.section_fourth .slick-dots li.slick-active a {
    font-family: Noto Sans KR;
    font-weight: 700;
    color: #ffea00;
}

.section_fourth .slide_box {
    width: 700px;
    height: 296px;
    padding: 45px 0 0 60px;
    font-family: Noto Sans KR;
    font-size: 18px;
    color: #636363;
    background: #fff;
}

.section_fourth .slide_box dt {
    margin-bottom: 10px;
    position: relative;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: 25px;
    color: #111;
}

.section_fourth .slide_box dd {
    min-height: 50px;
}

.section_fourth .slide_box:before {
    display: inline-block;
    content: '';
    width: 80px;
    height: 2px;
    position: absolute;
    top: 60px;
    left: -31px;
    background: url(../images/sprite_main.png) no-repeat -460px 0;
}

.section_fourth .menu {
    margin-top: 25px;
}

.section_fourth .menu li {
    float: left;
    margin-left: 30px;
}

.section_fourth .menu li:first-child {
    margin-left: 0;
}

.section_fourth .menu a {
    font-family: Noto Sans KR;
    font-weight: 700;
    color: #111
}

.section_fourth .menu a:after {
    display: inline-block;
    content: '';
    width: 33px;
    height: 28px;
    margin-left: 10px;
    background: url(../images/sprite_main.png) no-repeat -420px 0;
    vertical-align: middle;
}

.section_fourth .slide_index {
    position: relative;
    left: 60px;
    top: -80px;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: 25px;
    color: #111;
}

.section_fourth .slide_index .now {
    color: #396EF0;
}

.section_fourth .slide_arrow {
    line-height: 0;
}

.section_fourth .slide_arrow > span {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative;
    text-indent: -999em;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    border: 2px solid #fff;
}

.section_fourth .slide_arrow > span:before {
    display: inline-block;
    content: '';
    width: 6px;
    height: 9px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -3px;
    margin-left: -4px;
    background: url(../images/sprite_main.png) no-repeat -220px 0;
}

.section_fourth .slide_arrow .btn_prev {
    border-right: 1px solid #fff;
}

.section_fourth .slide_arrow .btn_next {
    border-left: 1px solid #fff;
}

.section_fourth .slide_arrow .btn_next:before {
    background-position-x: -240px;
}

/* SECTION_FIFTH */
.section_fifth .fp-tableCell {
    padding-top: 142px;
    background-image: url(../images/sec05_bg.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
}

.section_fifth .section_tit {
    margin-bottom: 65px;
    font-family: Noto Sans KR;
    font-size: 18px;
    color: #555;
    text-align: center;
}

.section_fifth .section_tit em {
    display: block;
    margin-bottom: 3px;
    font-family: 'S-Core';
    font-weight: 700;
    font-size: 36px;
    color: #000;
}

.section_fifth .st_wrap {
    width: 1180px;
    margin: 0 auto;
}

.section_fifth .st_wrap:after {
    display: block;
    content: '';
    clear: both;
}

.section_fifth h3 {
    font-family: Noto Sans KR;
    font-size: 14px;
    color: #767676;
}

.section_fifth h3 em {
    display: block;
    margin-bottom: 5px;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: 24px;
    color: #333;
}

.section_fifth h3 em.font {
    font-size: 28px;
}

.section_fifth .section_tit {
    opacity: 0;
}

.section_fifth .left {
    float: left;
    width: 885px;
    height: 510px;
    padding-top: 35px;
    padding-left: 40px;
    background-color: #fff;
    border: 1px solid #ccc;
    opacity: 0;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
}

.section_fifth .left .mneu {
    margin-top: 60px;
}

.section_fifth .left .mneu li {
    float: left;
    position: relative;
    padding-left: 130px;
    margin-top: 78px;
    margin-left: 40px;
}

.section_fifth .left .mneu li:nth-child(1) {
    width: 365px;
    margin-top: 0;
    margin-left: 0;
}

.section_fifth .left .mneu li:nth-child(2) {
    margin-top: 0;
    margin-left: 40px;
    padding-left: 140px;
}

.section_fifth .left .mneu li:nth-child(3) {
    width: 365px;
    clear: both;
    margin-left: 0;
}
.section_fifth .left .mneu li:nth-child(4) {
    padding-left: 140px;
}

.section_fifth .left .mneu li:before {
    display: inline-block;
    content: '';
    width: 107px;
    height: 105px;
    margin-right: 15px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/sec05_img01.png);
    background-repeat: no-repeat;
}

.section_fifth .left .mneu li:nth-child(2):before {
    width: 124px;
    height: 106px;
    background-image: url(../images/sec05_img02.png);
}

.section_fifth .left .mneu li:nth-child(3):before {
    width: 98px;
    height: 112px;
    background-image: url(../images/sec05_img03.png);
}

.section_fifth .left .mneu li:nth-child(4):before {
    width: 123px;
    height: 108px;
    background-image: url(../images/sec05_img04.png);
}

.section_fifth .left .mneu li {
    font-family: Noto Sans KR;
    font-size: 14px;
    color: #767676;
}

.section_fifth .left .mneu li > a {
    display: block;
    margin-bottom: 13px;
    margin-top: 10px;
    font-family: Noto Sans KR;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.section_fifth .right {
    float: right;
    width: 295px;
    height: 510px;
    color: #fff;
    opacity: 0;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, .1);
}

.section_fifth .right .row_top {
    height: 255px;
    padding: 25px 35px 40px 35px;
    background: #5c6672 url(../images/deco_main_sec05_2.gif) no-repeat bottom right;
}

.section_fifth .right .row_bottom {
    height: 255px;
    padding: 25px 35px 40px 35px;
    background: #396EF0 url(../images/deco_main_sec05_3.gif) no-repeat bottom right;
}

.section_fifth .right .row_top h3 {
    color: rgba(255,255,255,0.4);
}

.section_fifth .right h3 {
    margin-bottom: 10px;
    color: #fff;
}
.section_fifth .right h3 em {
    font-size:24px;
    color:#fff;
}
.section_fifth .right a {
    display: inline-block;
    width:100%;
    height: 36px;
    line-height: 34px;
    text-align: center;
    font-size:14px;
    color:#fff;
    border:1px solid rgba(255,255,255,0.5);
}

.section_fifth .right .menu li {
    margin-top: 5px;
}



/* ANIMATION */
.section_first .text_wrap .big_txt.animated {
    -webkit-animation-delay: 100ms;
    -ms-animation-delay: 100ms;
    animation-delay: 100ms;
}

.section_first .text_wrap .small_txt.animated {
    -webkit-animation-delay: 500ms;
    -ms-animation-delay: 500ms;
    animation-delay: 500ms;
}

.section_first .search_wrap.animated {
    -webkit-animation-delay: 700ms;
    -ms-animation-delay: 700ms;
    animation-delay: 700ms;
}

.section_second .section_tit {
    -webkit-animation-delay: 100ms;
    -ms-animation-delay: 100ms;
    animation-delay: 100ms;
}

.section_second .menu_list li.animated:nth-child(1) {
    -webkit-animation-delay: 300ms;
    -ms-animation-delay: 300ms;
    animation-delay: 300ms;
}

.section_second .menu_list li.animated:nth-child(2) {
    -webkit-animation-delay: 500ms;
    -ms-animation-delay: 500ms;
    animation-delay: 500ms;
}

.section_second .menu_list li.animated:nth-child(3) {
    -webkit-animation-delay: 700ms;
    -ms-animation-delay: 700ms;
    animation-delay: 700ms;
}

.section_second .menu_list li.animated:nth-child(4) {
    -webkit-animation-delay: 900ms;
    -ms-animation-delay: 900ms;
    animation-delay: 900ms;
}


.section_third .left_area .row_top.animated {
    -webkit-animation-delay: 700ms;
    -ms-animation-delay: 700ms;
    animation-delay: 700ms;
}
.section_third .right_area .row_top.animated,
.section_third .right_area .row_bottom.animated {
    -webkit-animation-delay: 900ms;
    -ms-animation-delay: 900ms;
    animation-delay: 900ms;
}
.section_fourth .text_wrap.animated {
    -webkit-animation-delay: 100ms;
    -ms-animation-delay: 100ms;
    animation-delay: 100ms;
}

.section_fourth .cont_box:nth-child(1).animated,
.section_fourth .cont_box:nth-child(3).animated {
    -webkit-animation-delay: 300ms;
    -ms-animation-delay: 300ms;
    animation-delay: 300ms;
}
.section_fourth .cont_box:nth-child(2).animated,
.section_fourth .cont_box:nth-child(4).animated {
    -webkit-animation-delay: 600ms;
    -ms-animation-delay: 600ms;
    animation-delay: 600ms;
}

.section_fourth .slide_wrap.animated {
    -webkit-animation-delay: 500ms;
    -ms-animation-delay: 500ms;
    animation-delay: 500ms;
}

.section_fifth .section_tit.animated {
    -webkit-animation-delay: 100ms;
    -ms-animation-delay: 100ms;
    animation-delay: 100ms;
}

.section_fifth .left.animated {
    -webkit-animation-delay: 500ms;
    -ms-animation-delay: 500ms;
    animation-delay: 500ms;
}

.section_fifth .right.animated {
    -webkit-animation-delay: 1000ms;
    -ms-animation-delay: 1000ms;
    animation-delay: 1000ms;
}

.footer .footer_menu li:first-child a {
    font-weight: 700;
}

/*fullCalendar custom*/
.fc-prev-button {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.fc-next-button {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.fc-toolbar h2 {
    font-size:14px;
    font-weight: 700;
    color:#454545;
}
.fc-icon, .fc-toolbar .fc-center {
    display: inline-flex !important;
    align-items: center;
}
.fc-head-container .fc-widget-header{
    border-right:0 !important;
}
.fc td, .fc th {
    border-width: 0px !important;
}
.fc th {
    border-top-width: 1px !important;
    border-bottom-width: 1px !important;
}
.fc-day-header, .fc-day-top{
    font-size:12px !important;
    color:#333 !important;
    font-weight: 700 !important;
}
.fc-basic-view .fc-body .fc-row {
    min-height: 1.6em !important;
}
.fc-day-grid-container{
    overflow:hidden !important;    
} 
.fc-scroller {
    height: 140px !important;
}
.fc-widget-header {
    margin-right: 0 !important;
}
.fc-day-header {
    text-align: right !important;
}
.fc-today {
    background: transparent !important;
}
.fc-today .fc-day-number {
    width:20px;
    height:20px;
    text-align: center;
    line-height: 20px;
    background-color: #dce2f0;
    border-radius: 50%;
}
.fc-widget-header{
    border-top:1px solid #d9d9d9 !important;
    border-bottom:1px solid #d9d9d9 !important;
    padding:2px 0 !important;
    padding-right:6px !important;
}
.fc-day-grid-container{
    padding-right:12px !important;
}
.fc-toolbar.fc-header-toolbar {
    margin-bottom: 0.4em !important;
}
.highlighted {
	background:#bdecff;
	cursor:pointer;
}
.fc-event-container {
	position: absolute;
	top:0;
	visibility: hidden;
	z-index:0;
}

#divLangSelect {position:absolute;display:none;background-color:#ffffff;border:solid 2px #d0d0d0;width:450px;padding:10px;}