/* footer */
.footer {
    position: absolute;
    bottom: 79px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;
    max-width: 1752px;
    width: 100%;
    border-radius: 50px 50px 0px 50px;
    background-color: #222;
    padding: 44px 0px 60px;
    color: #fff;
}
.ft_wrap {
    display: flex;
    justify-content: space-between;
    max-width: 1321px;
    align-items: center;
    margin: 0 auto;
}
.footer p {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
}

.footer p .price {
    color: #fff;
    border: 1px solid #fff;
    padding: 2px 5px;
    opacity: 0.8;
}

.footer p .price:hover {
    opacity: 1;
}

/* quick_menu */
.quick_menu {
    position: fixed;
    z-index: 101;
    bottom: 91px;
    right: 35px;
    display: flex;
    align-items: center;
}
.quick_menu > a {
    position: relative;
    z-index: 1;
}
.quick_menu_btn {
    width: 98px;
    height: 98px;
    display: flex;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 22px;
    background-color: #d5bda5;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    position: relative;
}
.quick_menu_wrap {
    position: relative;
    margin-right: 19px;
}
.quick_menu_box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 7px 125px 12px 43px;
    background-color: #f4f0ed;
    border-radius: 50px;
    width: 518px;
    position: absolute;
    right: -500px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.2s;
}
.quick_menu_box.on {
    opacity: 1;
    right: 0;
}
.quick_menu_box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    font-size: 16px;
    font-weight: 300;
    color: #222;
}
.quick_menu_box a img {
    margin-bottom: 4px;
}

/* main_form */
.main_form {
    position: fixed;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    background-color: #1d1919;
    padding-left: 31px;
    display: flex;
    height: 80px;
    align-items: center;
    z-index: 99999999;
    max-width: 1184px;
}
#req_form {
    display: flex;
    align-items: center;
}
#req_form span {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}
#btn_submit {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 260px;
    height: 100%;
    color: #fff;
    background-color: #cbb096;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #cbb096;
}
#btn_submit:hover {
    background-color: #fff;
    color: #333;
}
.form-control {
    width: 130px;
    height: 35px;
}
.input01,
.input02 {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #333;
}
.input02 {
    margin: 0px 11px;
}
.input04 {
    margin: 0px 31px 0px 107px;
}
