@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/nanumsquare.css);
@import url('https://webfontworld.github.io/gmarket/GmarketSans.css');

.display-pc {
    display: block !important;
}

.display-mo {
    display: none !important;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'NanumSquareAc', sans-serif;
}

.gm {
    font-family: 'GmarketSans', sans-serif;
}

.ns {
    font-family: 'NanumSquareAc', sans-serif;
}

.blinking {
    animation: blink 1s infinite;
}

.svg .border {
    fill: none;
    stroke: #000;
    /* 원의 테두리 색상 */
    stroke-width: 4;
    /* 원의 테두리 두께 */
    stroke-dasharray: 1162.39;
    /* 원의 둘레 (2 * π * r) */
    stroke-dashoffset: 1162.39;
}

.aos-animate .svg .border {
    animation: draw 2s linear forwards .6s;
    /* 애니메이션 적용 */
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.fade-effect {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
}

.fade-down-effect {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
}

.fade-in-effect {
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translate3d(0, -50px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeDownCenter {
    from {
        opacity: 0;
        transform: translate3d(-50%, -50px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(7deg);
    }

    20% {
        transform: rotate(-7deg);
    }

    30% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(3deg);
    }

    60% {
        transform: rotate(-3deg);
    }

    70% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.active .fade-effect {
    animation: fadeUp .9s ease forwards;
}

.active .fade-down-effect {
    animation: fadeDown .9s ease forwards;
}

.active .fade-in-effect {
    animation: fadeIn .9s ease forwards;
}

section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
    min-height: 90vh;
}

.section_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.sec1 {
    background: url(../images/sec1_bg.png) no-repeat;
    background-size: 100% 100%;
}

.sec1 h1.logo {
    position: absolute;
    top: 50px;
    left: 100px;
}

.sec1 .section_content .item_wrap {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.sec1 .section_content .item_wrap .item {
    position: relative;
}

.sec1 .section_content .item_wrap .item .txt {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    animation:
        fadeDownCenter .9s ease forwards,
        blink 1s infinite;
}

.sec2 {
    background: url(../images/sec2_bg.png) no-repeat;
    background-size: 100% 100%;
}

.sec2 .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: absolute;
    top: 0;
    right: 100px;
    transform-origin: 50% 0%;
    animation-name: shake;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    z-index: 1;
}

.sec2 .t3 {
    margin: 10px 0 30px;
}

.sec2 .c_img {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 35%);
}

.sec3 {
    background: url(../images/sec3_bg.png) no-repeat;
    background-size: 100% 100%;
}

.sec3 .t1 {
    margin-bottom: 20px;
}

.sec3 .t3 {
    margin-bottom: 20px;
}

.sec4 {
    background: url(../images/sec4_bg.png) no-repeat;
    background-size: 100% 100%;
}

.sec4 .t3 {
    margin: 30px 0 -110px;
    position: relative;
}

.sec5 {
    background: #f4f4f4;
    min-height: auto;
}

.sec5:not(.sec5.first):not(.sec5.last) {
    padding: 30px 0;
}

.sec5 .video_container {
    max-width: 750px;
    position: relative;
    width: 750px;
}

.sec5 .video_wrap {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    height: 0;
}

.sec5 .video_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sec5 .t3 {
    margin-bottom: 50px;
}

.sec5 .t4 {
    margin-top: 50px;
}

.sec5 .item_wrap {
    display: flex;
    align-items: center;
    position: relative;
    margin: 30px 0;
}

.sec5 .item_wrap .item {
    position: relative;
}

.sec5 .item_wrap .item .txt {
    position: absolute;
    left: 50%;
    bottom: 43px;
    transform: translateX(-50%);
}

.sec5 .item_wrap.info1_wrap .vs {
    margin: 0 50px -280px 50px;
}

.sec5 .info2_wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.sec5 .info2_wrap>div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sec5 .info2_wrap .info2_2 {
    position: absolute;
    z-index: 1;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.sec5 .item_wrap.info3_wrap {
    gap: 50px;
}

.sec5 .item_wrap.info3_wrap .svg {
    position: absolute;
    top: 3px;
    left: 10px;
}

.sec5 .item_wrap.info3_wrap .item:nth-child(2) .svg,
.sec5 .item_wrap.info3_wrap .item:nth-child(3) .svg {
    left: 11px;
}

.sec5.active .item_wrap.info3_wrap .item:nth-child(1) .svg .border {
    animation: draw 2s linear forwards 0.3s;
}

.sec5.active .item_wrap.info3_wrap .item:nth-child(2) .svg .border {
    animation: draw 2s linear forwards 1.6s;
}

.sec5.active .item_wrap.info3_wrap .item:nth-child(3) .svg .border {
    animation: draw 2s linear forwards 2.4s;
}

.sec6 {
    background: url(../images/sec6_bg.png) no-repeat;
    background-size: 100% 100%;
}

.sec6 .info_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.sec6 .info_wrap>div {
    width: min-content;
}

.sec6 .info_wrap .col2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sec6 .info_wrap .col3 .t3 {
    margin-top: 30px;
}

.sec6 .info_wrap .btn1 {
    margin-top: 30px;
}

.sec7 {
    background: #f3f3f3;
}

.sec7 .section_content {
    width: 100%;
}

.sec7 .t3 {
    margin-top: 20px;
}

.sec7 .info_wrap {
    position: relative;
    margin: 30px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.sec7 .info_wrap:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0;
    border-bottom: 4px solid #312a28;
}

.sec7.active .info_wrap:before {
    animation: drawLine 1s forwards .6s;
}

@keyframes drawLine {
    to {
        width: 100%;
    }

    /* 최종 너비를 100%로 설정 */
}


.sec7 .info_wrap>img {
    position: relative;
}

.sec7 .info_wrap .circle {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #312a28;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    left: 50%;
    opacity: 0;
}

.sec7 .info_wrap .circle:nth-child(1) {
    left: calc(50% - 600px);
}

.sec7 .info_wrap .circle:nth-child(2) {
    left: calc(50% - 210px);
}

.sec7 .info_wrap .circle:nth-child(3) {
    left: calc(50% + 203px);
}

.sec7 .info_wrap .circle:nth-child(4) {
    left: calc(50% + 600px);
}

.sec7.active .info_wrap .circle:nth-child(1) {
    animation: fadeIn .3s ease forwards 1.8s;
}

.sec7.active .info_wrap .circle:nth-child(2) {
    animation: fadeIn .3s ease forwards 2.1s;
}

.sec7.active .info_wrap .circle:nth-child(3) {
    animation: fadeIn .3s ease forwards 2.4s;
}

.sec7.active .info_wrap .circle:nth-child(4) {
    animation: fadeIn .3s ease forwards 2.7s;
}

.sec8 {
    background: #181618;
    padding: 70px 0 0;
}

.sec8 .t3 {
    position: relative;
    z-index: 1;
}

.sec8 .img1 {
    margin-top: -80px;
    width: 100%;
}

.sec9 {
    background: #92ce38;
}

.sec9 .section_content {
    width: 100%;
}

.sec9 .btn_wrap {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.sec9 .swiper {
    width: 100%;
}

.sec9 .swiper .swiper-slide a {
    width: 100%;
    position: relative;
    display: block;
    padding-bottom: 100%;
    height: 0;
}

.sec9 .swiper .swiper-slide a img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.sec10 {
    background: #ffe400;
    padding: 100px 0 0;
}

.sec10 .section_content {
    width: 100%;
}

.sec10 .t2 {
    margin-bottom: 10px;
}

.sec10 .t3 {
    font-size: 20px;
    font-weight: bold;
}

.sec10 .swiper {
    width: 100%;
    overflow: hidden;
}

.sec10 .swiper-slide {
    opacity: 0;
}

.sec10 .swiper-slide.swiper-slide-visible.swiper-slide-active {
    opacity: 1;
}

.sec10 .swiper-slide.swiper-slide-visible {
    opacity: 0.6;
}

.sec10 .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
}

.sec10 .swiper-btn-wrap {
    max-width: 850px;
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 250px;
    z-index: 1;
}

.sec10 .swiper-btn-wrap>div:after {
    display: none;
}

.sec11 .info {
    margin-top: 30px;
}

.sec12 {
    background: #92ce38;
}

.sec12 .t3 {
    position: relative;
}

.sec12 .t3>span {
    position: absolute;
    width: max-content;
    left: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
}

.sec12 #form2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 780px;
    width: 100%;
}

.sec12 #form2 .full {
    grid-column: 2 span;
}

.sec12 #form2 .input_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sec12 #form2 .input_wrap label {
    font-size: 18px;
}

.sec12 #form2 .input_wrap label .required {
    color: #fff;
    margin-left: 5px;
}

.sec12 #form2 .input_wrap input,
.sec12 #form2 .input_wrap textarea {
    font-size: 16px;
    padding: 15px 10px;
    border-radius: 5px;
    border: 0;
}


.sec12 #form2 .check_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-top: 20px;
}

.sec12 #form2 .check_wrap input[type="checkbox"] {
    display: none;
}

.sec12 #form2 .check_wrap input[type="checkbox"]+label {
    display: inline-block;
    width: 33px;
    height: 33px;
    position: relative;
    background: url(../images/sec12_check.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 10px;
}

.sec12 #form2 .check_wrap input[type="checkbox"]:checked+label::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 33px;
    height: 33px;
    background: url(../images/sec12_check_on.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 10px;
}

.modal .modal-dialog {
    max-width: 750px;
}

.modal .modal-dialog .modal-header {
    font-size: 20px;
    font-weight: 800;
}

.modal .modal-dialog .modal-body {
    line-height: 1.5em;
    max-height: 300px;
    overflow-y: auto;
}

.sec12 #form2 .check_wrap .modal_btn {
    font-size: 15px;
    background: #69a116;
    padding: 10px 15px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    margin-left: 10px;
}

#foot_sticky {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

#foot_sticky.active {
    position: relative;
}

#contact_form {
    background: #ae2f25;
    border-top: 4px solid #111;
}

#contact_form>form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 7px;
}

#contact_form>form .col1,
#contact_form>form .col2,
#contact_form>form .col3 {
    display: flex;
    align-items: center;
}

#contact_form>form .col2 {
    gap: 10px;
}

#contact_form>form .col1 p {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin: 0 25px;
}

#contact_form>form .col1 p>span {
    font-size: 36px;
    margin-left: 15px;
}

#contact_form>form input {
    font-size: 16px;
    padding: 13px;
    font-weight: bold;
}

#contact_form>form button.submit_btn {
    font-size: 20px;
    padding: 15px 30px;
    background: #1c1c1c;
    color: #fff;
    border: 0;
    border-radius: 5px;
    font-weight: bold;

}

/*추*/
#contact_form>form .agree_wrap .check_wrap span a{
    color: #fff;
    text-decoration: underline;
}


/*추가    */
#cs_btn button{
    width: 30%;
    font-size: 20px;
    padding: 15px 30px;
    background: #1c1c1c;
    color: #fff;
    border: 0;
    border-radius: 5px;
    font-weight: bold;    
}

#cs_btn{
    text-align: center;
    padding-top: 10px;
}


#contact_form>form .agree_wrap {
    margin-left: 10px;
    flex-direction: column;
    align-items: flex-start;
}

#contact_form>form .agree_wrap .check_wrap {
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 7px;
}

#contact_form>form .agree_wrap>a {
    font-size: 14px;
    color: #fff;
}

.bannerSwiper {
    background: #111;
}

.bannerSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

.bannerSwiper .item {
    font-family: 'NanumSquareAc', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 0;
}

.bannerSwiper .item>span {
    color: #ffde00;
    margin-left: 5px;
}


footer#footer {
    padding: 50px 5%;
    background: #1c1c1c;
    width: 100%;
    display: grid;
    grid-template-columns: 80px 1fr 140px;
    gap: 30px;
}

footer#footer .info_wrap .nav {
    gap: 30px;
}

footer#footer .info_wrap .nav a {
    font-size: 16px;
    color: #fff;
}

footer#footer .info_wrap .biz_info {
    font-size: 14px;
    color: #a2a2a2;
    line-height: 2em;
    margin: 20px 0 10px;
}

footer#footer .info_wrap .copyright {
    font-size: 12px;
    color: #a2a2a2;
}

footer#footer .sns {
    display: flex;
    justify-content: space-evenly;

}

@media screen and (max-width:1024px) {
    .display-pc {
        display: none !important;
    }

    .display-mo {
        display: block !important;
    }

    section {
        background-size: cover !important;
        background-position: 50% 50% !important;
        min-height: auto;
    }

    section img {
        max-width: 360px;
    }

    .section_content {
        width: 100%;
    }

    .sec1 {
        padding: 120px 0 70px;
    }

    .sec1 .section_content .item_wrap {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .sec1 .section_content .item_wrap .item {
        width: 100%;
        max-width: 350px;
    }

    .sec1 .section_content .item_wrap .item .bg {
        width: 100%;
    }

    .sec1 h1.logo img {
        width: 100%;
    }

    .sec1 h1.logo {
        top: 15px;
        left: 15px;
        width: 75px;
    }

    .sec2 {
        background: url(../images/sec2_bg_mo.png) no-repeat;
    }

    .sec2 .profile {
        right: 10px;
        width: 90px;
        gap: 5px;
    }

    .sec2 .profile img {
        width: 100%;
    }

    .sec2 .profile .click img {
        max-width: 70px;
    }

    .sec2 .c_img {
        max-width: 350px;
    }

    .sec3 {
        background: url(../images/sec3_bg_mo.png) no-repeat;
    }

    .sec3 .t1 {
        width: 100%;
        max-width: 370px;
    }

    .sec4 .t3 {
        margin: 0;
    }

    .sec4 .c_img {
        max-width: 100%;
        width: 100%;
    }

    .sec5 .t1 {
        max-width: 150px;
    }

    .sec5 .t3 {
        max-width: 170px;
    }

    .sec5.first {
        padding-bottom: 0;
    }

    .sec5:not(.sec5.first):not(.sec5.last) {
        padding: 15px 0;
    }

    .sec5 .video_container {
        width: 100%;
        padding: 0 20px;
    }

    .sec5 .t4 {
        max-width: 250px;
    }

    .sec5 .item_wrap {
        flex-direction: column;
    }

    .sec5 .item_wrap.info1_wrap .vs {
        margin: 30px 0;
        max-width: 80px;
    }

    .sec5 .item_wrap .item .txt {
        bottom: 32px;
        width: 80%;
    }

    .sec5 img.info {
        width: 100%;
    }

    .sec5 .info2_wrap .info2_2 {
        top: 0;
    }

    .sec5 .t6,
    .sec5 .t7 {
        max-width: 300px;
    }

    .sec5 .item_wrap.info3_wrap {
        gap: 30px;
    }

    .sec5 .item_wrap.info3_wrap .svg {
        top: 2px;
        left: 6px;
        width: 344px !important;
        height: 344px !important;
        overflow: visible;
    }

    .svg .border {
        r: 172;
        cx: 172;
        cy: 172;
    }

    .sec5 .item_wrap.info3_wrap .item:nth-child(2) .svg,
    .sec5 .item_wrap.info3_wrap .item:nth-child(3) .svg {
        left: 9px;
    }

    .sec6 {
        background: url(../images/sec6_bg_mo.png) no-repeat;
    }

    .sec6 .t1 {
        margin-bottom: 30px;
    }

    .sec6 .t2 {
        margin: 30px 0;
    }

    .sec7 .info_wrap>img {
        max-width: 500px;
        width: 90%;
    }

    .sec7 .info_wrap .circle {
        display: none;
    }

    .sec7 .img4 {
        max-width: 500px;
        width: 90%;
    }

    .sec8 {
        padding: 70px 0 0;
    }

    .sec8 .img1 {
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
    }

    .sec9 {
        min-height: auto;
    }

    .sec10 .t1 {
        max-width: 255px;
    }

    .sec10 .swiper-slide {
        height: 500px;
    }

    .sec10 .swiper .swiper-slide img {
        position: absolute;
        left: 52%;
        transform: translateX(-50%);
        max-width: 360px;
        width: 80%;
        bottom: 0;
        height: auto;
    }

    .sec10 .swiper-btn-wrap {
        max-width: 500px;
        bottom: 50%;
    }

    .sec10 .swiper-btn-wrap img {
        height: 70px;
    }

    .sec11 .t1 {
        max-width: 280px;
    }

    .sec12 .t2 {
        max-width: 280px;
    }

    .sec12 .t3>span {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        display: -webkit-box;
        margin-top: 20px;
        margin: 15px auto;
    }

    .sec11 .info {
        max-width: 400px;
        width: calc(100% - 30px);
    }

    .sec12 #form2 {
        display: flex;
        flex-direction: column;
        padding: 0 15px;
    }

    .sec12 #form2 .check_wrap {
        font-size: 14px;
        margin-top: 10px;
        position: relative;
        justify-content: flex-start;
    }

    .sec12 #form2 .check_wrap .modal_btn {
        position: absolute;
        right: 0;
        top: 100%;
    }

    #contact_form>form {
        flex-direction: column;
        padding: 10px 15px;
    }

    #contact_form>form .col2 {
        /*gap: 10px 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;*/
        gap: 5px;
        width: 100%;
        display: grid;
        grid-template-columns: 35% 39% calc(25% - 5px);
    }

    #contact_form>form button.submit_btn {
/*        grid-column: span 2;*/
        font-size: 16px;
        padding: 15px 10px;
    }

    #contact_form>form .col1 p {
        /*display: flex;
        flex-direction: column;
        align-items: flex-start;
        font-size: 14px;
        gap: 10px;
        margin: 0;
        margin-left: 15px;*/
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 14px;
        gap: 10px;
        margin: 0;
    }

    #contact_form>form .col1 p>span {
       /* margin: 0;
        font-size: 22px;*/
         margin: 0;
        font-size: 16px;
    }

    #contact_form>form .col1 img.ico_phone {
        max-height: 33px;
    }

    #contact_form>form .col1 {
        justify-content: flex-start;
        width: 100%;
    }

    #contact_form>form .agree_wrap {
        position: absolute;
        top: 14px;
        right: 15px;
    }


    footer#footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 15px;
    }

    footer#footer .info_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    footer#footer .sns {
        align-items: center;
        gap: 30px;
    }

    footer#footer .info_wrap .biz_info {
        margin: 0;
        text-align: center;
    }

    @media(max-width: 767px) {

        #contact_form>form button.submit_btn{
            width: 100%;
        }

        #c_name2{
            width: 100%;
        }

    }    
}