@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#content {
    background-color: #fff;
    background-position: center;

}


body {
    --font80: 80px;
    --font40: 40px;
    --font30: 30px;
    --font24: 24px;
    --font20: 20px;
    --font18: 18px;
    --font16: 16px;
    --coG: #486B64;
    --coG01: #7EAFA3;
}


@media screen and (max-width:1440px) {
    body {
        --font80: 70px;
        --font40: 35px;
        --font30: 27px;
        --font24: 24px;
    }
}

@media screen and (max-width:1250px) {
    body {
        --font80: 60px;
    }
}


@media screen and (max-width:768px) {
    body {
        --font80: 50px;
        --font40: 30px;
        --font30: 25px;
        --font24: 22px;
    }
}

@media screen and (max-width:480px) {
    body {
        --font80: 40px;
        --font40: 25px;
        --font30: 22px;
        --font24: 20px;
        --font20: 18px;
        --font18: 17px;
    }
}

@media screen and (max-width:400px) {
    body {
        --font80: 30px;
        --font40: 22px;
        --font30: 20px;
        --font24: 18px;
        --font20: 16px;
        --font18: 16px;
        --font16: 15px;
    }
}









/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: transparent;
    color: #333333;
    border-bottom: 1px #333333 solid;
}

.swiper-pagination {
    display: none;
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, 0);
}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-slide img {}

@media screen and (max-width: 768px) {
    .swiper-banner .swiper-slide img {
        max-width: 200%;
    }

    .bannerindex {
        position: relative;
        height: 0;
        padding-bottom: 53%;
    }

    .swiper-banner {
        position: relative;
        margin: 0;
        height: 100vh;
    }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* 首頁文章 */

.module_i_news {
    background: #9CC2BA;
}

.module_i_news li a:after {
    display: none;
}

.module_i_news li a:before {
    color: #fff;
}


.i_blog_ri h5 {
    color: #857a72;
}

.i_blog_ri em {
    color: #666666;
}


.module_i_news .title_i_box h4 {
    font-size: 40px;
    color: #857a72;
    font-weight: 500;
    border-bottom: 1px #857a72 solid;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 100px;
}

.module_i_news .title_i_box h4::after {
    content: "NEWS";
    display: inline-block;
    font-size: 16px;
    color: #857a72;
    margin-left: 30px;
}

@media screen and (max-width: 768px) {
    .module_i_news .title_i_box h4 {
        padding: 10px 40px;
    }

    .module_i_news li {
        border-bottom: 1px #857a72 solid;
    }
}


/* 首頁相簿 */



.module_i_album {
    padding: 150px 20px;
}



.i_album_list {
    grid-template-columns: repeat(3, 1fr);
}


.i_album_list li a p {
    width: 100%;
    height: 2em;
    position: absolute;
    background: transparent;
    top: 50%;
    transform: translate(0%, -50%);
    color: #fff;
    z-index: 2;
    transition: all 0.5s;
    font-weight: bold;
    font-size: 17px;
    letter-spacing: 0.15em;
}

.i_album_list li:hover p {
    height: 2em;
    opacity: 0;
    transition: all 0.5s;

}

.module_i_album .title_i_box {
    display: flex;
    margin-bottom: 30px;
    text-align: center;
    flex-direction: column-reverse;
    align-items: flex-start;
}

.module_i_album .title_i_box h4 {
    font-size: 68px;
    color: #333333;
    font-weight: 500;
    text-transform: uppercase;
}

.module_i_album .title_i_box h6 {
    font-size: 40px;
    color: #333333;
    letter-spacing: 15px;
    margin-top: 20px;
}

.module_i_album section {
    width: 100%;
    max-width: 1200px;
}


.i_album_list li div::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #857a727a;
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s;
}



.i_album_list li:hover div::before {
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s;

}


@media screen and (max-width: 768px) {
    .i_album_list {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media screen and (max-width: 500px) {
    .i_album_list {
        grid-template-columns: repeat(1, 1fr);
    }
}





/*選單設定*/
.nav-menu {
    margin: 0;
}

.header_area .main_header_area .container {
    max-width: 90%;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area .container {
    max-width: 90%;
    transition: all 0.3s;
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li {
    text-align: center;
}

.me_tp_features {
    display: none;
}

.nav-header {
    max-width: 110px;
    position: relative;
    z-index: 98999999;
    transition: all 0.5s;
}

.sticky .nav-header {
    max-width: 110px;
    transition: all 0.5s;
}

.nav-header::before {}

.pageIndex .nav-header::before {
    top: -100px;
    opacity: 0;
    transition: all 0.3s;
    transition-delay: 0.5s;
}


.sticky .nav-header::before {
    top: 50%;
    opacity: 1;
    transition: all 0.3s;
    /* transition-delay: 0.5s; */
}

.nav-header::after {}

.nav-header:hover:after {
    animation-play-state: paused;
    transition: all 0.3s;
}

.nav-header:hover:before {
    background-color: #215b6d;
    transition: all 0.3s;
    transition-delay: none;
}

.stellarnav>ul {
    display: flex;
    gap: 10px;
}

.stellarnav>ul>li {
    display: flex;
    width: 150px;
    justify-content: center;
}

.stellarnav>ul>li::before {
    content: "";
    width: 1px;
    height: 50%;
    background-color: #333333;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    transition: all 0.5s;
}

.pageIndex .stellarnav>ul>li::before {
    background-color: #fff;
}


.stellarnav>ul>li:nth-last-of-type(1)::before {
    display: none;
}

.sticky .stellarnav>ul>li::before {
    content: "";
    width: 1px;
    height: 50%;
    background-color: #333333;
    transition: all 0.5s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}












.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0;
    top: 0;
    background: transparent;
    transition: all 0.7s;
}

.header_area.sticky {
    top: 0px;
    background: transparent;
    transition: all 0.7s;
}

.main_header_area {
    position: relative;
    background: transparent;
}

.header_area .main_header_area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff6e;
    position: absolute;
    top: 0px;
    left: 0;
    backdrop-filter: blur(5px);
    box-shadow: 1px 1px 5px #00000066;
    transition: all 0.85s cubic-bezier(0.68, 0, 0.265, 1.55);
}

.header_area .main_header_area::before {
    top: -160px;
}

.header_area.sticky .main_header_area::before {
    height: 100%;
    top: 0;
    transition: all 0.85s cubic-bezier(0.68, 0.1, 0.265, 1);
}

.stellarnav li.has-sub>a:after {
    display: none;
}






.stellarnav>ul>li>a {
    color: #464646;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    cursor: pointer;
    margin: 0;
    padding: 0 10px;
    text-align: center;
    transition: all 0.5s;
}


.pageIndex .stellarnav>ul>li>a {
    color: #fff;
}





.sticky .stellarnav>ul>li>a {
    color: #464646;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b {
    font-weight: 500;
    transition: all 0.5s;
}


.stellarnav>ul>li>a:hover {
    transition: all 0.5s;
}

.sticky .stellarnav>ul>li>a:hover {
    color: #333;
    transition: all 0.5s;
}


.header_area .navigation {
    display: flex;
    width: 100%;
    position: relative;
    padding: 10px 0;
    opacity: 1;
    gap: 50px;
    transition: all 0.3s;
    justify-content: flex-start;
    align-items: center;
}

.pageIndex .header_area .navigation {}

.header_area.sticky .navigation {
    padding: 15px 0;
    opacity: 1;
    transition: all 0.5s;
    transition-delay: 0.5s;
}


@media screen and (max-width: 1024px) {
    .header_area .navigation {
        padding: 30px 0;
    }

    .header_area.sticky .navigation {
        padding: 20px 0;
    }


}

@media screen and (max-width: 768px) {
    .header_area .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
    }


}









/*下拉*/


.stellarnav ul ul {
    top: 40px;
    background: #ffffff94;
    border: 1px #fff solid;
}

.stellarnav ul ul>li a {
    font-size: 14px;
}

.nav-dropdown>li>a {
    background: #f7f5f5;
    transition: 0.2s;
    letter-spacing: 1.5px;
    width: 100%;
}

.nav-dropdown>li>a:hover {
    transition: 0.2s;
    background-color: #2B3047;
    ;
    color: #fff
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}


.stellarnav li li a {
    padding: 10px 15px;
    display: block;
    color: #000;
    background-color: transparent;
    transition: all 0.3s;
}

.stellarnav li li a:hover {
    color: #fff;
    transition: all 0.3s;
}

.stellarnav ul>li>ul>li a::before {
    content: "";
    display: block;
    width: 0%;
    height: 100%;
    background-color: #be9b46a1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.5s;
}


.stellarnav ul>li>ul>li a:hover:before {
    width: 100%;
    transition: all 0.5s;
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/
.header_area .nav-brand {
    display: inline-block;
    width: 100%;
    transition: all 0.5s;
}

.header_area.sticky .nav-brand {
    width: 100%;
    transition: all 0.5s;
}

.pageIndex .header_area .nav-brand img {
    filter: contrast(0) brightness(100);
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
}

.header_area .nav-brand img {
    filter: contrast(0) brightness(0.5);
    transition: all 0.3s;
}

.header_area.sticky .nav-brand img {
    filter: none;
    transition: all 0.3s;
}



.footer_logo img {
    width: 100%;
}

.footer_logo a {
    display: block;
    filter: contrast(0) brightness(100);
}

.footer_logo {
    width: 150px;
    margin-right: 5%;
}


.info_fix_default.info_fix_fb,
.info_fix_default.info_fix_line,
.info_fix_default.info_fix_tel,
.info_fix_default.info_fix_mail,
.info_fix_default.info_fix_ig {
    display: none;
}


@media screen and (max-width: 1440px) {
    .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
    }

    .stellarnav>ul>li>a {
        margin: 0 5px;
    }
}

@media screen and (max-width: 1024px) {

    .stellarnav ul {
        text-align: right;
    }

    .stellarnav>ul>li>a {
        padding: 0px 5px;
        margin: 0 0px;
    }

}

@media screen and (max-width: 768px) {
    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }

    .stellarnav.mobile {
        top: 12px;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #333333;
    }

    .stellarnav .menu-toggle:after {
        color: #333333;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #857a72;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        color: #666;
        text-shadow: none;
        padding: 15px 10px;
    }

    .nav-brand {
        display: inline-block;
        width: 220px;
    }

    .header_area .nav-brand {
        width: 150px;
    }

    .header_area .navigation {
        padding: 10px 0;
    }

    .header_area.sticky .navigation {
        padding: 10px 0;
    }

    .header_area.sticky .stellarnav>ul {
        margin: 0;
        padding: 0;
        border: 0;
        text-align: right;
        transition: all 0.3s;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 12px;
        background: #857a72;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        padding: 20px 10px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 0;
        position: absolute;
        top: 20px;
    }

    .stellarnav.mobile.left>ul {
        left: 0;
        padding: 0;
        border: 0;
        max-width: 100%;
    }

    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav li li:hover {
        background: inherit;
        border-radius: 0;
        color: inherit;
        transform: none;
        box-shadow: none;
        z-index: 100000;
        transition: all 0.3s;
    }

    .stellarnav li li:hover>a {
        color: #fff;
        transition: all 0.3s;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 15px 43px 15px 10px;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
    }

    .stellarnav li li a {
        padding: 15px 15px;
        color: #666;
        text-align: center;
    }

    .nav-header {
        position: absolute;
        left: 50%;
        top: 40px;
        transform: translate(-50%, -50%);
        z-index: 0;
        transition: all 0.5s;
    }

    .header_area .nav-brand {}

    .header_area .navigation {
        padding: 0px 0;
    }

    .header_area.sticky .navigation {
        padding: 0px 0;
    }

    .header_area.sticky .nav-brand {
        width: 150px;
        transition: all 0.5s;
    }

    .nav-header::before {
        top: -120%;
        width: 90%;
        height: 100px;
    }

    .sticky .nav-header {
        top: 40px;
        transition: all 0.5s;
    }

    .stellarnav.mobile>ul>li>a b:nth-of-type(2) {
        font-weight: bold;
    }

    .header_area .main_header_area::before {
        display: none;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/



.pageIndex .footer_info {}

.pageIndex .copy {}







.footer {
    border-top: none !important;
    padding: 40px 0 0;
    background: #27250d;
}

.footer .center {
    position: relative;
    max-width: 80%;
}

.copy {
    background: transparent;
    color: #fff;
    border: 0;
}

.center {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
}

.copy a {
    color: #fff;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info li p {
    width: 50%;
    color: #fff;
    margin: 3px 0;
}

.footer_info li p.mail {}

.footer_info li p a {
    color: #fff;
}

.footer_info {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.footer_info ul {
    display: flex;
    vertical-align: top;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    width: 50%;
}

.footer_menu {
    border-bottom: none !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    display: none;
}

.footer_menu a {
    transition: all 0.3s;
    width: calc(100% / 3 - 20px);
    margin: 0 10px 10px 0;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    overflow: hidden;
    position: relative;
}

.footer_menu a:hover {
    background: transparent;
    color: #fff;
    transition: 0.3s all;
}

.footer_menu a::before {}

.footer_menu a:hover:before {
    transform: translateX(0%);
    transition: all .3s;
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_info li:nth-child(2) {
    display: none;
    width: 60%;
}

.info_fix {}

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
}

.footer_info li:nth-child(1)::before {
    content: "CONTACT";
    display: block;
    width: 100%;
    color: #fff;
    border-bottom: 1px #fff solid;
    padding-bottom: 20px;
    font-size: 20px;
    letter-spacing: 3px;
}

/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
    animation: footer-text forwards 1s;
    opacity: 1;
    z-index: 1;
    animation-delay: 3.3s;
}

.info_fix:hover {
    width: auto;
    right: 0;
    transition: all 0.7s;
}

.info_fix_links {
    display: flex !important;
    background: #565656bf;
    width: 50px;
    padding-bottom: 0;
    border: 1px #A29080 solid;
    /* border-radius: 0px 0 0 10px; */
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: column;
}

.info_fix>span {
    display: none;
}

.info_fix_links a {
    background: transparent;
}

.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}

.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.info_fix_links a span::before {
    background-size: contain;
}



.info_fix_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}


.info_fix_links {
    display: flex !important;
    background: #565656a1;
    width: 50px;
    padding-bottom: 0;
    border: 1px #fff solid;
    border-radius: 15px 0 0 15px;
    overflow: visible;
}

.info_fix>span {
    display: none;
}

.info_fix_links a {
    background: transparent;
}

.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}

.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.info_fix_links a span::before {
    background-size: contain;
}




.info_fix_default.info_fix_google {
    color: #fff;
    background-color: #eeb540;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 120px;
    align-items: center;
    align-content: center;
}

.info_fix_default.info_fix_google:hover {
    background-color: #ab822d;
}

.info_fix_links p {
    text-align: center;
    font-weight: 500;
    writing-mode: initial;
    font-size: 16px;
}


.info_fix_google img {
    width: 25px;
    margin-bottom: 5px;
}








@media screen and (max-width: 1024px) {
    .footer_info ul {
        display: flex;
        vertical-align: top;
        justify-content: space-between;
        flex-direction: column;
    }

    .footer_info li:nth-child(2) {
        width: 100%;
    }

}

@media screen and (max-width: 768px) {
    .footer_info {
        padding: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .footer_info ul {
        display: flex;
        vertical-align: top;
        width: 100%;
        justify-content: space-between;
        flex-direction: column;
    }

}


@media screen and (max-width: 500px) {
    .footer_menu a {
        transition: all 0.3s;
        width: 100%;
        margin: 0 5px 5px 0;
        background: transparent;
        color: #fff;
        padding: 10px 20px;
        overflow: hidden;
        position: relative;
    }

    .info_fix {
        bottom: 50px;
    }

}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    display: flex;
    width: 100%;
    background-repeat: no-repeat;
    padding: 150px 12% 100px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    background: transparent;
    flex-wrap: nowrap;
}

.banner::after {
    content: "";
    width: 833px;
    height: auto;
    aspect-ratio: 833/556;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner h5 {
    width: fit-content;
    text-wrap: nowrap;
    font-size: 80px;
    position: relative;
    color: #be9b46;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-right: 5%;
}



.banner h5::after {
    display: block;
    font-size: 24px;
    color: #333333;
    position: relative;
    text-align: left;
    font-weight: 500;
    letter-spacing: 7px;
    text-indent: 7px;
    margin-top: 30px;
    font-weight: bold;
}


.product_info_page .banner {}



.banner.banA {
    display: none;
}

.banner.banB {
    display: none;
}


.banner.banD {}






/*  */
.banner.banF h5::after {
    content: "輕裝修專案";
}

.banner.banF::after {
    background-image: url(https://pic03.eapple.com.tw/muze/banner-04.jpg);
}

/*  */




/*  */
.banner.banE::after {
    background-image: url(https://pic03.eapple.com.tw/muze/banner-05.jpg);
}

.banner.banE h5::after {
    content: "系統櫃作品";
}

/*  */

.banner.banC::after {
    background-image: url(https://pic03.eapple.com.tw/muze/banner-06.jpg);
}

.banner.banC h5::after {
    content: "聯絡我們";
}










@media screen and (max-width: 768px) {}









/* 分業 */
.other_promotion {
    display: none;
}



/*購物車設定*/
/* 產品的看更多按鈕設定 */


.product_page .main_part {
    width: 100%;
    max-width: 95%;
    margin: auto;
    padding: 0;
    padding: 220px 0 150px;
}




/* 選單 */
.product_menu_list {}

.product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 5%;
}

.product-layer-two li {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
    width: fit-content;
    height: fit-content;
    text-align: left;
    border-bottom: 0;
    margin: 0 10px;
    transition: all 0.5s;
}




.product-layer-two li a {
    color: #333333;
    border: 0;
    padding: 0;
    padding-bottom: 6px;
    background: transparent;
    text-wrap: nowrap;
    transition: all 0.3s;
    font-size: 20px;
    font-weight: bold;
}

.product-layer-two li a:hover {
    color: #be9b46;
    transition: all 0.3s;
}


.product_page .show_content {
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.page {
    color: #808080;
    width: 100%;
}

.product-layer-two li.active>a {
    background: transparent;
    color: #be9b46;
    border: 0;
    border-bottom: 2px #be9b46 solid;
    font-weight: normal;
}

/* 內容 */
.products-list .more {
    display: none;
    border: 1px solid #808080 !important;
    color: #808080;
    width: 90%;
    margin: 0 auto;
}

.products-list .item a {
    padding-bottom: 0;
}

.products-list .item a:hover .more {
    background: #be9b46;
    border-color: #808080;
    color: #ffffff;
}

.products-list {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 0;
    border-bottom: 0;
    border-right: 0;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: none;
}

.products-list .item {
    width: calc(100% / 3);
    display: inline-block;
    vertical-align: top;
    padding: 1.5%;
    background: transparent;
    border-radius: 0;
    transition: all 0.5s;
}

.products-list .item:hover {
    transition: all 0.5s;
}

.products-list .item a img {
    filter: grayscale(0.5);
    height: auto;
    transition: all 0.5s;
}

.products-list .item a:hover img {
    transform: scale(1.02);
    filter: grayscale(0);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 16px;
    color: #808080;
    height: auto;
    margin-top: 0;
    padding: 3% 0 0;
    font-family: "微軟正黑體";
    font-weight: bold;
}

.products-list .name::before {}

.products-list .pic {
    display: block;
    position: relative;
    text-align: center;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    transition: all 0.5s;
}

.products-list .item a:hover .pic {
    transition: all 0.5s;
}




/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 50px 0px;
}

.lastPage {
    display: none;
    background: #111111;
}

.nextaction {
    background-color: #c1b09c;
}

.lastaction {
    color: #fff;
    background-color: #c1b09c;
}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;
}

.product_pic #bx-pager a {
    border: none;
}


.product-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.product_main {
    width: 60%;
}

.pd_tabTitle {
    display: none;
}

.product_info_page .product_menu_list {}

.sidebarBtn {
    padding: 5% 0;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
}

.sidebarBtn h2 {
    color: #474747;
    font-family: 'swiper-icons';
    font-size: 24px;
}

.sidebarBtn {
    width: calc(100% / 12 * 6);
    color: #808080;
}

.product_info li span {
    color: #808080;
}

#bx-pager h6 {
    display: none;
}

ul.prod li h3.prod-thumb {
    background: transparent;
    color: #474747;
    padding: 0;
    text-align: left;
}

ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #474747;
    margin: 10px 0;
}

ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}

ul.prod li .prod-panel {
    color: #808080;
    text-align: left;
}

ul.prod li {
    margin-bottom: 40px;
    color: #808080;
}

.toShare {
    border-top: 1px solid #474747;
}

.prod_tabs {
    margin-top: 0px;
}

.pd_tabInner_contain {
    padding-top: 0px;
}














/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}

ul.prod li span {
    color: #808080;
}

.qaform .breakF {
    border: 1px #808080 solid;
    background: #00000061;
    color: #fff;
}

.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}

.productBtn {
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #808080 solid !important;
    color: #808080;
    transition: all 0.5s;
}

.productBtn:hover {
    background-color: #00000071;
    transition: all 0.5s;
}

/*  */



.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #474747;
}

.related_list {
    grid-gap: 140px;
    max-width: 1440px;
}

.related_list li a {
    display: block;
    padding: 0%;
    background-color: transparent;
}

.related_list li a p {
    font-size: 15px;
    color: #808080;
    margin: 10px 0;
    text-align: left;
    font-family: "微軟正黑體";
}

.related_list li {
    transition: all 0.5s;
}

.related_list li:hover {
    transition: all 0.5s;
}

.mobile_product_name {}



.prod_related h6 {
    display: none;
}



/* 版型變動 */


.product_info_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0px;
}

.product_info_page .banner {}


.related_list::-webkit-scrollbar {
    background: #fff;
    width: 0px;
}

.related_list::-webkit-scrollbar-button {
    display: none;
    background: #fff;
    border-radius: 0;
}

.related_list::-webkit-scrollbar-track-piece {
    background: #fff;
}

.related_list::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #222;
}

.related_list::-webkit-scrollbar-track {
    box-shadow: transparent;
}


/* .product_info_page .header_area .navigation{
    padding: 30px 0 76px;
}

.product_info_page .nav-header {
    top: 36%;
} */

.prod_related {
    background: transparent;
    padding: 85px 15px;
}

@media screen and (max-width: 1024px) {
    .products-list .item {
        width: calc(100% / 2);
    }

    .product_page .main_part {
        padding: 185px 0 150px;
    }

    .product_menu_list {
        margin-bottom: 30px;
    }
}





@media screen and (max-width: 768px) {

    .product_page .main_part {
        padding: 120px 0 150px;
    }

    .product_menu_list {
        margin-bottom: 0px;
    }

    .products-list {
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    .products-list .item {
        width: 50%;
    }

    .product_info_page .product-layer-two {
        display: none;

    }

    .product-wrapper {
        left: 0px;
    }

    .products-list .name {
        font-size: 13px;
    }

    .product-layer-two li a {
        font-size: 15px;
    }

}

@media screen and (max-width: 500px) {
    .product_page .main_part {}

    .products-list .more {
        font-size: 14px;
    }

    .products-list .item {
        width: 100%;
    }

    .product_info_page .main_part {
        width: 100%;
        max-width: 85%;
        margin: auto;
        padding: 50px 0px;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_btn_back {
    background: #857a72;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #857a72 !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
}

.subbox_item a:before,
.subbox_item a:after {
    display: none;
    transition: 0.3s;
}

.blog_le .accordion>li {
    border-bottom: 1px #3f3f3f33 solid;
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}

.subbox_item a:before {}

/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 1440px;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    min-height: 64vh;
}

.subbox_item {
    width: calc(100%/ 2 - 14px);
    padding: 5px;
}

@media screen and (max-width: 1024px) {
    .subbox_item {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .subbox_item {
        width: 100%;
    }
}

/**/


/* 左邊欄位 */



.blog_box {
    min-height: 20vw;
    padding: 7px;
    display: flex;
    flex-wrap: wrap;
}

.blog_le {
    margin-right: 3%;
    width: 16%;
}

.blog_ri {
    width: 81%;
}

.blog_back {
    width: 100%;
}



h5.blog_le_t {
    display: none;
}

.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #565656 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}

.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}

.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_le .accordion {
    border: none;
    border-radius: 0;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #fff !important;
    transition: all 0.3s;
}

.blog_le .accordion>li:hover .link i,
.blog_le .accordion>li.on_this_category .link i {
    color: #565656 !important;
}

.submenu {
    display: none;
    background: transparent;
    font-size: 14px;
}

.submenu a {
    display: block;
    position: relative;
    background: transparent;
    color: #565656;
    padding: 12px 12px 12px 25px;
    letter-spacing: 2px;
    transition: all 0.6s ease;
    word-break: break-all;
    line-height: 1.25;
    font-family: 'Klee One';
}

.submenu a:hover {
    background: #0000000d;
    color: #565656;
}

.submenu a:before {
    display: none;
}

.blog_le .accordion li i {
    position: absolute;
    top: 27px;
    right: 20px;
    font-size: 16px;
    color: #444;
    transition: all 0.4s ease;
}

.blog_le .accordion>li:hover.open {
    background-color: transparent !important;
}



/* 右邊欄位 */

.subbox_item a:after {
    display: none;
}

.subbox_item a {
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog_list_le {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.blog_list_le::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
}

.subbox_item a:hover .blog_list_le::after {
    opacity: 1;
    transition: all 0.5s;
}

.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.blog_list_ri {
    display: flex;
    vertical-align: top;
    padding: 0;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 40px;
}

.blog_list_ri p {
    margin-top: 30px;
}

.subbox_item::after {}

.blog_list_ri h5 {
    color: #857a72;
    font-size: 20px;
    font-weight: 500;
}

.subbox_item a img {
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

.subbox_item a:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

h4.blog_category_title {
    text-align: justify;
    color: #494949;
}

.blog_box_edit {
    line-height: 150%;
    color: #3f3f3f;
}

.blog_in_page .main_part {
    max-width: 80%;
}

.blog_list_ri em {
    position: absolute;
    right: 0;
    bottom: 0;
}

.news_related {
    background: #CABDB3;
}

.news_related_list li a {
    background: #00000091;
}

.news_related_list li a p {
    color: #fff;
}

.news_related h6 span:before {
    color: #494949;
}


@media screen and (max-width: 1024px) {
    .blog_page .main_part {
        max-width: 90%;
        padding: 0;
    }

    .subbox_item {
        width: 48%;
    }

}

@media screen and (max-width: 960px) {
    .subbox_item {
        border-bottom: none;
    }
}

@media screen and (max-width: 768px) {
    .subbox_item a {
        flex-direction: column;
    }

    .blog_box {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .blog_page .main_part {
        max-width: 75%;
    }

    h4.blog_category_title {
        text-align: justify;
        color: #494949;
        display: none;
    }

    .blog_ri {
        width: 80%;
    }

    .blog_le {
        margin-right: 0;
        width: 50%;
        margin: 20px auto;
    }

    .blog_list_ri {
        display: flex;
        vertical-align: top;
        padding: 20px;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .subbox_item a:before {
        display: none;
    }

    .blog_list_le {
        padding-bottom: 100%;
    }

    .blog_in_page .main_part {
        max-width: 100%;
    }

    .blog_page .show_content {
        max-width: 100%;
    }

    .subbox_item {
        width: 100%;
        border-bottom: 0;
    }

    .blog_page .main_part {
        max-width: 100%;
    }
}



/* 相簿 */





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1400px;
    padding: 0px 0;
}






.show-list .item:hover .show_name {
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.show-list .show_pic {
    height: 0;
    padding-bottom: 65%;
    bottom: 0;
    aspect-ratio: unset;
}

.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: auto;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    filter: grayscale(0.5) brightness(0.5);
    transition: all 0.3s;
}

.show-list a:hover .show_pic img {
    filter: grayscale(0) brightness(1);
    transition: all 0.3s;
}

.show-list .item:hover .show_pic img {
    transform: scale(1.05);
    transition: all 1s;
}

.show-list {
    display: flex;
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.show-list .show_name {
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.15em;
    margin-top: 0;
    overflow: hidden;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    font-weight: 500;
    z-index: 3;
    transform: translate(-50%, 0);
    text-align: center;
    margin-top: 10px;
    transition: all 0.3s;
}


.overlay {
    background: rgba(0, 0, 0, 0.37);
    opacity: 0.3;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 2;
    transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}

.show-list .item:hover .overlay {
    opacity: 0;
    transform: scale(1);
    transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}








/*次分類頁面*/
.other_album_choice li {
    background: transparent;
    border-radius: 0;
}

.other_album_choice li a {
    color: #494949;
}

.other_subalbum li p {
    line-height: 220%;
    text-align: center;
}

.other_subalbum li a div {
    height: 0;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    display: none;
}

.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: auto;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    filter: grayscale(0);
    -webkit-object-fit: cover;
    transition: all .4s;
}

.other_subalbum li a:hover img {
    transform: scale(1.02);
    transition: all 0.5s;
}

.other_subalbum li a:hover div:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: all .4s;
}

.album_fixed_title {
    display: none;
}


.album_info_page .show_content {
    padding: 110px 20px 50px;
}







/*照片頁*/
.pic-list .show_pic {
    padding-bottom: 66%;
}

.pic-list .show_pic img {}

.show-list .item {}

.album_page .show_content {
    margin: auto;
    padding: 0;
    max-width: 100%;
}

.subalbum-menu {
    margin: 30px 0;
    padding: 0;
}

.subalbum-menu h2 {
    display: none;
}

.block {
    background: #494949;
}

.other_subalbum {
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.other_subalbum li {
    display: inline-block;
    background: #fff;
    width: calc(100% / 4 - 20px);
    margin: 10px;
    border: none !important;
    position: relative;
}

.page strong,
.page a {
    display: inline-block;
    min-width: 29px;
    height: 29px;
    text-align: center;
    line-height: 29px;
    border: 0;
    border-radius: 0;
    padding: 0 10px;
    margin: 0 10px;
}

.album_fixed_title {
    display: none;
}

.other_subalbum li a {
    position: relative;
}

.album_descrip {
    color: #D1D1D1;
    font-size: 20px;
    line-height: 1.4;
}

.pic-list .item h6 {
    line-height: 220%;
    text-align: left;
    color: #D1D1D1;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 1;
    transition: all 0.3s;
}

.pic-list {
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
}


.other_subalbum li p {
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
}

.other_subalbum li:hover p {
    opacity: 0;
    transition: all 0.3s;
}

.pic-list .item:hover h6 {
    opacity: 1;
    transition: all 0.3s;
}

.pic-list .item {
    position: relative;
}

.album_info_page .pic-list .show_pic {
    padding-bottom: 0;
}



.show-list.other_subalbum .item {
    width: 100%;
    background: transparent;
}




.page {
    margin: 0;
    padding: 10px 0;
}



.pic-list {
    display: block;
    grid-template-columns: unset;
    grid-gap: unset;
}

ul.pic-list {
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
}

.pic-list .show_pic {
    aspect-ratio: auto;
}


.pic-list .item a {}

.pic-list .item h6 {
    padding: 0;
}

.pic-list .show_pic {
    aspect-ratio: auto;
}

.pic-list .item a {
    margin: 0 auto 10px;
}

@media screen and (max-width: 600px) {
    .show-list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
}




@media screen and (max-width: 1024px) {
    .other_subalbum {
        grid-template-columns: repeat(2, 1fr);
    }
}






@media screen and (max-width: 768px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }

    .album_page .show_content,
    .album_class_page .show_content {
        margin: auto;
        padding: 0;
        max-width: 100%;
    }

    .show-list {
        flex-wrap: wrap;
    }


    .show-list .item:hover .show_name {
        opacity: 1;
    }

    .show-list.other_subalbum .item {
        width: 100%;
    }

    .pic-list {
        grid-template-columns: unset;
    }

    .other_subalbum {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media screen and (max-width: 500px) {
    .other_subalbum li {
        width: 100%;
    }

}




/* --------------------------------------------------- */
/* 影片 */



.video-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.video-layer-two li a {
    border: none;
    background: transparent;
    color: #333333;
    transition: all 0.5s;
}

.video-layer-two li a:hover {
    background-color: #333333;
    color: #fff;
    transition: all 0.5s;
}

.video_page .main_part {
    padding: 50px 0 100px;
}







/*其他分頁*/
.promotion_title h2 {
    border-bottom: 2px solid #315468;
}

.promotion_title {
    display: none;
}



@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 70px;
    }

    #to_top {
        bottom: 60px;
    }

    .nav-menu {
        margin: 0;
    }

    .nav-menu>li:not(.tp_links) {
        padding-right: 0;
    }

    .nav-dropdown>li {
        text-align: left;
    }

    .nav-dropdown>li>a {
        width: calc(100% - 45px);
    }

    /*手機版LOGO設定*/
    .footer_logo {
        margin-left: unset;
        margin: auto;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .footer_info li p {
        text-align: center;
        color: #fff;
        width: 100%;
    }

    .footer_info li:nth-child(1)::after {
        text-align: center;
    }
}


@media screen and (max-width: 600px) {

    /*手機板大圖*/
    /*
.swiper-slide img { display:none; }
.swiper-slide {    width: 100%;    height: 0;    padding-bottom: calc(100% / 3 * 4);}
.swiper-slide:nth-child(1) { background-image:url(https://pic03.eapple.com.tw/.../Banner-03.png) ; background-size:cover;   background-position: center;}
.swiper-slide:nth-child(2) { background-image:url(https://pic03.eapple.com.tw/.../Banner-04.png) ; background-size:cover;   background-position: center;}
*/

}

.contact_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 100px 20px;
}

.blank_letter {
    padding-top: 0;
    font-size: 26px;
    padding: 10px 0;
    color: #54524D;
    background-position: left bottom;
    background-repeat: no-repeat;
    font-family: "Montserrat", sans-serif;
    border-bottom: 1px #54524D solid;
}

.list_before.info li {
    padding-left: 40px;
    color: #54524D;
}

.contact_form li .form__label {
    color: #54524D;
    width: 130px;
    margin-left: -140px;
}

.contact_le_map a {
    background: #cc3e3e;
    color: #fff;
}

.contact_form li.last cite {
    background: #be9b46;
    color: #fff;
    width: 220px;
}

.contact_form li.last input[type="submit"] {
    color: #fff;
}

.contact_content .information_left {
    width: 40%;
    margin-bottom: 0;
    margin-right: 10%;
}

.contact_content .information_right {
    width: 50%;
    padding-left: 0px;
}

.contact_le_nomap {
    height: 310px;
    transition: all .5s;
}

.contact_le_nomap:hover {
    filter: grayscale(0);
    transition: all .5s;
}


.contact_form li input.noborder {
    border: none;
    background: #0000000a;
    color: #54524D;
    transition: all 0.3s;
}

.contact_form li {
    margin-bottom: 0px;
    border-bottom: 1px solid #54524D3d;
    padding: 10px 0;
    padding-left: 130px;
}

/* .contact_form li:nth-child(9) .form__label{
    width: 130px;
    margin-left: -100px;
}
.contact_form li:nth-child(9){
} */
.contact_form li textarea.noborder {
    background: transparent;
    border: 1px #54524D solid;
    color: #54524D;
    transition: all 0.3s;
}

.contact_content form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.form__insert input {
    margin: 0 10px;
    color: #54524D;
}

.contact_form li.last blockquote {
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #54524D solid;
    width: 150px;
}

.contact_content {
    margin: auto;
    padding: 0px 10px;
}


.list_before {
    display: flex;
    gap: 15px;
    flex-direction: column;
}





@media screen and (max-width: 1024px) {
    .contact_content form {
        flex-direction: column;
    }

}

@media screen and (max-width: 768px) {
    .contact_form li.last cite {
        width: 160px;
    }

    .contact_content .information_left {
        width: 100%;
        margin-bottom: 0;
        margin-right: 0;
    }

    .contact_content .information_right {
        width: 100%;
        padding-left: 0px;
    }
}