@charset "utf-8";
:root {
	/*color*/
    --color-black:#111;
    --color-gray:#777;
    --color-red:#FF4267;
    --color-gray05:#f1f1f1;
    --color-main:#FCC665;
    --color-hover:#f7f7f7;
    --color-mainbold: #F09A00;
}
.w1520 {
    width: 1520px;
    position: relative;
    margin: 0 auto;
}
.pd_b200 {
	padding-bottom : 200px;
}
.pd_b300 {
	padding-bottom : 300px;
}
.pc_on {
    display: block; /*pc스타일on*/
}
.mob_on {
    display: none !important; /*모바일스타일off*/
}

/*scroll 공용스타일*/
.sc500 {
    position: relative; 
    bottom: -50px;
    opacity: 0;
}
.on_opacity {
    opacity: 1 !important;
    transition: 0.5s;
}
.on_left {
    left: 0 !important;
    transition: 0.5s;
}
.on_right {
    right: 0 !important;
    transition: 0.5s;
}
.on_bottom {
    bottom: 0 !important;
    transition: 0.5s;
}
.on_top {
    top: 0 !important;
    transition: 0.5s;
}

input:focus,
textarea:focus {
    border: 1.5px solid var(--color-main) !important;
}

/*header*/
header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 50px 0;
    width: 100vw;
    box-sizing: border-box;
    opacity: 1;
    transition: opacity 0.5s;
    z-index: 99;
}
header.action {
    --header-height:520px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    height: var(--header-height);
}
header.up {
    top: -100%;
    opacity: 0;
}
header.scroll {
    padding: 20px 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(12px);
}
header.scroll.action {
    --header-scroll-height:502px;
}
header.scroll.action nav .main_gnb .gnb_wrap .sub_menu::after {
    content: '';
    display: block;
    width: 100%;
    height: calc(var(--header-scroll-height) * 1.2);
    background: var(--color-main);
    position: absolute;
    top: -178px;
}
header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 200px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
header .logo_wrap img {
    display: block;
    width: 200px;
}
header nav .main_gnb {
    display: flex;
    gap: 60px;
    align-items: center;
}
header nav .main_gnb .gnb_wrap {
    display: flex;
    /* gap: 60px; */
    transition: 0.5s;
}
header nav .main_gnb .gnb_wrap.action {
    /* gap: 120px; */
}
header nav .main_gnb .gnb_wrap >li {
    width: 180px;
    position: relative;
    transition: all 0.2s;
}
header nav .main_gnb .gnb_wrap >li:hover {
    width: 240px;
}
header nav .main_gnb .gnb_wrap >li >a {
    display: block;
    color:#FFFFFF;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 9;
    border: none;
    background: none;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}
header nav .main_gnb .gnb_wrap >li >a.on {
    font-weight: 700;
}
header nav .main_gnb .gnb_wrap >li >a.on:after {
    width: 30%;
    left: 35%;
    background: var(--color-main);
}
header nav .main_gnb .gnb_wrap >li >a:focus:after,
header nav .main_gnb .gnb_wrap >li >a:hover:after {
    width: 30%;
    left: 35%;
}
header nav .main_gnb .gnb_wrap >li >a:after {
    content: "";
    pointer-events: none;
    bottom: 10px;
    left: 0%;
    position: absolute;
    transform: translate(0%, -50%);
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}
header nav .main_gnb .gnb_wrap .sub_menu {
    display: none;
    width: 240px;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0%);
}
header nav .main_gnb .gnb_wrap .sub_menu li {
    position: relative;
    z-index: 9;
}
header nav .main_gnb .gnb_wrap .sub_menu::after {
    content: '';
    display: block;
    width: 100%;
    height: calc(var(--header-height) * 1.1);
    background: var(--color-main);
    position: absolute;
    top: -178px;
}
header nav .main_gnb .gnb_wrap .sub_menu.action {
    display: block;
}
header nav .main_gnb .gnb_wrap .sub_menu li a {
    display: block;
    padding: 24px 0;
    color:#f5f5f5;
    font-size: 18px;
    text-align: center;
    transition: 0.2s;
}
header nav .main_gnb .gnb_wrap .sub_menu li a:hover {
    background: rgba(255,255,255,0.7);
    color:var(--color-mainbold);
    font-weight: 600;
}
header nav .right_gnb .burger_menu {
    background: #000;
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 9;
    padding: 100px 50px;
    box-sizing: border-box;
    transition: right 0.5s ease;
}
header nav .right_gnb .burger_menu.on {
    right: 0;
}
header nav .right_gnb .burger_menu >li {
    border-bottom: 1px solid var(--color-gray05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
    position: relative;
    box-sizing: border-box;
}
header nav .right_gnb .burger_menu >li:hover {
    border: none;
}
header nav .right_gnb .burger_menu >li::before {
    content: '';
    display: block;
    width: 0%;
    height: 1px;
    background: var(--color-gray05);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;
}
header nav .right_gnb .burger_menu >li:hover::before {
    background: var(--color-mainbold);
    width: 100%;
}
header nav .right_gnb .burger_menu >li >a {
    display: block;
    color:#fff;
    font-size: 48px;
    font-weight: 800;
    padding: 30px 0;
}
header nav .right_gnb .burger_menu >li >a:hover {
    color: var(--color-mainbold);
}
header nav .right_gnb .burger_menu .sub_menu {
    display: flex;
    gap: 40px;
}
header nav .right_gnb .burger_menu .sub_menu li a {
    color:#fff;
    font-size: 22px;
}
header nav .right_gnb .burger_menu .sub_menu li a:hover {
    color: var(--color-mainbold);
    font-weight: 600;
}
header .burger {
    position: relative;
    z-index: 99;
    width: 34px;
    height: 23px;
    background: transparent;
    cursor: pointer;
    display: block;
}
header .burger.close {
    right: -130px;
}
header .burger input {
    display: none;
}
header .burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
header .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}
header .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
    background: var(--color-main);
}
header .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}
header .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}
header .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}
header .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 24px;
    left: 5px;
}


.fixed_link_wrap {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    right: 110px;
    bottom: 40px;
    z-index: 99;
}
.fixed_link_wrap .item {
    margin-bottom: 8px;
}
.fixed_link_wrap .top {
    display: none;
}
.fixed_link_wrap .tel .btn {
    background: rgba(244,201,122,0.8);
}
.fixed_link_wrap .btn {
    background: rgba(255,255,255,0.8);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border: none;
    position: relative;
    border-radius: 100%;
    -webkit-box-shadow: 1px 1px 5px .2px #00000035;
    box-shadow: 1px 1px 5px .2px #00000035;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    transition-delay: .2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
}
.fixed_link_wrap .btn:hover {
    width: 180px;
    /* transition-delay: .2s; */
    border-radius: 20px;
}
.fixed_link_wrap .btn:hover > .paragraph {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}
.fixed_link_wrap .btn:hover > .icon-wrapper .icon {
    transform: scale(1.1);
}
.fixed_link_wrap .bnt:hover > .icon-wrapper .icon path {
    stroke: black;
}
.fixed_link_wrap .tel .paragraph {
    color:#fff;
    font-size: 18px;
}
.fixed_link_wrap .paragraph {
    color: black;
    visibility: hidden;
    opacity: 0;
    font-size: 16px;
    margin-right: 20px;
    padding-left: 20px;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    font-weight: bold;
    text-transform: uppercase;
}
.fixed_link_wrap .icon-wrapper {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fixed_link_wrap .icon {
    transform: scale(.9);
    transition: .2s linear;
}
.fixed_link_wrap .icon path {
    stroke: #000;
    stroke-width: 2px;
    -webkit-transition: .2s linear;
    transition: .2s linear;
}


/*메인스타일시작*/
main .title_box {
    margin-bottom: 60px;
}
main .title_box p {
    font-size: 18px;
}
main .title_box > .wrap {
    display: flex;
    gap: 48px;
    align-items: end;
}
main .title_box h3 {
    font-size: 60px;
}
main .title_box a {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    top: -10px;
    transition: all 0.3s;
}
main .title_box a img {
    filter: grayscale(100%) brightness(0);
}
main .title_box a:hover {
    color:var(--color-mainbold);
    gap:30px;
}
main .title_box a:hover img {
    filter: none;
}
.main_content01 {
    background: url(../images/main_content01_bg.png) no-repeat center/cover;
    height: 2870px;
}
.main_content01.bg {
    background: linear-gradient(177.959532993704deg, rgba(224, 211, 153,1) 3.6696522655426764%,rgba(223, 210, 152,1) 3.6696522655426764%,rgba(200, 152, 106,1) 93.55374077976816%);
}
.main_content01 .item01 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    color:#fff;
    padding: 160px 0 30px 0;
}
.main_content01 .item01 .txt_box {
    opacity: 1;
    transition: opacity 0.5s;
}
.main_content01 .item01 .txt_box.scroll {
    opacity: 0;
}
.main_content01 .item01 .queen_img_box {
    overflow: hidden;
    width: auto;
}
.main_content01 .item01 .queen_img_box.scale {
    position: fixed;
    top:0%;
    left: 50%;
    height: 100vh;
    transform: translate(-50%);
    background: url(../images/main_img01.svg) no-repeat center/cover;
}
.main_content01 .item01 .queen_img_box.scale.scroll {
    position: relative;
}
.main_content01 .item01 .queen_img_box img {
    width: 100%;
    transition: transform 0.3s ease;
}
.main_content01 .item01 .queen_img_box.scale img {
    display: none;
}
.main_content01 .item01 h2 {
    font-size: 60px;
    font-weight: 800;
}
.main_content01 .item01 p {
    font-size: 24px;
    font-weight: 600;
    padding-top: 40px;
}
.main_content01 .item01 .text_img_box {
    display: block;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.main_content01 .item01 .text_img_box.scroll {
    width: 100%;
    opacity: 1;
    display: block;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.main_content01 .item01 .text_img_box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    transition: all 0.5s ease;
    position: relative;
}
.main_content01 .item01 .text_img_box ul li {
    position: absolute;
    opacity: 0;
}
.main_content01 .item01 .text_img_box ul li:nth-child(1) {
    left: -870px;
    width: 50%;
}
.main_content01 .item01 .text_img_box ul li:nth-child(2) {
    right: -970px;
    width: 34%;
}
.main_content01 .item01 .text_img_box ul li:nth-child(1).scroll {
    left: -340px;
    opacity: 1; 
    transition: left 1.2s ease, opacity 0.5s ease;
}
.main_content01 .item01 .text_img_box ul li:nth-child(2).scroll {
    right: -50px;
    opacity: 1;
    transition: right 1s ease, opacity 0.5s ease;
}
.main_content01 .item01 .text_img_box ul li:nth-child(1).scroll01 {
    left: -650px;
    opacity: 1;
    transition: left 0.5s ease, opacity 0.5s ease;
}
.main_content01 .item01 .text_img_box ul li:nth-child(2).scroll01 {
    right: -310px;
    opacity: 1;
    transition: left 0.5s ease, opacity 0.5s ease;
}
.main_content01 .item01 .text_img_box ul li:nth-child(1).scroll02 {
    left: -1040px;
    opacity: 1;
    transition: left 0.5s ease, opacity 0.5s ease;
}
.main_content01 .item01 .text_img_box ul li:nth-child(2).scroll02 {
    right: -700px;
    opacity: 1;
    transition: left 0.5s ease, opacity 0.5s ease;
}
.main_content01 .item01 .text_img_box ul li:nth-child(3) {
    height: 67px;
    width: 570px;
    opacity: 0;
    transition: opacity 0.5s;
}
.main_content01 .item01 .text_img_box ul li:nth-child(3).opacity {
    opacity: 1;
    top: 140px;
}
.main_content01 .item01 .text_img_box ul li:nth-child(1) img {
    width: 393px;
}
.main_content01 .item01 .text_img_box ul li:nth-child(2) img {
    width: 283px;
}
.main_content01 .item01 .text_img_box ul li:nth-child(3) img {
    display: block;
    width: 100%;
    margin: 0 auto;
    object-fit: contain;
}
.container_mouse {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%);
}
.container_mouse.scroll {
    bottom: auto;
    top: 20px;
}
.container_mouse.off {
    display: none;
}
.container_mouse .mouse-btn {
    margin: 10px auto;
    width: 30px;
    height: 56px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    display: flex;
}
.container_mouse .mouse-btn.scroll {
    width: 1px;
    height: 90vh;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: none;
    display: block;
}
.container_mouse .mouse-scroll {
    display: block;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    margin: auto;
    animation: item56 1s linear infinite;
}
.container_mouse .mouse-scroll.scroll {
    width: 26px;
    height: 26px;
    background: #fff;
    animation: item57 3s linear infinite;
    position: relative;
    left: -12px;
}
@keyframes item56 {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(20px);
    }
}
@keyframes item57 {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(89vh);
    }
}


.main_content02 {
    background: linear-gradient(89.69019143702519deg, rgba(184, 165, 120,1) 2.0302494663820707%,rgba(183, 164, 119,1) 2.0302494663820707%,rgba(179, 153, 110,1) 100.71621531483457%);
    padding-top: 400px;
    position: relative;
}
.main_content02 .item01 {
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    width: calc(100vw - 400px);
    margin: 0 auto;
    transition: opacity 0.8s, visibility 0s 0.8s;
}
.main_content02 .item01.scroll {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.8s;
}
.main_content02 .item01 .title_wrap {
    position: relative;
}
.main_content02 .item01 .title_wrap b {
    font-size: 90px;
    color: rgba(255,255,255,0.1);
    position: absolute;
    left: -40px;
    top: -40px;
}
.main_content02 .item01 .title_wrap h3 {
    font-size: 100px;
    font-weight: 700;
    color:#fff;
}
.main_content02 .item01 .txt_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}
.main_content02 .item01 .txt_wrap .txt_box p {
    font-size: 40px;
    color:#fff;
    font-weight: 700;
    margin: 24px 0;
}
.main_content02 .item01 .txt_wrap .txt_box span {
    font-size: 18px;
    color:#fff;
}
.btn_box_style a {
    width: 250px;
    box-sizing: border-box;
    display: block;
    font-size: 18px;
    font-weight: 700;
    color:#000;
    text-align: center;
    padding: 20px 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 50px;
    max-width: 500px;
    transition: all 0.5s;
    box-sizing: border-box;
    font-weight: bold;
    transition: all 500ms;
    position: relative;
    overflow: hidden;
}
.btn_box_style a:hover {
    background: rgba(0,0,0,0);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #fff;
    transform: scale(1.08);
}
.btn_box_style a::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-main);
    transform: skewX(45deg);
    z-index: -1;
    transition: width 500ms;
}
.btn_box_style a:hover::before {
    width: 250%;
}
.main_content02 .item01 .arrow_wrap {
    text-align: center;
    padding: 100px 0;
    margin-top: 150px;
    border-top: 1px solid #fff;
}
.main_content02 .item01 .arrow_wrap img {
    animation: item58 1s linear infinite;
}
@keyframes item58 {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(10px);
    }
}


.main_content03 {
    margin: 150px auto;
}
.main_content03 .txt_box h3 {
    font-size: 44px;
    text-align: center;
    opacity: 0;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.main_content03 .txt_box p {
    font-size: 20px;
    text-align: center;
    padding: 8px 0 50px 0;
    opacity: 0;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.main_content03 .quick_menu_wrap {
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
}
.main_content03 .quick_menu_box {
    display: flex;
    justify-content: space-between;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.main_content03 .quick_menu_box li {
    width: calc(100% / 6);
    border-right: 1px solid #e9e9e9;
}
.main_content03 .quick_menu_box li:last-child {
    border: none;
}
.main_content03 .quick_menu_box li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap:40px;
    padding: 40px 0;
    box-sizing: border-box;
    height: 100%;
    transition: all 0.2s;
}
.main_content03 .quick_menu_box li a:hover {
    background: rgba(252, 198, 101, 0.1);
}
.main_content03 .quick_menu_box li a:hover img {
    filter: none;
    transform: scale(1.15);
}
.main_content03 .quick_menu_box li a:hover p {
    color:var(--color-mainbold);
    transform: translateY(-4px);
}
.main_content03 .quick_menu_box li a:hover span.line {
    background: var(--color-main);
}
.main_content03 .quick_menu_box li a .img_box {
    display: flex;
    align-items: center;
    position: relative;
    height: 40px;
}
.main_content03 .quick_menu_box li a span.line {
    width: 40px;
    height: 3px;
    border-radius: 20px;
    background: #F8F8F8;
}
.main_content03 .quick_menu_box li a img {
    width: 100%;
    filter: invert(45%) sepia(6%) saturate(10%) hue-rotate(67deg) brightness(86%) contrast(91%);
    transition: all 0.3s;
}
.main_content03 .quick_menu_box li a p {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color:#323232;
    line-height: 1.2;
    transition: all 0.3s;
}



.main_content04_wrap {
    background: #FAFAFA;
    padding: 100px 0;
}
.main_content04 .certify_wrap {
    display: flex;
    gap: 10px;
}
.main_content04 .certify_wrap li {
    height: 440px;
    width: 100px;
    flex: 1;
    border-radius: 16px;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    bottom: -50px;
}
.main_content04 .certify_wrap li::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
}
.main_content04 .certify_wrap li .hide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 80px 40px 40px 40px;
    box-sizing: border-box;
    z-index: 1;
    flex-direction: column;
    justify-content: space-between;
}
.main_content04 .certify_wrap li .hide h4 {
    color:#fff;
    font-size: 44px;
}
.main_content04 .certify_wrap li .hide p {
    color:#fff;
    font-size: 24px;
    font-weight: 600;
    padding-top: 28px;
}
.main_content04 .certify_wrap li .hide a {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
}
.main_content04 .certify_wrap li .hide a:hover {
    gap:30px;
}
.main_content04 .certify_wrap li .hide a span {
    color:#fff;
    font-size: 20px;
    font-weight: 700;
}
.main_content04 .certify_wrap li .hide a img {
    filter: brightness(0) invert(1);
}
.main_content04 .certify_wrap li .show {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}
.main_content04 .certify_wrap li .show a {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_content04 .certify_wrap li .show a img {
    -webkit-filter: brightness(0) invert(1); 
    filter: brightness(0) invert(1);
}
.main_content04 .certify_wrap li .show h4 {
    font-size: 30px;
    color:#fff;
    text-align: center;
}
.main_content04 .certify_wrap li:nth-child(1){
    background: url(../images/Research_Institute_img01.png) no-repeat center/cover;
}
.main_content04 .certify_wrap li:nth-child(2){
    background: url(../images/Venture_Company_img01.png) no-repeat center/cover;
}
.main_content04 .certify_wrap li:nth-child(3){
    background: url(../images/Main_Biz_img01.png) no-repeat center/cover;
}
.main_content04 .certify_wrap li:nth-child(4){
    background: url(../images/Inno_Biz_img01.png) no-repeat center/cover;
}
.main_content04 .certify_wrap li:hover {
    flex: 1.7;
    background-color: #b8b8b8;
}
.main_content04 .certify_wrap li:hover::before {
    background: rgba(199, 134, 15, 0.6);
}
.main_content04 .certify_wrap li:hover .hide {
    display: flex;
}
.main_content04 .certify_wrap li:hover .show {
    display: none;
}

.main_content05_wrap {
    background: #F5EEE4;
    padding: 165px 0;
}
.main_content05_wrap .main_content05 {
    opacity: 0;
    position: relative;
    bottom: -50px;
}
.main_content05 .content_wrap .single-item {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.main_content05 .content_wrap .single-item .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 100px;
}
.main_content05 .content_wrap .single-item-dots {
    position: absolute;
    left: 620px;
    display: flex;
    justify-content: space-between;
    gap: 28px;
}
.main_content05 .content_wrap .single-item-dots li {
    padding: 10px 28px;
    box-sizing: border-box;
    background: #E9E9E9;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all 0.5s;
}
.main_content05 .content_wrap .single-item-dots li.slick-active,
.main_content05 .content_wrap .single-item-dots li:hover {
    background: linear-gradient(90deg, rgba(253, 211, 137,1) 20.297000250501004%,rgba(253, 211, 137,1) 21.98453547720441%,rgba(217, 149, 28,1) 80.29825275551102%);
}
.main_content05 .content_wrap .single-item-dots li.slick-active button,
.main_content05 .content_wrap .single-item-dots li:hover button  {
    color:#fff;
}
.main_content05 .content_wrap .single-item-dots li button {
    font-size: 18px;
    color:#B6B6B6;
    font-weight: 700;
}
.main_content05 .item .img_box {
    width: 520px;
    height: 520px;
    border-radius: 100%;
    overflow: hidden;
}
.main_content05 .item .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_content05 .item .txt_box > span {
    font-size: 24px;
    font-weight: 700;
}
.main_content05 .item .txt_box h4 {
    font-size: 52px;
}
.main_content05 .item .txt_box p {
    font-size: 16px;
    color:#333;
    padding: 40px 0 60px 0;
}
.main_content05 .item .txt_box .tag_box {
    display: flex;
    gap: 20px;
}
.main_content05 .item .txt_box .tag_box span {
    font-size: 16px;
    color:#A1A1A1;
}
.main_content05 .item .btn_box {
    position: relative;
    top: -80px;
}
.main_content05 .item .btn_box a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main_content05 .item .btn_box a img {
    width: 18px;
}


.main_content06 {
    margin: 150px auto 0 auto;
}
.main_content06 .column_wrap {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.column_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}
.column_wrap::-webkit-scrollbar {
    width: 4px;  
    height: 8px;
    border-radius: 10px;
}
.column_wrap::-webkit-scrollbar-thumb {
    background: #7E7E7E;
    border-radius: 10px;
}
.column_wrap::-webkit-scrollbar-track {
    background: #F5F5F5;
}
.column_wrap li {
    width: calc(100% / 3 - 40px);
    box-sizing: border-box;
}
.column_wrap li a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.column_wrap li a:hover .img_box img {
    transform: scale(1.2);
}
.column_wrap li a .img_box {
    width: 480px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
}
.column_wrap li a .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.column_wrap li a .txt_box {
    margin: 20px 0 30px 0;
    padding: 0 8px;
}
.column_wrap li a .txt_box .tag {
    color:#fff;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
}
.column_wrap li a .txt_box .tag-instagram {
    background: #FF7BAB;
}
.column_wrap li a .txt_box .tag-naver {
    background: #7ED66F;
}
.column_wrap li a .txt_box p {
    font-size: 22px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: box;
    margin:20px 0;
    overflow:hidden;
    vertical-align:top;
    text-overflow: ellipsis;
    word-break:break-all;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}
.column_wrap li a .txt_box .date {
    font-size: 14px;
    color:#C4C4C4;
}


.main_content07_wrap {
    background: url(../images/contact_bg.png) no-repeat center/cover;
    margin-top: 200px;
    padding: 150px 0;
    box-sizing: border-box;
}
.main_content07 .title_box >.wrap {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    opacity: 0;
    position: relative;
    bottom: -50px;
}
.main_content07 .title_box .img_box img {
    width: 51px;
}
.main_content07 .title_box h3 {
    color:#fff;
    font-size: 32px;
}
.main_content07 .title_box h3 span {
    font-size: 52px;   
}
.main_content07 .title_box p {
    color:#fff;
    font-size: 20px;
    padding: 60px 0;
    opacity: 0;
    position: relative;
    bottom: -50px;
}
.main_content07 .btn_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    width: 100%;
    gap: 20px;
}
.main_content07 .btn_box a {
    width: auto;
    display: block;
    font-size: 28px;
    font-weight: 800;
    padding: 20px 80px;
    box-sizing: border-box;
    border-radius: 100px;
    background: #fff;
    opacity: 0;
    position: relative;
    bottom: -50px;
}

/*메인스타일끝*/

/*서브공용스타일*/
.about .sub_title_bnr {
    background: url(../images/sub_title_bnr_about.png) no-repeat center/cover;
}
.certify .sub_title_bnr {
    background: url(../images/sub_title_bnr_certify.png) no-repeat center/cover;
}
.consulting .sub_title_bnr {
    background: url(../images/sub_title_bnr_consulting.png) no-repeat center/cover;
}
.service .sub_title_bnr,
.privacy .sub_title_bnr,
.terms .sub_title_bnr {
    background: url(../images/sub_title_bnr_service.png)no-repeat center/cover;
}
.sub_title_bnr {
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 280px;
    box-sizing: border-box;
}
.sub_title_bnr h2 {
    font-size: 84px;
    color:#eee;
    text-align: center;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.sub_title_bnr .title_nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
}
.sub_title_bnr .title_nav ul li {
    display: flex;
    align-items: center;
}
.sub_title_bnr .title_nav ul li::after {
    content: '';
    display: inline-block;
    background: url(../images/nav_arrow.svg) no-repeat center;
    width: 8px;
    height: 8px;
    position: relative;
    left: 26px;
}
.sub_title_bnr .title_nav ul li:last-child::after {
    display: none;
}
.sub_title_bnr .title_nav ul li a {
    color:#B7B7B7;
    font-size: 14px;
    font-weight: 600;
}
.sub_title_bnr .sub_nav {
    background: rgba(255,255,255, 0.1);
    backdrop-filter: blur(8px);
    width: 100%;
}
.sub_title_bnr .sub_nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub_title_bnr .sub_nav ul li {
    width: 280px;
    height: 80px;
    line-height: 80px;
}
.sub_title_bnr .sub_nav ul li a {
    display: block;
    color:#AEAEAE;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.2s;
    text-align: center;
}
.sub_title_bnr .sub_nav ul li a:hover,
.sub_title_bnr .sub_nav ul li.on a {
    background: #fff;
    color:#000;
}
.sub_content .sub_into_title {
    margin: 200px auto 120px auto;
    width: 1520px;
    box-sizing: border-box;
}
.sub_content .sub_into_title h3 {
    font-size: 60px;
    border-bottom: 1px solid #C7C7C7;
}
.sub_content .sub_into_title h3 span {
    font-size: 16px;
    margin-left: 16px;
    font-weight: 500;
}

/*서브공용스타일끝*/


/*회사소개*/
.ceo_message {
    display: flex;
    justify-content: space-between;
}
.ceo_message .txt_box .ceo_since p {
    font-size: 48px;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.ceo_message .txt_box .ceo_since h4 {
    font-size: 78px;
    position: relative;
    top: -20px;
    bottom: -50px;
    opacity: 0;
}
.ceo_message .txt_box > p {
    font-size: 18px;
    color:#333;
    line-height: 1.6;
    padding: 40px 0;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.ceo_message .txt_box .ceo_sign {
    text-align: right;
    opacity: 0;
    position: relative;
    bottom: -50px;
}
.ceo_message .txt_box .ceo_sign span {
    font-size: 18px;
    color:#6F6F6F;
}
.ceo_message .txt_box .ceo_sign b {
    font-size: 44px;
}
.ceo_message .img_box {
    background: url(../images/ceo_message_img.png) no-repeat center/cover;
    width: 796px;
    height: 550px;
    border-radius: 30px;
    padding-bottom: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.ceo_message .img_box h4 {
    font-size: 44px;
    font-weight: 600;
    color:#fff;
    text-align: center;
}
.ceo_message .img_box h4 span {
    font-size: 60px;
    font-weight: 800;
}
.organization_chart img {
    width: 100%;
    opacity: 0;
    position: relative;
    bottom: -50px;
}
/* .organization_chart .top {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 0 auto;
}
.organization_chart .top::before {
    content: '';
    display: block;
    width: 1px;
    height: 279px;
    background: #e8e8e8;
    position: absolute;
    top: 100%;
    left: 52%;
}
.organization_chart .top::after,
.organization_chart .center ul li::after,
.organization_chart .bottom ul li::after {
    content: '';
    display: block ;
    width: 8px;
    height: 8px;
    background: #9E9E9E;
    border-radius: 100%;
    position: absolute;
}
.organization_chart .top::after {
    bottom: -3px;
    left: 50%;
}
.organization_chart .center ul li:nth-child(1):after {
    top: 50%;
    right: -3px;
}
.organization_chart .center ul li:nth-child(2):after {
    top: 50%;
    left: -3px;
}
.organization_chart .bottom ul li::after {
    top: -3px;
    left: 50%;
}
.organization_chart .center ul li:nth-child(1)::before {
    content: '';
    display: block;
    width: 340px;
    height: 1px;
    background: #e8e8e8;
    position: absolute;
    left: 100%;
    top: 54%;
}
.organization_chart .top img {
    width: 50px;
}
.organization_chart .top b {
    font-size: 24px;
}
.organization_chart .center {
    padding: 100px 0;
}
.organization_chart .center ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 780px;
    margin: 0 auto;
}
.organization_chart .top,
.organization_chart .center ul li,
.organization_chart .bottom ul li {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    position: relative;
}
.organization_chart .center ul li,
.organization_chart .bottom ul li {
    background: #FCFCFC;
    border-radius: 50px;
    font-size: 24px;
    color:#333;
    padding: 20px 38px;
    box-sizing: border-box;
}
.organization_chart .bottom {
    padding-top: 24px;
    position: relative;
}
.organization_chart .bottom::before {
    content: '';
    display: block;
    width: 1276px;
    height: 1px;
    background: #e8e8e8;
    position: absolute;
    top: 4px;
    left: 127px;
}
.organization_chart .bottom ul li::before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: #e8e8e8;
    position: absolute;
    left: 51.5%;
    bottom: 100%;
}
.organization_chart .bottom ul li:first-child::before {
    background: url(../images/Line_left.png) no-repeat;
    width: 28px;
    height: 21px;
}
.organization_chart .bottom ul li:last-child::before {
    background: url(../images/Line_right.png) no-repeat;
    width: 28px;
    height: 21px;
    left: 44%;
}
.organization_chart .bottom ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.organization_chart .bottom ul li {
    font-size: 20px;
    color:#4E4E4E;
    width: calc(100% / 6 - 40px);
    text-align: center;
} */
.our_history {
    padding-left: 560px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 150px;
}
.our_history .progress-container {
	width: 8px;
	height: auto;
	background: #F1F1F1;
	border-radius: 2px;
    overflow: hidden;
}
.our_history .progress-bar {
	width: 8px;
	background: var(--color-main);
	border-radius: 2px;
}
.our_history .progress-bar:before {
	height: 1%;
}
.our_history .history_content {
    width: 85%;
}
.our_history .history_content li {
    padding-bottom: 160px;
    position: relative;
}
.our_history .history_content li:last-child {
    padding-bottom: 0;
}
.our_history .history_month {
    position: absolute;
    left: -700px;
    top: 0;
}
.our_history .history_content li > div {
    padding-bottom: 80px;
}
.our_history .history_month h2 {
    font-size: 70px;
    color:var(--color-main);
}
.our_history .history_content h3 {
    font-size: 50px;
    padding-bottom: 40px;
}
.our_history .history_content p {
    padding-left: 40px;
    padding-bottom: 28px;
    display: flex;
    align-items: center;
}
.our_history .history_content p span {
    font-size: 20px;
    font-weight: 700;
    margin-right: 40px;
}

/*회사소개끝*/

/*기업인증공용*/
.certify .research_institute .top_info_box .img_box {
    background: url(../images/Research_Institute_img01.png) no-repeat center/cover;
}
.certify .venture_company .top_info_box .img_box {
    background: url(../images/Venture_Company_img01.png) no-repeat center/cover;
}
.certify .main_biz .top_info_box .img_box {
    background: url(../images/Main_Biz_img01.png) no-repeat center/cover;
}
.certify .inno_biz .top_info_box .img_box {
    background: url(../images/Inno_Biz_img01.png) no-repeat center/cover;
}
.certify .top_info_box {
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.certify .top_info_box .img_box {
    width: 600px;
    height: 365px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 30px;
}
.certify .top_info_box .txt_box h4 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 400;
}
.certify .top_info_box .txt_box h4 span {
    font-weight: 700;
    color:var(--color-main);
}
.certify .top_info_box .txt_box .info_text {
    position: relative;
    overflow: hidden;
}
.certify .top_info_box .txt_box .info_text .title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #ababab;
    position: relative;
    top: -22px;
}
.certify .top_info_box .txt_box .info_text b {
    font-size: 28px;
    font-weight: 600;
    background: #fff;
    padding-right: 10px;
    position: relative;
    z-index: 1;
}
.certify .top_info_box .txt_box .info_text p {
    font-size: 18px;
    color:#2C2C2C;
    padding-top: 20px;
    line-height: 1.5;
}
.certify .bold_text_box {
    padding: 200px 0 130px 0;
}
.certify .bold_text_box b {
    font-size: 58px;
    position: relative;
    left: -50px;
    opacity: 0;
}
.certify .bold_text_box p {
    font-size: 40px;
    position: relative;
    left: -50px;
    opacity: 0;
}
.certify .benefit_box {
    background: #FCFCFC url(../images/benefit_box_bg.png) no-repeat bottom right;
    padding: 80px 0;
    margin-bottom: 130px;
}
.certify .benefit_box .title {
    margin-bottom: 80px;
}
.certify .benefit_box .title h4 {
    font-size: 42px;
    font-weight: 600;
}
.certify .benefit_box .title p {
    font-size: 18px;
    padding-top: 20px;
}
.certify .benefit_box .box_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.certify .benefit_box .box_wrap li {
    width: calc(100% / 4 - 40px);
    background: #fff;
    box-shadow: rgba(51, 51, 51, 0.2) 0px 4px 12px;
    border-radius: 10px;
    padding: 40px 20px 60px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    transition: all 0.2s;
    position: relative;
    bottom: -20px;
    opacity: 0;
}
.certify .benefit_box .box_wrap li.text_br_wrap {
    padding: 50px 0 30px 30px;
}
.certify .benefit_box .box_wrap li:hover {
    background: var(--color-mainbold);
}
.certify .benefit_box .box_wrap li:hover .img_box img {
    -webkit-filter: brightness(0) invert(1); 
    filter: brightness(0) invert(1);
    position: relative;
    top: -10px;
}
.certify .benefit_box .box_wrap li:hover h5,
.certify .benefit_box .box_wrap li:hover .txt_box span,
.certify .benefit_box .box_wrap li:hover .txt_box p  {
    color:#fff;
}
.certify .benefit_box .box_wrap li .txt_box {
    padding-top: 30px;
}
.certify .benefit_box .box_wrap li .img_box {
    height: 60px;
}
.certify .benefit_box .box_wrap li h5 {
    font-size: 32px;
    color:var(--color-mainbold);
    padding-bottom: 14px;
}
.certify .benefit_box .box_wrap.three_itme li h5 {
    padding-bottom: 0;
}
.certify .benefit_box .box_wrap li .txt_box span {
    font-size: 20px;
}
.certify .benefit_box .box_wrap li .txt_box span.small {
    font-size: 16px;
}
.certify .benefit_box .box_wrap li .txt_box p {
    font-size: 32px;
    font-weight: 700;
}
.certify .benefit_box .txt_item {
    display: flex;
    align-items: center;
}
.certify .benefit_box .txt_item p {
    display: inline-block;
    margin-left: 8px;
}
/*기업인증공용끝*/

/*서브공용*/
.sub_content .bottom_contact_box {
    margin-bottom: 200px;
}
.sub_content .bottom_contact_box p {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 6;
    bottom: -50px;
    opacity: 0;
}
.sub_content .bottom_contact_box b {
    display: block;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 6;
    bottom: -50px;
    opacity: 0;
}
.sub_content .bottom_contact_box span.line_span {
    display: inline-block;
    font-size: 52px;
    font-weight: 800;
    position: relative;
}
.sub_content .bottom_contact_box span.line_span::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 16px;
    background: var(--color-main);
    position: absolute;
    bottom: 4px;
    left: 0;
    z-index: -1;
}
.sub_content .bottom_contact_box .btn_box_style {
    text-align: center;
    margin-top: 60px;
}
.sub_content .bottom_contact_box a {
    width: auto;
    display: inline-block;
    background: #222;
    color:var(--color-main);
    font-size: 24px;
    padding: 16px 60px;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
}
.sub_content .bottom_contact_box a:hover {
    color:#fff;
}
/*서브공용끝*/

/*기업부설연구소*/
.research_institute ~ .benefit_box .box_wrap li:nth-child(3) {
    margin-right: 50px;
}
.follow_box {
    background: url(../images/follow_box_bg.png) no-repeat center/cover;
    padding: 140px 0;
    box-sizing: border-box;
    margin-bottom: 130px;
}
.follow_box .txt_box {
    position: relative;
    left: -50px;
    opacity: 0;
}
.follow_box .txt_box p {
    font-size: 16px;
    color:#fff;
    line-height: 1.6;
}
.follow_box .txt_box b {
    font-size: 24px;
    font-weight: 500;
    color:#fff;
}
.follow_box .txt_box h3 {
    font-size: 50px;
    color:#fff;
    padding: 50px 0;
    line-height: 1.2;
}
.follow_box .txt_box h3 span {
    font-size: 58px;
    color:var(--color-mainbold);
}
/*기업부설연구소끝*/
/*메인비즈*/
.certify .benefit_box .box_wrap.three_itme li {
    width: calc(100% / 3 - 40px);
    padding: 50px 0 50px 30px;
}
.certify .benefit_box .three_itme .top_box {
    display: flex;
    gap: 20px;
    align-items: center;
}
/*메인비즈끝*/


/*경영컨설팅공용*/
.consulting_bold_box {
    text-align: center;
}
.consulting_bold_box p {
    font-size: 40px;
    padding-bottom: 40px;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.consulting_bold_box p::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: #e7e7e7;
    position: relative;
    left: 50%;
    top: 20px;
}
.consulting_bold_box b {
    font-size: 40px;
    font-weight: 400;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.consulting_bold_box span {
    font-size: 48px;
    font-weight: 700;
    color:var(--color-mainbold);
}





/*경영컨설팅공용끝*/

/*절세플랜*/
.worry_box {
    background: #F9F9F9;
    text-align: center;
    padding: 80px 0;
}
.worry_content h4 {
    font-size: 40px;
    padding-bottom: 60px;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.worry_content ul li {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.worry_content ul li:nth-child(even) {
    justify-content: flex-end;
}
.worry_content ul li .txt_box {
    background: #EBEBEB;
    border-radius: 50px;
    padding: 20px 100px;
    box-sizing: border-box;
    position: relative;
}
.worry_content ul li:nth-child(odd) .txt_box::after {
	content: '';
	position: absolute;
	left: 3px;
	top: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-right-color: #EBEBEB;
	border-left: 0;
	border-bottom: 0;
	margin-top: -10px;
	margin-left: -20px;
}
.worry_content ul li:nth-child(even) .txt_box::after {
	content: '';
	position: absolute;
	right: 3px;
	top: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-left-color: #EBEBEB;
	border-right: 0;
	border-bottom: 0;
	margin-top: -10px;
	margin-right: -20px;
}
.worry_content ul li p {
    font-size: 20px;
    font-weight: 600;
}
.worry_content ul li p span {
    font-size: 28px;
    font-weight: 700;
}
.tax_avoidance {
    margin-bottom: 200px;
}
.tax_avoidance .consulting_bold_box {
    margin: 130px 0 40px 0;
}
.tax_avoidance ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.tax_avoidance ul li {
    width: 400px;
    margin-top: 20px;
    padding: 40px 0;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 16px;
    border: 1px solid #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.tax_avoidance ul li p {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
}
/*절세플랜끝*/

/*노무플랜*/
.labor_box {
    background: url(../images/labor_box_bg.png) no-repeat center/cover;
    margin: 130px 0 200px 0;
}
.labor_box ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.labor_box ul li {
    border-right: 1px solid #fff;
    text-align: center;
    padding: 0 40px;
    width: calc(100% / 5);
    height: 800px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.labor_box ul li:last-child {
    border: none;
}
.labor_box ul li:hover {
    background: rgba(51, 51, 51, 0.9);
}
.labor_box ul li:hover .hide {
    display: block;
}
.labor_box ul li:hover .img_box img {
    -webkit-filter: brightness(0) invert(1); 
    filter: brightness(0) invert(1);
}
.labor_box ul li:hover h4 {
    color:#fff;
}
.labor_box ul li .img_box {
    margin-bottom: 40px;
}
.labor_box ul li h4 {
    color:#222;
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 40px;
}
.labor_box ul li >span {
    display: none;
}
.labor_box ul li .hide {
    display: none;
}
.labor_box ul li .hide p {
    color:#fff;
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 400;
}
.labor_box ul li .hide a {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    box-sizing: border-box;
    border: 1px solid var(--color-main);
    color:var(--color-main);
    transition: all 0.2s;
    font-size: 24px;
    font-weight: 600;
}
.labor_box ul li .hide a:hover {
    background: var(--color-main);
    color:#fff;
}
.labor_box ul li .hide a:hover img {
    -webkit-filter: brightness(0) invert(1); 
    filter: brightness(0) invert(1);
}
/*노무플랜끝*/

/*행정플랜*/
.administrative_content ~ .bottom_contact_box {
    background: #f1f1f1;
    padding: 200px 0;
    margin: 0;
}
.administrative_content {
    margin-top: 60px;
}
.administrative_content ul li {
    padding: 130px 0;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.administrative_content ul li:nth-child(1) {
    background: rgba(236,212,170,0.5);
}
.administrative_content ul li:nth-child(3) {
    background: rgba(255,218,169,0.5);
}
.administrative_content ul li .itme_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    gap: 40px;
}
.administrative_content ul li:nth-child(odd) .itme_wrap {
    justify-content: space-between;
}
.administrative_content ul li .itme_wrap .img_box {
    width: 830px;
    height: 440px;
    overflow: hidden;
    border-radius: 30px;
}
.administrative_content ul li .itme_wrap .img_box img {
    width: 100%;
}
.administrative_content ul li .itme_wrap .txt_box h4 {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
}
.administrative_content ul li .itme_wrap .txt_box h4 span,
.administrative_content ul li .itme_wrap .txt_box p span {
    font-weight: 700;
}
.administrative_content ul li .itme_wrap .txt_box p {
    font-size: 20px;
    padding-top: 40px;
}
.administrative_content ul li .itme_wrap b {
    position: absolute;
    bottom: -170px;
    left: 0;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255,255,255, 0.7);
}
.administrative_content ul li:nth-child(even) .itme_wrap b {
    right: 0;
    text-align: right;
    color:#F1F1F1;
}
/*행정플랜끝*/

/*정부지원금*/
.subsidies_box {
    background: url(../images/subsidies_bg.png) no-repeat center/cover;
    padding: 130px 0;
    text-align: center;
    margin: 130px 0;
}
.subsidies_box b {
    font-size: 62px;
    font-weight: 400;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.subsidies_box b span,
.subsidies_box > p span {
    font-weight: 700;
}
.subsidies_box > p {
    font-size: 20px;
    padding-top: 40px;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.subsidies_box ul {
    margin: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.subsidies_box ul::after {
    content: '';
    display: block;
    width: 1px;
    height: 100px;
    background: #676767;
    position: relative;
    top: 20px;
}
.subsidies_box ul li {
    display: inline-block;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.subsidies_box ul li .wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 40px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 60px;
    max-width: fit-content;
}

.subsidies_box ul li .txt_box p {
    font-size: 40px;
    font-weight: 500;
}
.subsidies_slide {
    margin-bottom: 200px;
}
.subsidies_slide .txt_box {
    margin-bottom: 100px;
}
.subsidies_slide .txt_box b {
    font-size: 72px;
    font-weight: 900;
}
.subsidies_slide .txt_box p {
    font-size: 40px;
    padding-top: 40px;
}
.subsidies_slide .txt_box p span {
    font-size: 48px;
    font-weight: 700;
}
.subsidies_slide .autoplay {
    display: flex;
    flex-wrap: nowrap;
    height: 200px;
    overflow: hidden;
}
.subsidies_slide .autoplay .item {
    width: 200px;
    min-width: 200px;
    height: 200px;
    background: var(--color-main);
    color:#fff;
    text-align: center;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-right: 40px;
    box-sizing: border-box;
}
.subsidies_slide .autoplay .item.color01 {
    background: #EBCF9D;
}
.subsidies_slide .autoplay .item.color02 {
    background: #C49B6F;
}
.subsidies_slide .autoplay .item.color03 {
    background: #D98A54;
}
.subsidies_slide .autoplay .item.color04 {
    background: #D4A886;
}
.subsidies_slide .autoplay .item .img_box {
    width: 50px;
    height: 50px;
}
.subsidies_slide .autoplay .item .img_box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.subsidies_slide .autoplay .item p {
    font-size: 24px;
    font-weight: 700;
}

/*정부지원금끝*/

/*정책자금*/
.policy_content {
    border-top: 1px solid #E4E4E4;
    margin-top: 75px;
    padding: 135px 0 200px 0;
}
.policy_content h4 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.policy_content ul {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
}
.policy_content ul li {
    width: calc(100% / 4);
    margin-top: 20px;
    padding: 40px 0;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 16px;
    border: 1px solid #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    position: relative;
    bottom: -50px;
    opacity: 0;
}
.policy_content ul li p {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
}
/*정책자금끝*/

/*비젼칼럼*/
.vision_column label {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.vision_column label .wrap {
    position: relative;
}
.vision_column label img {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.vision_column label input {
    width: 900px;
    border: 1px solid #E6E6E6;
    border-radius: 50px;
    font-size: 18px;
    color:#000;
    padding: 18px 80px;
    box-sizing: border-box;
}
.vision_column label input::placeholder {
    font-size: 16px;
    color:#b4b4b4;
}
.vision_column label button {
    border: 1px solid #E6E6E6;
    font-size: 22px;
    font-weight: 600;
    padding: 16px 30px;
    box-sizing: border-box;
    border-radius: 50px;
    transition: all 0.3s;
}
.vision_column label button:hover {
    background: #000;
    color:var(--color-main);
    border: 1px solid #000;
}
.vision_column .vision_column_list {
    margin: 60px 0 200px 0; 
}
.vision_column .vision_column_list > p {
    padding-bottom: 28px;
}
.vision_column .vision_column_list > p span {
    color:var(--color-mainbold);
    font-size: 18px;
    font-weight: 700;
}
/* .vision_column .vision_column_list .btn_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}
.vision_column .vision_column_list .btn_box button {
    display: flex;
    align-items: center;
    gap: 20px;
}
.vision_column .vision_column_list .btn_box button span {
    font-size: 22px;
    font-weight: 600;
}
.vision_column .vision_column_list .btn_box button img {
    transition: all 0.2s;
}
.vision_column .vision_column_list .btn_box button:hover img {
    filter: invert(1);
} */

.vision_column_list .btn_box .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}
.vision_column_list .btn_box .pagination .pagination-pager {
    display: none;
}
.vision_column_list .btn_box .pagination .pagination-pager.next,
.vision_column_list .btn_box .pagination .pagination-pager.prve {
    display: block;
}
.vision_column_list .btn_box .pagination .pagination-pager.next a,
.vision_column_list .btn_box .pagination .pagination-pager.prve a {
    display: flex;
    align-items: center;
    height: 44px;
    width: 160px;
    font-size: 22px;
    font-weight: 600;
}
.vision_column_list .btn_box .pagination .pagination-pager.next a {
    background: url(../images/column-next.svg)no-repeat center right;
}
.vision_column_list .btn_box .pagination .pagination-pager.next a svg,
.vision_column_list .btn_box .pagination .pagination-pager.prve a svg {
    display: none;
}
.vision_column_list .btn_box .pagination .pagination-pager.prve a {
    background: url(../images/column-prev.svg)no-repeat center left;
    justify-content: flex-end;
}

/*비젼칼럼끝*/

/*컨설팅문의하기*/
.consulting_inquiries {
    padding: 40px 40px 200px 40px;
    box-sizing: border-box;
}
.consulting_notice {
    
}
.consulting_notice > p {
    padding-bottom: 5px;
}
.consulting_notice > p span {
    color:var(--color-mainbold);
    font-size: 18px;
    font-weight: 700;
}
.inquiries_box {
    background: #FBFBFB;
    border: 1px solid #EFF0F6;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 8px;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 20px;
}
.inquiries_box h4 {
    font-size: 24px;
    color:#2e2e2e;
    font-weight: 600;
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 20px;
    margin-bottom: 60px;
}
.inquiries_box .inquiries_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inquiries_box .inquiries_wrap > li {
    width: calc(100% / 2 - 20px);
    margin-bottom: 40px;
}
.inquiries_box .inquiries_wrap > li:last-child {
    width: 100%;
}
.inquiries_box .inquiries_wrap > li p {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 16px;
}
.inquiries_box .inquiries_wrap > li > input {
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 8px;
    background: #fff;
    border-radius: 10px;
    font-size: 18px;
    color:#000;
    border: 1px solid #EFF0F6;
}
.inquiries_box .inquiries_wrap input::placeholder,
.inquiries_box .inquiries_wrap textarea::placeholder {
    font-size: 18px;
    color:#a7a7a7;
}
.inquiries_box .inquiries_wrap .type_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
}
.inquiries_box .inquiries_wrap .type_box > li {
    padding: 20px 30px;
    box-sizing: border-box;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 8px;
    background: #fff;
    border-radius: 10px;
    font-size: 18px;
    color:#000;
    border: 1px solid #EFF0F6;
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}
.inquiries_box .inquiries_wrap .type_box .checkbox_wrap input {
    display: none;
}
/* off */
.inquiries_box .inquiries_wrap .type_box .checkbox_wrap input+label{ 
    background: url('../images/checkbox_off.svg') no-repeat;
}
/* on */
.inquiries_box .inquiries_wrap .type_box .checkbox_wrap input:checked+label{
    background: url('../images/checkbox_on.svg') no-repeat;
}
.inquiries_box .inquiries_wrap .type_box .checkbox_wrap label{
    display: block;
    width:22px;
    height:22px;
}
.inquiries_box .inquiries_wrap .type_box > li.type07_textarea {
    width: 100%;
    padding: 0;
    justify-content: flex-start;
    box-shadow: none;
    border: none;
    background: none;
    display: none;
}
.inquiries_box .inquiries_wrap .type_box > li.type07_textarea textarea {
    width: 100%;
    height: 80px;
    resize: none;
    overflow: hidden;
    box-sizing: border-box;
    border: none;
    border: 1px solid #eee;
    padding: 10px;
    background: none;
}
.inquiries_box .privacy_btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}
.inquiries_box .privacy_btn label a {
    color:#0454FF;
    font-weight: 500;
}
.inquiries_box .privacy_btn .checkbox_wrap input {
    display: none;
}
/* off */
.inquiries_box .privacy_btn .checkbox_wrap input+label{ 
    background: url('../images/checkbox01_off.svg') no-repeat;
}
/* on */
.inquiries_box .privacy_btn .checkbox_wrap input:checked+label{
    background: url('../images/checkbox01_on.svg') no-repeat;
}
.inquiries_box .privacy_btn .checkbox_wrap label{
    display: block;
    width:24px;
    height:24px;
}
.consulting_inquiries form .submit_wrap {
    text-align: right;
    margin-top: 40px;
}
.consulting_inquiries form .submit_wrap .inquiries_submit {
    color:#fff;
    font-size: 24px;
    font-weight: 700;
    padding: 18px 44px;
    box-sizing: border-box;
    border-radius: 30px;
    background: linear-gradient(-269.39933729296797deg, rgba(255, 185, 58,1) 15.772266041889011%,rgba(240, 154, 0,1) 76.85067452641408%);
    transition: all 0.3s;
}
.consulting_inquiries form .submit_wrap .inquiries_submit:hover {
    color:var(--color-main);
    background: #000;
    transform: scale(1.05);
}
/*컨설팅문의하기끝*/

/*오시는 길*/
.location {
    display: flex;
    justify-content: space-between;
    margin: 130px auto 200px auto;
}
.location > ul {
    width: 430px;
}
.location > ul li {
    border-bottom: 1px solid #EAEAEA;
    padding: 32px 10px 16px 10px;
    box-sizing: border-box;
    background: #fff;
}
.location > ul li:hover {
    background: var(--color-hover);
}
.location > ul li span {
    display: block;
    font-size: 16px;
    color:#8D8D8D;
    padding-bottom: 16px;
}
.location > ul li input {
    background: url(../images/icon_copy.svg) no-repeat center right;
    border: none !important;
    font-size: 20px;
    color:#000;
    width: 100%;
    cursor: pointer;
}
.location > ul li input:focus {
    outline: none !important;
}
.location .root_daum_roughmap .wrap_controllers {
    display: none !important;
}
.location .root_daum_roughmap_landing {
    border-radius: 30px;
}
/*오시는 길끝*/

/*개인정보,이용약관*/
.Privacy_box,
.ToS_box {
    margin: 80px 200px;
    padding: 80px 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    line-height: 1.8;
}
/* .Privacy_box dl,
.ToS_box dl {
    padding-bottom: 40px;
}
.Privacy_box dt,
.ToS_box dt {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
} */

/*footer*/
footer {
    color: var(--color-gray);
    font-size: 14px;
    font-weight: 400;
    background: #222;
    padding: 40px 0;
}
footer .footer-top {
    display: flex;
    justify-content: space-between;
}
footer .footer-top h2 {
    display: flex;
    align-items: center;
}
footer .footer-top h2 img {
    width: 130px;
    -webkit-filter: brightness(0) invert(1); 
    filter: brightness(0) invert(1);
}
footer .footer-top .btn_box {
    display: flex;
    gap: 16px;
}
footer .footer-top .btn_box a {
    color:#fff;
    padding: 16px 38px;
    border: 1px solid #868686;
    border-radius: 100px;
    transition: all 0.5s;
}
footer .footer-top .btn_box a:hover {
    background: #474747;
}
footer .footer-info {
    border-top: 1px solid #4E4E4E;
    padding-top: 40px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .footer-info ul {
    display: flex;
    gap: 20px;
}
footer .footer-info ul li {
    color:#fff;
    font-size: 16px;
}


footer .footer-info ul li span {
    color:#797979;
    font-weight: 600;
}

footer .footer-info ul li a {
    color:#fff;
}
footer ul .footer-c {
    font-size: 18px;
    color:#5C5C5C;
}