.quick_menu_cont {
    position: fixed;
    font-size: 16px;
    top: 50%;
    transform: translate(0, -50%);
    right: 2%;
    z-index: 100;
    color: #F8F9FA;
    text-align: center;
}
.quick_menu_cont ul {
    display: flex;
    flex-direction: column;
}
.quick_menu_cont ul li {
   margin-bottom: 10px;
}
.quick_menu_cont ul li.qmc_contact a {
    background-color: var(--mainred);
    border: 1px solid var(--mainred);
}
.quick_menu_cont ul li:last-child {
    margin-bottom: 0;
}
.quick_menu_cont ul li a,
.quick_menu_cont ul li button  
{
    display: block;
    min-width: 120px;
    border-radius: 100px;
    padding: 10px;
    border: 1px solid var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.quick_menu_cont ul li:hover a {
    color: #000;
    background-color: var(--white);
}
.quick_menu_cont ul li.qmc_contact:hover a {
    border: 1px solid var(--white);
}

.talk_btn {
    position: fixed;
    right: 86px;
    z-index: 90;
    bottom: 225px;
    border: 0;
    cursor: pointer;
    width: 62px;
    height: 62px;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.25);
    transition: 0.5s;
}
.talk_btn a {
    position: relative;
    display: block;
    width: 62px;
    height: 62px;
}
.talk_btn a::before {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 32px;
    transform: translate(-50%, -50%);
    background: url(../img/icon/kakako_chat_ico.svg) no-repeat center center / contain;
    content: "";
}
.talk_btn:hover {
    background-color: #FEE500;
}

.rotate-point {
    display: none;
    position: fixed;
    right: 116px;
    bottom: 180px;
    z-index: 50;;
	width: 10px;
	height: 10px;
    -webkit-perspective: 300px;
	perspective: 300px;
}
.rotate-point a {
    position: absolute;
    left: 10px;
    top: 15px;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 80px;
    cursor: pointer;
}
.carousel {
    -webkit-transform-style: preserve-3d;
    -webkit-transform: rotateY(0deg) rotateX(-30deg) translateZ(0);
    -webkit-animation: rotate 10s infinite linear;

    will-change: transform;
    
    -webkit-backface-visibility: visible; 
    backface-visibility: visible;

	transform-style: preserve-3d;
    transform: rotateY(0deg) rotateX(-30deg) translateZ(0);
    animation: rotate 10s infinite linear;

}
.cell {
	position: absolute;
	width: 10px;
	display: grid;
	place-items: center;
	font-size: 17px;
	text-align: center;
	font-weight: 900;
	color: #DE1334;
	text-transform: uppercase;

    -webkit-backface-visibility: visible; 
    -webkit-transform: rotateY(calc(var(--i) * 16deg)) translateZ(40px);
    will-change: transform;

    backface-visibility: visible;
    transform: rotateY(calc(var(--i) * 16deg)) translateZ(40px);

    /* -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none */
}

/* @-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotateY(-360deg) rotateX(-30deg);
        transform: rotateY(-360deg) rotateX(-30deg);
    }
} */

@keyframes rotate {
    0% {
        -webkit-transform: rotateY(0deg) rotateX(-30deg) translateZ(0);
        transform: rotateY(0deg) rotateX(-30deg) translateZ(0);
	}
	100% {
        -webkit-transform: rotateY(-360deg) rotateX(-30deg);
        transform: rotateY(-360deg) rotateX(-30deg);
	}
}

.top_btn {
    position: fixed;
    right: 90px;
    z-index: 90;
    bottom: 75px;
    width: 54px;
    height: 54px;
    background-color: #1C1C20;
    border: 1px solid #C6C6C7;
    cursor: pointer;
    transition: 0.5s;
}
.top_btn .top_ico {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 15px;
    background: url(../img/icon/top_btn_ico.svg) no-repeat center center / contain;
}
.top_btn:hover {
    background-color: #fff;
}
.top_btn:hover .top_ico {
    background-image: url(../img/icon/top_btn_ico_b.svg);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 120px;
}
.header.fixed {
    background-color: var(--white);
}
.header .header_wrap {
    display: flex;
    align-items: center;
    height: 120px;
    width: 92%;
    margin: 0 auto;
}
.header .header_wrap .header_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 46px;
}
.header .header_wrap .header_box h1 {
    position: relative;
    z-index: 3;
    width: 84px;
    height: 40.88px;
}
.header .header_wrap .header_box h1 img {
    width: 100%;
    object-fit: contain;
}
.header .header_wrap .header_box .tnb_group {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}
.header .header_wrap .header_box .gnb_btn_box {
    width: 50px;
    height: 50px;
    padding: 15px;
    cursor: pointer;
}
.header .header_wrap .header_box .tnb_group .h_insta_btn,
.header .header_wrap .header_box .tnb_group .lang {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
}
.header .header_wrap .header_box .tnb_group .h_insta_btn::before,
.header .header_wrap .header_box .tnb_group .lang::before {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -50%);
    background: url(../img/icon/insta_ico.svg) no-repeat center center / contain;
    content: "";
}
.header .header_wrap .header_box .tnb_group .lang::before {
    background: url(../img/icon/lang_ico.svg) no-repeat center center / contain;
}
.header .header_wrap .header_box .gnb_btn_box .gnb_open_box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
    height: 22px;
}
.header .header_wrap .header_box .gnb_btn_box .gnb_open_box span {
    position: absolute;
    height: 2px;
    line-height: 2px; 
    width: 10px;
    background-color: var(--white);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    opacity: 1;
    box-sizing: border-box;
}
.header .header_wrap .header_box .gnb_btn_box .gnb_open_box span.line1 {
    left: 0;
    top: 1px;
    width: 10px;
}
.header .header_wrap .header_box .gnb_btn_box .gnb_open_box span.line2 {
    left: 0;
    top: 9.5px;
    width: 20px;
}
.header .header_wrap .header_box .gnb_btn_box .gnb_open_box span.line3 {
    right: 0;
    bottom: 2px;
    width: 10px;
}
.header .header_wrap .header_box .gnb_btn_box:hover .gnb_open_box span.line1 {
    width: 25px;
}
.header .header_wrap .header_box .gnb_btn_box:hover .gnb_open_box span.line3 {
    width: 25px;
}
.header .header_wrap .gnb_menu {
    position: fixed;
    right: -40vw;
    top: 0;
    /* z-index: -2; */
    opacity: 0;
    height: 100vh;
    width: 40vw;
    background-color: var(--graybg);
    transition: right 0.3s ease-in-out;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 90%;
    height: 100%;
    margin: 0 auto;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_inner {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    font-size: 78px;
    /* margin-bottom: 170px; */
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_inner ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 42px;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_inner ul li:last-child {
    margin-bottom: 0;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_inner ul li::before {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: -10;
    transform: translate(0, -50%);
    width: 6px;
    height: 100%;
    background-color: #de1334;
    content: "";
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_inner ul li:hover {
    color: #de1334;
    transition: 0.5s;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_inner ul li:hover::before {
    animation-name:animate_gnb_menu;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;

}
@keyframes animate_gnb_menu {
    0% { width: 6px; height: 100%; background-color: #de1334;}
    100% { width: 460px; height: 14px; background-color: #252525;}
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 18px;
    line-height: 1.19;
    width: 100%;
    padding-bottom: 70px;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul {
    display: flex;
    /* flex-wrap: wrap; */
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    /* padding: 20px 0; */
    margin-right: 40px;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul li:last-child {
    margin-right: 0;
    padding-top: 20px;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul li span {
    display: block;
    margin-bottom: 7px;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul li strong {
    display: block;
    font-size: 16px;
    color: var(--black3);
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gm_sns {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin-left: 30px;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gm_sns span {
    display: block;
    margin-bottom: 14px;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gm_sns .sns_icon {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url(../img/icon/insta_icon.png);
    width: 40px;
    height: 40px;
}
.header .header_wrap .gnb_menu .gnb_menu_wrap .gm_sns .sns_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header .header_wrap .gnb_menu.active {
    display: block;
    right: 0;
    opacity: 1;
}

.header .header_wrap .header_box .gnb_btn_box.active .gnb_open_box span,
.header .header_wrap .header_box .gnb_btn_box.active:hover .gnb_open_box span {
    background-color: var(--black);
    width: 19px;
}
.header .header_wrap .header_box .gnb_btn_box.active .gnb_open_box span.line1 {
    left: 0;
    top: 8px;
    transform: rotate(-45deg);
}
.header .header_wrap .header_box .gnb_btn_box.active .gnb_open_box span.line2 {
    opacity: 0;
}
.header .header_wrap .header_box .gnb_btn_box.active .gnb_open_box span.line3 {
    left: 0;
    top: 8px;
    transform: rotate(45deg);
}

.footer {
    position: relative;
    width: 100%;
    padding: 50px 0 30px 0;
}
.footer .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.footer .wrapper .f_logo {
    width: 84px;
    height: 40.88px;
    margin-bottom: 30px;
}
.footer .wrapper .f_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer .wrapper .gnb_menu_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 1.19;
    margin-bottom: 95px;
}
.footer .wrapper .gnb_menu_info .gm_info {
    display: flex;
    justify-content: space-between;
}
.footer .wrapper .gnb_menu_info .gm_info li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
    margin-right: 40px;
}
.footer .wrapper .gnb_menu_info .gm_info li:last-child {
    margin-right: 0;
}
.footer .wrapper .gnb_menu_info .gm_info li span {
    display: block;
    margin-bottom: 7px;
}
.footer .wrapper .gnb_menu_info .gm_info li strong {
    display: block;
    font-size: 16px;
    color: var(--black3);
}
.footer .wrapper .gnb_menu_info .gm_sns {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.footer .wrapper .gnb_menu_info .gm_sns .sns_ico_group {
    display: flex;
    align-items: center;
}
.footer .wrapper .gnb_menu_info .gm_sns span {
    display: block;
    margin-bottom: 14px;
    text-align: right;
}
.footer .wrapper .gnb_menu_info .gm_info li span.email_m {
    display: none;
} 
.footer .wrapper .gnb_menu_info .gm_sns .sns_ico_group .sns_icon {
    width: 40px;
    height: 40px;
    margin-right: 14px;
}
.footer .wrapper .gnb_menu_info .gm_sns .sns_ico_group .sns_icon.kakao_icon {
    width: 40px;
    height: 35px;
    margin-right: 0;
}
.footer .wrapper .gnb_menu_info .gm_sns .sns_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer .wrapper .f_info .f_info_list {
    display: flex;
    color: #1C1C20;
    padding: 10px 0 14px 0;
    border-bottom: 1px solid var(--gray_d);
}
.footer .wrapper .f_info .f_info_list li {
    margin-right: 20px;
}
.footer .wrapper .f_info .f_info_list li:last-child {
    margin-right: 0;
}
.footer .wrapper .f_info .f_info_list li span {
    display: inline-block;

}
.footer .wrapper .f_info .f_info_list li strong {
    display: inline-block;
    color: var(--black);
}
.footer .wrapper .f_info .copyright {
    text-align: center;
    color: #1C1C20;
    padding: 13px 0 9px 0;
}

@media screen and (max-width: 1280px) {
    .top_btn {
        display: none !important;
    }
    .talk_btn {
        right: 20px;
        bottom: 120px;
    }
    .quick_menu_cont {
        top: auto;
        right: auto;
        left: 15px;
        bottom: 50px;
        transform: translate(0);
    }
    .quick_menu_cont ul li a {
        position: relative;
        font-size: 12px;
        min-width: 62px;
        width: 62px;
        height: 62px;
        border-radius: 100%;
        padding: 0;
        visibility: hidden;
        line-height: 0;
    }
    .quick_menu_cont ul li.qmc_contact a::before {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        visibility: visible;
        content: 'Contact';
        line-height: 1.33;
        letter-spacing: -0.4px;
        color: #fff;
    }
    .quick_menu_cont ul li.qmc_portfolio a::before {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        visibility: visible;
        content: 'Portfolio';
        line-height: 1.33;
        letter-spacing: -0.4px;
        color: #fff;
    }
    .quick_menu_cont ul li a::after {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px;
        min-width: 62px;
        width: 62px;
        height: 62px;
        border-radius: 100%;
        padding: 0;
        background-color: var(--mainred);
        content: "";
        visibility: visible;
        z-index: -1;
    }
    .quick_menu_cont ul li.qmc_portfolio a::after {
        background-color: #1C1C20;
        border: 1px solid rgba(255, 255, 255, 0.14);
    }
    .quick_menu_cont ul li:hover a {
        color: #fff;
        background-color: var(--mainred);
    }
    .quick_menu_cont ul li.qmc_portfolio:hover a {
        color: #fff;
        background-color: #1C1C20;
        border: 1px solid rgba(255, 255, 255, 0.14);
    }
    .rotate-point {
        right: 47px;
        bottom: 75px;
    }
    .rotate-point a {
        top: 12px;
        left: 5px;
        width: 90px;
    }
    .header {
        height: 64px;
        /* background-color: rgba(0, 0, 0, 0.6); */
    }
    .header .header_wrap {
        height: 64px;
        width: 100%;
        padding: 0 0 0 20px;
    }
    .header .header_wrap .header_box h1 {
        width: 62px;
        height: 30px;
    }
    .header .header_wrap .gnb_menu {
        right: -60vw;
        width: 60vw;
    }
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_inner {
        font-size: 65px;
    }
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info {
        align-items: flex-end;
    }
    /* .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul {
        flex-direction: column;
    } */
    /* .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul li {
        margin-bottom: 34px;
    } */
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul li:last-child {
        margin-bottom: 0;
        padding-top: 0;
    }
    .footer .wrapper {
        padding: 0 20px;
    }
}
@media screen and (max-width: 768px) {
    .top_btn{
        display: none !important;
    }
  
    .header .header_wrap .gnb_menu {
        right: -100vw;
        width: 100vw;
        color: var(--white);
        background-color: #1C1C20;
    }
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_inner {
        top: calc(50% - 60px);
    }
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_inner ul li {
        font-size: 48px;
        font-weight: 600;
        padding-left: 16px;
        margin-bottom: 35px;
    }
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_inner ul li::before {
        width: 2px;
    }
    .header .header_wrap .header_box .gnb_btn_box.active .gnb_open_box span, .header .header_wrap .header_box .gnb_btn_box.active:hover .gnb_open_box span {
        background-color: #EFEFF0;
    }
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info {
        position: absolute;
        left: 0;
        bottom: 70px;
        font-size: 14px;
        padding-bottom: 0px;
        /* padding-bottom: 103px; */
    }
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul {
        flex-direction: column;
    }
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul li {
        margin: 0 0 34px 0;
    }
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gnb_menu_info ul li strong {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }
    .header .header_wrap .gnb_menu .gnb_menu_wrap .gm_sns .sns_icon {
        width: 32px;
        height: 32px;
        background-image: url(../img/icon/insta_icon_gray.png);
    }
    .footer {
        font-size: 14px;
        padding: 38px 0 23px 0;
    }
    .footer .wrapper .f_logo {
        width: 62px;
        height: 30px;
    }
    .footer .wrapper .gnb_menu_info {
        margin-bottom: 0;
    }
    .footer .wrapper .gnb_menu_info .gm_info li {
        padding: 0;
        font-size: 14px;
    }
    .footer .wrapper .gnb_menu_info .gm_info li.address {
        display: none;
    } 
    .footer .wrapper .gnb_menu_info .gm_info li.email span.email_pc {
        display: none;
    }
    /* .footer .wrapper .gnb_menu_info .gm_info li.email span.email_m {
        display: block;
    } */
    .footer .wrapper .gnb_menu_info .gm_info li.email strong {
        font-size: 14px;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        color: #1C1C20;
        margin-bottom: 14px;
    }
    .footer .wrapper .gnb_menu_info .gm_sns {
        display: none;
    }
    .footer .wrapper .f_info .f_info_list {
        font-size: 12px;
        /* width: 245px; */
        flex-wrap: wrap;
        padding: 0;
        padding-bottom: 27px;
    }
    .footer .wrapper .f_info .f_info_list li {
        display: inline-block;
        font-weight: 600;
        line-height: 27px;
        margin-right: 16px;
    }
    .footer .wrapper .f_info .f_info_list li.report {
        display: none;
    }
    .footer .wrapper .f_info .f_info_list li.terms {
        flex-direction: row;
        /* line-height: 18px; */
    }
    .footer .wrapper .f_info .f_info_list li.terms span {
        margin-right: 8px;
    }
    .footer .wrapper .f_info .f_info_list li span {
        color: var(--black3);
        margin-right: 6px;
        font-weight: 400;
    }
    .footer .wrapper .f_info .copyright { 
        font-size: 12px;
        padding: 10px 0 0 0;
    }
}

.header.en_header .header_wrap .header_box .tnb_group .lang::before {
    background: url(../img/icon/kr.svg) no-repeat center center / contain;
}
.header.en_header_w .header_wrap .header_box .tnb_group .lang::before {
    background: url(../img/icon/kr_b.svg) no-repeat center center / contain;
}