.visual {
    position: relative;
}
.visual:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
    z-index: 1;
}
.visual .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual .video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual .box {
    position: relative;
    gap: 10px;
    font-size: 24px;
    word-break: keep-all;
    z-index: 2;
}
.visual .box h2 {
    font-size: 100px;
}
.visual.first .box h2 {
    animation: slideUp .5s ease-in forwards;
}
.visual.first .box p {
    animation: slideUp .5s ease-in forwards;
}
.visual .scroll_ani {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.visual .scroll_ani .chevron {
    position: absolute;
    left: calc(50% - 10px);
    width: 23px;
    height: 3px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}
.visual .scroll_ani .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}
.visual .scroll_ani .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}
.visual .scroll_ani .chevron:before,
.visual .scroll_ani .chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--white);
    border-radius: 10px;
}
.visual .scroll_ani .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}
.visual .scroll_ani .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

@keyframes move {
    25% {
      opacity: 1;
    }
    33% {
      opacity: 1;
      transform: translateY(20px);
    }
    67% {
      opacity: 1;
      transform: translateY(30px);
    }
    100% {
      opacity: 0;
      transform: translateY(45px) scale3d(0.5, 0.5, 0.5);
    }
}
.visual .scroll_ani .text {
    display: block;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    white-space: nowrap;
    animation: pulse 2s linear alternate infinite;
    font-family: 'Pretendard';
}
@keyframes pulse {
    to {
        opacity: 1;
    }
}


.section01 .logo {
    margin-bottom: 50px;
}
.section01 h2 {
    font-size: 100px;
    margin-bottom: 30px;
}
.section01 p {
    color: #9C9C9C;
    font-size: 24px;
    line-height: 1.4;
}


.section02 .inner {
    max-width: 1260px;
    gap: 80px;
}
.section02 .box {
    gap: 150px;
}
.section02 .box .count {
    width: 300px;
    text-align: center;
    gap: 15px;
    box-sizing: border-box;
}
.section02 .box .count strong {
    font-size: 120px;
}
.section02 .box .count span {
    font-size: 80px;
}
.section02 .box .txt {
    flex: 1;
}
.section02 .box .txt h3 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section02 .box .txt p {
    font-size: 24px;
    line-height: 1.4;
    word-break: keep-all;
}
.section02 .box:last-child .count {
    justify-content: end;
}
.section02 .box:last-child .txt p {
    max-width: 532px;
}



.section03 .inner {
    gap: 50px;
}
.section03 .grid {
    gap: 50px;
}
.section03 .grid > div {
    position: relative;
    width: calc(33.333% - 34px);
    height: 570px;
    perspective: 1000px;
    transform-style: preserve-3d;
}
.section03 .grid > div .box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 1s;
}
.section03 .grid > div .front,
.section03 .grid > div .back {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.section03 .grid > div .front {
    background-size: cover;
}
.section03 .grid > div .front > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 40px;
    line-height: 1.4;
    font-weight: 500;
}
.section03 .grid > div .back {
    transform: rotateY(180deg);
    transform-style: preserve-3d;
}
.section03 .grid > div .back .content {
    background-color: var(--key-color);
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 50px 10px;
    color: #fff;
    transform: translate(-50%,-50%) translateZ(100px);
    width: 100%;
    box-sizing: border-box;
}
.section03 .grid > div:hover .box {
    transform: rotateY(180deg);
}



.section04 .accordian {
    overflow: hidden;
}
.section04 .accordian > div {
    position: relative;
    width: 25%;
    height: 100vh;
    justify-content: center;
    transition: all .8s;
    text-transform: uppercase;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    overflow: hidden;
    box-sizing: border-box;
}
.section04 .accordian > div:nth-child(1) {
    background-image: url("../images/main_sec04_img1.png");
}
.section04 .accordian > div:nth-child(2) {
    background-image: url("../images/main_sec04_img2.png");
}
.section04 .accordian > div:nth-child(3) {
    background-image: url("../images/main_sec04_img3.png");
}
.section04 .accordian > div:nth-child(4) {
    background-image: url("../images/main_sec04_img4.png");
}
.section04 .accordian > div:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.45);
    transition: all .3s;
}
.section04 .accordian > div h3 {
    color: var(--white);
    font-size: 100px;
    z-index: 1;
}
.section04 .accordian > div h3.rotate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(90deg);
    opacity: 1;
    transition: all .2s;
}
.section04 .accordian .box {
    opacity: 0;
    z-index: -1;
    text-align: center;
}
.section04 .accordian .box > h3 {
    margin-bottom: 100px;
}
.section04 .accordian .box .form {
    position: relative;
    width: 90%;
    max-width: 685px;
    background: rgba(0, 0, 0, 0.50);
    padding: 50px;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
}
.section04 .accordian .box .form > div {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
}
.section04 .accordian .box .form > button {
    height: 50px;
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    background: url("../images/arrow-right-circle.svg")no-repeat 0 50%;
    padding-left: 65px;
    text-transform: uppercase;
    border-radius: 0px;
    transition: all .5s;
    box-sizing: border-box;
}
.section04 .accordian .box .form > button:hover {
    border-radius: 100px;
    border: 1px solid var(--key-color);
    color: var(--key-color);
    background: var(--white) url("../images/arrow-right-green.svg") no-repeat calc(100% - 15px) 50%;
    padding-left: 20px;
    padding-right: 50px;
}
.section04 .accordian.on > div {
    width: 16%;
}
.section04 .accordian.on > div.active {
    width: 52%;
}
.section04 .accordian.on > div.active h3.rotate {
    opacity: 0;
}
.section04 .accordian.on > div.active .box {
    opacity: 1;
    z-index: 1;
}



.contact .inner {
    max-width: 1275px;
    gap: 50px 60px;
    padding-top: 75px;
}
.contact .map {
    opacity: .9;
    width: 70%;
    max-width: 710px;
}
.contact .map .root_daum_roughmap {
    width: 100%;
}
.contact .map .root_daum_roughmap .wrap_map {
    height: 375px;
}
.contact .map .root_daum_roughmap .cont {
    display: none!important;
}
.contact .info {
    flex: 1;
    gap: 40px;
}
.contact .info > div {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
}
.contact .info > div p {
    color: #9C9C9C;
}




@media screen and (max-width: 1450px) {
    .visual .box h2 {
        font-size: 80px;
    }

    .section01 h2 {
        font-size: 80px;
    }
    .section01 p {
        font-size: 20px;
    }


    .section02 .box {
        gap: 100px;
    }
    .section02 .box .count {
        width: 220px;
    }
    .section02 .box .count strong {
        font-size: 80px;
    }

    .section04 .accordian > div h3 {
        font-size: 80px;
    }
}
@media screen and (max-width: 1024px) {
    .visual .box {
        font-size: 20px;
    }
    .visual .box h2 {
        font-size: 54px;
    }
    .visual .scroll_ani .text {
        font-size: 14px;
    }

    .section01 h2 {
        font-size: 54px;
    }


    .section02 .box {
        gap: 65px;
    }
    .section02 .box .count {
        width: 170px;
    }
    .section02 .box .count strong {
        font-size: 54px;
    }
    .section02 .box .count span {
        font-size: 50px;
    }
    .section02 .box .txt h3 {
        font-size: 32px;
    }
    .section02 .box .txt p {
        font-size: 20px;
    }

    .section03 .grid {
        gap: 20px;
    }
    .section03 .grid > div {
        width: calc(33.333% - 14px);
    }
    .section03 .grid > div .front > div {
        font-size: 30px;
    }

    .section04 .accordian > div h3 {
        font-size: 54px;
    }
    .section04 .accordian .box .form > div {
        font-size: 30px;
    }

    .contact .inner {
        gap: 30px;
    }
    .contact .map {
        max-width: 615px;
    }
    .contact .map .root_daum_roughmap {
        width: 100%;
    }
    .contact .info {
        gap: 30px;
    }
    .contact .info > div {
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
    /*.section {
        height: auto!important;
        min-height: auto!important;
        padding: 50px 0;
        box-sizing: border-box;
    }
    .fp-overflow {
        max-height: none!important;
    }

    .visual {
        min-height: 80vh!important;
    }*/
    .visual .box {
        font-size: 16px;
    }
    .visual .box h2 {
        font-size: 30px;
    }

    .section01 h2 {
        font-size: 30px;
    }
    .section01 p {
        font-size: 14px;
    }


    .section02 .box {
        gap: 20px;
    }
    .section02 .box .count {
        flex: none;
        order: 0;
        width: 100%;
        max-width: 100%;
        padding: 0;
        justify-content: center;
    }
    .section02 .box:last-child .count {
        justify-content: center;
    }
    .section02 .box:last-child .txt p {
        max-width: 100%;
    }
    .section02 .box .count strong {
        font-size: 30px;
    }
    .section02 .box .count span {
        font-size: 26px;
    }
    .section02 .box .txt {
        order: 1;
        max-width: 100%;
        text-align: center;
    }
    .section02 .box .txt h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .section02 .box .txt p {
        font-size: 16px;
    }


    .section03 {
        padding-top: 50px;
    }
    .section03 .grid {
        padding: 0 20px;
        box-sizing: border-box;
    }
    .section03 .grid > div {
        width: 100%;
        height: 280px;
    }
    .section03 .grid > div .front > div {
        font-size: 20px;
    }
    .section03 .grid > div .back .content {
        padding: 30px 10px;
        font-size: 14px;
    }


    .section04 .accordian {
        flex-direction: column;
    }
    .section04 .accordian > div {
        width: 100%;
        height: 25vh;
    }
    .section04 .accordian > div h3.rotate {
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }
    .section04 .accordian.on > div {
        width: 100%;
        height: 20vh;
    }
    .section04 .accordian.on > div.active {
        width: 100%;
        height: 40vh;
    }
    .section04 .accordian > div h3 {
        font-size: 40px;
    }
    .section04 .accordian .box > h3 {
        margin-bottom: 20px;
    }
    .section04 .accordian .box .form {
        padding: 20px;
    }
    .section04 .accordian .box .form > div {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .section04 .accordian .box .form > button {
        font-size: 16px;
        background-size: 22px;
        padding-left: 30px;
    }
    .section04 .accordian .box .form > button:hover {
        background-size: 18px!important;
        padding-right: 40px;
    }



    .contact .map {
        width: 100%;
        max-width: 100%;
    }
    .contact .map .root_daum_roughmap .wrap_map {
        height: 310px;
    }
    .contact .info > div {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}