/* footer */
.footer {
    background-color: #46675c;
    padding: 52px 0px 132px;
    color: #fff;
}
.ft_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 65px;
    border-bottom: 1px solid #ccc;
}
.ft_right {
    width: 50%;
}
.ft_right h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 160%;
    color: #fff;
}
.ft_right h4 {
    font-size: 60px;
    font-weight: 600;
    line-height: 100%;
    margin: 14px 0px 45px;
}
.ft_btn {
    margin-top: 14px;
    display: flex;
    align-items: center;
}
.ft_btn a {
    display: inline-block;
    border-radius: 5px;
    background-color: #333;
    display: flex;
    align-items: center;
    padding: 0px 30px;
    line-height: 60px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all 0.2s;
}
.ft_btn a:hover {
    opacity: 0.7;
}
.ft_btn img {
    margin-right: 5px;
}
.ft_btn01 {
    margin-right: 20px;
}
.ft_bot {
    padding-top: 29px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.ft_bot p {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: #d3fff0;
    margin: 29px 0px 23px;
}
.ft_bot small {
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: #709489;
}
.ft_link {
    gap: 50px;
    display: flex;
    align-items: center;
}
.ft_link a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: all 0.2s;
}
.ft_link a:hover {
    opacity: 0.7;
}
.ft_price_btn {
    color: #fff;
}

/* custom */
.custom {
    position: fixed;
    left: 30px;
    bottom: 110px;
    z-index: 101;
}
.custom_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
    line-height: 160%;
    color: #fff;
    font-weight: 400;
    cursor: pointer;
}
.custom_btn img {
    margin-bottom: 8px;
}

/* modal */
html.modal-active,
body.modal-active {
    overflow: hidden;
}

.modal-container {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 99999;
}

.modal-container.on {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.intro04_video {
    position: relative;
    padding-top: 56.25%;
    width: 0px;
}
.modal-container.on .intro04_video {
    width: 100%;
}

.modal-container.on .modal-background .modal_wrap {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal-container.on.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal-container.on.out .modal-background .modal_wrap {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal-container.on.out .intro04_video {
    width: 0%;
}

.modal-container .modal-background {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
}

.modal-container .modal-background .modal_wrap {
    display: inline-block;
    width: 100%;
    max-width: 1400px;
    background-color: #fff;
    border-radius: 20px;
}

.modal-container .modal-background .modal_wrap .inner {
    height: 100%;
}

.modal-close {
    position: absolute;
    top: 17px;
    right: 28px;
    cursor: pointer;
}

.viewMore {
    cursor: pointer;
}

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}
#custom_pop h2 {
    font-size: 40px;
    font-weight: 400;
    color: #111;
    text-align: center;
}
#custom_pop h2 span {
    font-weight: 700;
    color: #46675c;
}
#custom_pop .inner {
    padding: 67px 0px 70px;
}
#custom_pop .inner > p {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin: 12px auto 48px;
    text-align: center;
}
#custom_pop .inner > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1252px;
    margin: 0 auto;
}
#custom_pop .inner > div.custom_top {
    margin-bottom: 22px;
}
#custom_pop .inner a {
    border-radius: 20px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
    width: 298px;
    height: 255px;
    text-align: center;
    padding-top: 23px;
    transition: all 0.2s;
}
#custom_pop .inner a:hover {
    background-color: rgba(234, 224, 216, 0.5);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    border: 1px solid transparent;
}
#custom_pop .inner a h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    margin: 7px auto 17px;
    color: #46675c;
}
#custom_pop .inner a p {
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    color: #666;
}
#custom_pop .inner a span {
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    border-radius: 20px 20px 0px 0px;
    background-color: #46675c;
    color: #fff;
    padding: 0px 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 36px;
    opacity: 0;
    transition: all 0.2s;
}
#custom_pop .inner a:hover span {
    opacity: 1;
}
#custom_pop .inner a span img {
    margin-left: 3px;
}

/* quick_menu */
.quick_menu {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
}
.quick_menu_box {
    margin-bottom: 12px;
    border-radius: 10px;
    background-color: #eae0d8;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 393px;
}
.quick_menu_box a {
    height: 33.3%;
    width: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #222;
    font-size: 15px;
    font-weight: 400;
}
.quick_menu_box a img {
    margin-bottom: 10px;
}

/* main_form */
.main_form {
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;

    z-index: 101;
    background-color: #46675c;
}
.main_form_wrap {
    max-width: 1300px;
    width: 100%;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main_form_wrap h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.main_form_wrap form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1017px;
    width: 100%;
}
.mf_input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 620px;
    width: 100%;
}
.mf_input > * {
    width: 200px;
    height: 44px;
    border-radius: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.14);
    padding: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Pretendard', sans-serif;
}
input[type='text']:focus,
input[type='select']:focus,
input[type='select']:focus-visible {
    outline: none;
    box-shadow: none;
    border: none;
}
.mf_name::placeholder {
    color: #fff;
}
.mf_tel::placeholder {
    color: #fff;
}
.mf_category {
    color: #fff;
}
.mf_category option {
    color: #000;
}
.mf_agree {
    font-size: 12px;
    font-weight: 400;
    line-height: 160%;
    color: #ccc;
    display: flex;
    align-items: center;
}
.mf_agree > input {
    margin: 0px 5px 0px 0px;
}
.mf_submit {
    font-family: 'Pretendard', sans-serif;
    border-radius: 10px;
    background-color: #fff;
    color: #46675c;
    font-size: 18px;
    font-weight: 700;
    line-height: 49px;
    padding: 0px 50px;
    border: none;
    cursor: pointer;
}
