﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* 設計師用 桌機版CSS檔 style.css */
/* 說明：
    可提供設計師在此檔，針對桌機版面進行設計；為網站必載CSS檔。*/

a.intro_box {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: #fff;
    padding: 0 .4em;
}
a.intro_box:focus-visible {
    opacity: 1;
    z-index: 999;
}
a:focus-visible {
    outline: 3px solid #007BFF; /* 明顯的藍色外框 */
    background-color: rgba(0, 123, 255, 0.1); /* 淡藍色背景 */
    border-radius: 4px; /* 圓角 */
    padding: 2px 4px; /* 增加一些內距 */
    transition: outline 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.slick .slick-arrow:focus-visible {
    opacity: .6;
    outline: 3px solid #007BFF; /* 明顯的藍色外框 */
}
div.bsnav-mobile:not(.in) {
	display: none;
}
.banner li a {
	position: relative;
}
.banner li a:after {
	content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
}
.banner li a:focus-visible:after {
	opacity: .6;
}

body {
    font-size: 1rem;
    color: #333;
}

p {
    line-height: 24px;
    margin-bottom: 24px;
}

a {
    color: #666;
}

a:hover {
    color: #52CED5;
}

.t-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.multi-ellipsis {
    display: -webkit-box;
    height: 44px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn:focus {
    box-shadow: none;
}

.btn.pink {
    font-size: 0.875rem;
    color: #fff;
    background-color: #a63b3d;
    font-family: 'Roboto', sans-serif;
    padding: 10px 30px;
    position: relative;
    box-shadow: inset 0 0 0 4px transparent;
    transition: all 0.25s 0.0833333333s;
    position: relative;
    border-radius: 0;
}

.btn.pink:before,
.btn.pink:after {
    border: 0 solid transparent;
    box-sizing: border-box;
    content: "";
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
}

.btn.pink:before {
    border-bottom-width: 4px;
    border-left-width: 4px;
}

.btn.pink:after {
    border-top-width: 4px;
    border-right-width: 4px;
}

.btn.pink:hover {
    color: #dec48a;
    background-color: #a63b3d;
}

.btn.pink:hover::before,
.btn.pink:hover::after {
    border-color: #dec48a;
    transition: border-color 0s, width 0.25s, height 0.25s;
    width: 100%;
    height: 100%;
}

.btn.pink:hover::before {
    transition-delay: 0s, 0s, 0.25s;
}

.btn.pink:hover::after {
    transition-delay: 0s, 0.25s, 0s;
}

.btn.bord {
    border: solid 1px #311300;
    border-radius: 0;
    font-size: 0.9375rem;
    padding: 9px 20px;
    color: #311300;
    position: relative;
}

.btn.bord:before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 0;
    background: #311300;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all .3s ease;
}

.btn.bord:hover:before {
    height: 100%;
}

.btn.bord:hover {
    color: #fff;
}

.btn.btn-primary {
    background: #311300;
    border: none;
    border-radius: 0;
    padding: 10px;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
    background: #a63b3d;
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    box-shadow: none;
    background: #311300;
}

.icon {
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all .3s ease;
}

.icon.team,
.icon.talents {
    width: 80px;
    height: 60px;
    background-image: url(../images/all/icon_team.svg);
}

.icon.talents {
    background-image: url(../images/all/icon_talents.svg);
}

.icon.fb,
.icon.twitter {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #909090;
    background-image: url(../images/all/icon_fb.png);
}

.icon.twitter {
    background-image: url(../images/all/icon_twitter.png);
}

.icon.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #fff transparent;
}

.h2,
.h2 a {
    font-size: 1.7rem;
    color: #a63b3d;
    text-align: center;
    margin-bottom: 20px;
}

.h2 span {
    display: inline-block;
    position: relative;
    padding-bottom: 11px;
}

.h2 span:before {
    position: absolute;
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background-color: #a63b3d;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.h2.st {
    text-align: left;
    font-weight: bold;
}

.h2.st>span:before {
    left: 0;
    transform: translateX(0);
}

.h3 {
    font-size: 1.2rem;
    padding: 10px;
    color: #a63b3d;
    background-color: #efefef;
    border-top: solid 5px #a63b3d;
    font-weight: bold;
}

.intro-sub {
    font-size: 0.9375rem;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.intro-sub .limit-width {
    display: inline-block;

}

.slick .slick-arrow {

    background-repeat: no-repeat;
    background-position: center center;

    border-radius: 50%;
    background-color: #a63b3d;
    transition: all .3s ease;
    width: 40px;
    height: 40px;
    background-size: 10px;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick .slick-prev {
    background-image: url(../images/all/arrow_001.svg);
    left: -40px;
}

.slick .slick-next {
    background-image: url(../images/all/arrow_002.svg);
    right: -40px;
}


.slick .slick-arrow:hover {
    background-color: #311300;
    -webkit-animation-name: butover;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
    animation-name: butover;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}

@-webkit-keyframes butover {
    0% {
        transform: translate(0px, -50%);
    }

    50% {
        transform: translate(5px, -50%);
    }

    100% {
        transform: translate(0px, -50%);
    }
}

@keyframes butover {
    0% {
        transform: translate(0px, -50%);
    }

    50% {
        transform: translate(5px, -50%);
    }

    100% {
        transform: translate(0px, -50%);
    }
}

.form-control {
    border-radius: 0;
    border-color: #311300;
}

.form-control:focus {
    box-shadow: none;
    border-color: #a63b3d;
}

.section:not(.banner) .editor {
    font-size: 0.9375rem;
    color: #000;
    background: #fbfaf4;
    padding: 20px;
    border-top: solid 1px #ddacac;
}

.section:not(.banner) .editor.nobg {
    background: none;
    border: none;
    padding: 0;
}

/********************* Header *********************/
.header {}

/* header logo */
.header .navbar .navbar-brand {
    width: 150px;
    height: 32px;
    margin: 15px 0 15px;
    background: url(../images/all/logo.svg) no-repeat;
    text-indent: -9999px;
    display: block;
    padding: 0;
    background-size: 100%;
    transition: all .3s ease;
}



.header .navbar .navbar-brand:hover {
    opacity: 0.7;
}

/* header 主選單 */
.header .navbar {
    background: #fbfaf4;
}

.header .navbar .navbar-nav>li>a {
    background: none;
    color: #000;
    font-weight: bold;
    font-size: 0.9375rem;
    padding-left: 18px;
    padding-right: 18px;

    position: relative;
    overflow: hidden;

}



/*  dec48a */
.header .navbar .navbar-nav>li>a:hover,
.header .navbar .navbar-nav>li.show>a {
    background-position: 0 100%;
}

.header .navbar .navbar-nav>li>a:hover,
.header .navbar .navbar-nav>li>a:active {
    color: #a63b3d;
}


.header .navbar .navbar-nav li a:hover {}

.header .navbar .navbar-nav>li+li>a {
    border-left: 1px solid #eee;
}

.header .navbar .navbar-nav>li ul li a {
    padding: 5px;
}



/* header 次選單 */
.header .navbar .sub-nav {
    position: absolute;
    right: 15px;
    top: 20px;
}

.header .navbar .sub-nav li {
    padding: 0;
}

.header .navbar .sub-nav li a {
    background: url(../images/all/sub_nav.png) no-repeat;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
}

.header .navbar .sub-nav li a:hover {
    position: relative;
    top: 2px;
}

.header .navbar .btn-default {
    color: #3c3c3c;
    text-shadow: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 4px 8px;
    font-size: 0.75rem;
    border: solid 1px #3c3c3c;
    transition: all .3s ease;
}

.header .navbar .lang {
    /*position: absolute;
    right: 54px;
    top: 20px;*/
}

.header .navbar .lang .dropdown-menu {
    background: #ffffff;
    color: #191919;
    border: none;
    border-radius: 0;
    min-width: auto;
    width: 100%;
    border: solid 1px #3c3c3c;
    padding: 0;
}

.header .navbar .lang .dropdown-menu a {
    color: #3c3c3c;
    font-size: 0.75rem;
    /* width: 100%; */
    display: block;
    background: #e8e8e8;
    transition: all .3s ease;
}

.header .navbar .lang .dropdown-menu a:hover {
    background: none;
    color: #FCE617;
}

.header .navbar .lang .dropdown-menu li+li a {
    border-top: solid 1px #3c3c3c;
}

.header .navbar .lang .dropdown-menu a:hover {
    background: #3c3c3c;
    color: #fff;
}

.header .navbar .btn-default:focus {
    border-color: #dec48a;
}

/** bsnav **/

.navbar.bsnav-left .navbar-brand {
    background-image: url('../../images/all/logo2.svg');
    width: 120px;
    height: 27px;
}


.navbar.bsnav.bsnav-brand-center .navbar-brand {
    background-image: url('../../images/all/logo2.svg');
    width: 120px;
    height: 27px;
    margin: 10px 0;
}

.bsnav .navbar-toggler {
    /*position: absolute;
    right: 10px;*/
}

.bsnav .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.bsnav-mobile {
    z-index: 9999;
}

.bsnav-mobile .navbar {
    border: none;
}

.bsnav-mobile.left .navbar {
    right: auto;
    left: 0;
    transform: translate3d(-300px, 0, 0);
}

.bsnav-mobile.left.in .navbar {
    transform: translate3d(0, 0, 0);
}

.bsnav-mobile.full .navbar {
    width: 100%;
    transform: scale(0);
    transition: all .3s ease;
    opacity: 0;
    background: #000;
}

.bsnav-mobile.full .navbar-nav .nav-item .nav-link {
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
    border: none;
}

.bsnav-mobile.full .navbar-nav .nav-item .navbar-nav {
    background: rgba(56, 56, 56, 0.8);
}

.bsnav-mobile.full.in .navbar {
    transform: scale(1);
    opacity: 1;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
}


.header .bsnav-mobile .navbar {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
}

.bsnav-mobile .bsnav-mobile-overlay {
    background: rgba(0, 0, 0, 0.6);
    transition: all .3s ease;
    visibility: visible;
    opacity: 0;
}

.bsnav-mobile.in .bsnav-mobile-overlay {
    opacity: 1;
}

.bsnavclose.close-btn {
    position: fixed;
    width: 30px;
    height: 30px;
    right: 28px;
    top: 16px;
    cursor: pointer;
    z-index: 99999;
    transform: scale(0);
    transition: all .3s ease;
}

.bsnavclose.close-btn.active {
    transform: scale(1);
}

.bsnav .navbar-nav .nav-item.active>.nav-link,
.bsnav .navbar-nav .nav-item:active:focus>.nav-link,
.bsnav .navbar-nav .nav-item:active>.nav-link,
.bsnav .navbar-nav .nav-item:focus>.nav-link,
.navbar-nav .nav-item.active>.nav-link,
.navbar-nav .nav-item:active:focus>.nav-link,
.navbar-nav .nav-item:active>.nav-link,
.navbar-nav .nav-item:focus>.nav-link,
.navbar-nav .nav-item:hover>.nav-link {
    color: #1eb4bd;
}

.bsnav-mobile .navbar-mobile {
    padding: 0;
}

.bsnav-mobile .navbar-nav .nav-item .nav-link {
    width: 100%;
    border-bottom: solid 1px #cecece;
    padding: 10px 0;
}

.bsnav-mobile .navbar-nav .nav-item .navbar-nav {
    background: #dedede;
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: none;
}

.bsnav-mobile .navbar-nav .nav-item .navbar-nav .nav-link {
    padding: 10px 10px;
}


/** bsnav **/


/*------- Banner -------*/
.banner {
    position: relative;
    padding-top: 62px;
}



.banner .banner-area li {
    height: 250px;
}

.banner .banner-area li {
    background-repeat: no-repeat;
    background-position: center top;
}

.banner .banner-area li a {
    display: block;
}

.banner .banner-area li img {
    width: 100%;
    display: none;
}

.banner .editor {
    font-size: 0.9375rem;
    color: #fff;
}

.banner .editor .title {
    font-size: 2rem;
    padding-bottom: 10px;
    margin-bottom: 17px;
    color: #ce4a4d;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: bold;
    position: relative;
    display: inline-block;
}



.banner .editor .title::before {
    position: absolute;
    content: "";
    width: 70%;
    height: 1px;
    background-color: #ce4a4d;
    left: 0;
    bottom: 0;
}

.banner .editor .desc {
    line-height: 1.7;
    font-size: 1.2rem;
}

/********************* Footer *********************/
.footer {
    text-align: center;
}

.footer .footer-logo{
    background: #fbfaf4;
    padding: 30px 0;
}

.footer .footer-logo a{
    max-width: 300px;
    margin:0 auto;
    opacity: 1;
    transition: 0.3s all ease;
}

.footer .footer-logo a:hover{
    opacity: 0.8;
}

/* sitemap */
.footer .sitemap ul li {
    color: #888;
    padding: 0;
}

.footer .sitemap ul li a {
    color: #888;
    padding: 10px;
}

.footer .sitemap ul li a:hover {
    color: #36B9C0;
}

.footer_content {
    font-size: 0.9375rem;
    line-height: 22px;
    color: #311300;
}

/* siteinfo */
.footer .siteinfo {
    color: #311300;

    background: #dec48a;
    padding: 15px 0;
}

.footer .siteinfo a {
    color: #311300;
    transition: all .3s ease;
}

.footer .siteinfo a:hover {
    color: #a63b3d;
}

.footer .siteinfo ul>li {
    padding: 0 0;
}




.footer .copyright {
    font-size: 0.875rem;
    background-color: #311300;
    color: #fff;
    padding: 10px 0;
}

.footer .powered a {
    color: #AAA;
}

.footer .powered a:hover {
    color: #666;
}

/********************* floating *********************/

#floating .btn-floating {
    width: 28px;
    height: 48px;
    background-color: #311300;
    display: block;
    margin: 1px;
    padding: 10px 3px;
    position: absolute;
    left: -30px;
    border-radius: 10px 0 0 10px;
}

#floating .btn-floating .icon-arrow {
    background: url(../images/all/arrow.png) no-repeat;
    display: block;
    width: 32px;
    height: 40px;
    transition: initial;
    background-position: 0 -4px;
}

#floating.open .btn-floating .icon-arrow {
    background-position: 0 -44px;
}



#floating ul li {
    /*padding: 10px 0;*/
}

#floating ul li a:hover img {
    animation: tada 1.5s infinite;
}

#floating ul li a:hover .icon {
    animation: tada 1.5s infinite;
    background-color: #311300;
}

.gotop {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.gotop a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5e5e5e;
    color: #fff !important;
    font-size: 0.75rem;
    line-height: 1;
    padding-top: 6px;
    transition: all .3s ease;
}

.gotop a:hover {
    background: #311300;
}

.gotop a:hover .icon {

    -webkit-animation-name: butover2;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
    animation-name: butover2;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}

@-webkit-keyframes butover2 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes butover2 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0px);
    }
}




/********************* Main *********************/
.main {
    z-index: 10;
}


/*----------------------- side -----------------------*/
.side .side-toggle {
    font-size: 0.938rem;
    color: #23989f;
    text-align: center;
    line-height: 28px;
    margin-top: 0px;
}

.side .nav>li+li {
    border-top: 1px solid #ABCFDB;
}

.side .nav>li a {
    color: #333;
    line-height: 20px;
    display: block;
    padding: 8px 10px 8px 22px;
}

.side .nav>li a:hover,
.side .nav>li a:focus,
.side .nav>li.active a {
    background: url(../images/all/list_icon.png) no-repeat 0 10px;
    color: #02b7c1;
}

.side .nav>li>ul {
    padding-left: 20px;
    list-style-type: none;
}

.side .nav>li>ul>li>a,
.side .nav>li>ul>li>a:hover {
    background: url(../images/all/list_icon2.png) no-repeat 0 6px;
    padding: 6px 10px 6px 20px;
}

.side .nav>li>ul>li>ul {
    margin-left: 18px;
    list-style-type: none;
}

.side .nav>li>ul>li>ul>li>a,
.side .nav>li>ul>li>ul>li>a:hover {
    background: url(../images/all/list_icon3.png) no-repeat 0 6px;
    padding: 6px 10px 6px 20px;
}

/*----------------------- Content -----------------------*/
.content>h1 {
    color: #36b9c0;
    font-size: 1.875rem;
    border-bottom: 1px solid #ABCFDB;
    padding: 5px 10px 15px;
    margin-top: 0;
}

/* breadcrumb */
.bread-section {
    background: #EBD3A3;
}

.bread-section ol,
.bread-section ol li a {
    font-size: 0.875rem;
    color: #311300;
}

.bread-section ol {
    padding: 10px;
    justify-content: center;
}

.bread-section ol li {
    position: relative;
}

.bread-section ol li:not(:last-child):before {
    position: absolute;
    content: "/";
    display: block;
    color: #ab9565;
    right: 6px;
    top: 0;
}

.bread-section ol li:not(:last-child) {
    padding-right: 15px;
}

.bread-section ol li.active {
    color: #A62D30;
}

/* btn-more */
.content .btn-more {
    position: absolute;
    right: 15px;
    top: 30px;
    display: block;
    width: 52px;
    height: 24px;
    background: url(../images/all/btn_more.png) no-repeat;
    text-indent: -9999px;
}

.content .btn-more:hover {
    background-position: 0 -24px;
}

/* list-box */
.content .list-box .txt-list {
    margin-bottom: 60px;
}

.content .list-box .txt-list li {
    background: url(../images/all/icon_list.png) no-repeat 8px 12px;
    border-bottom: 1px dotted #ccc;
    padding-left: 30px;
}

.content .list-box .txt-list li:nth-child(2n+1) {
    background-color: rgba(240, 240, 240, 0.3);
}

.content .list-box .txt-list li a {
    line-height: 28px;
    display: block;
    padding: 10px 0;
}

.content .list-box .txt-list li a:hover,
.content .list-box .txt-list li a:focus {
    color: #36B9C0;
}

.content .list-box .txt-list li span {
    font-size: 0.813rem;
    color: #aaa;
    line-height: 20px;
    display: inline-block;
    float: right;
    padding: 3px 20px;
}

.content .list-box .txt-list li span.news-title {
    width: 78%;
    color: #848275;
    float: left;
}

.content .list-box .txt-list li.list-header {
    background: none;
    border-bottom: 1px solid #ACE7EB;
    padding-left: 40px;
    padding-right: 15px;
}

.content .list-box .txt-list li.list-header a,
.content .list-box .txt-list li.list-header a span {
    font-size: 1.125rem;
    color: #36B9C0;
}

.content .list-box .txt-list li.list-header a span {
    padding-right: 24px;
}

/* btn-box */
.content .btn-box {
    border-top: 1px solid #ACE7EB;
    margin: 0 0 20px;
    padding-top: 15px;
    clear: both;
}

.content .btn-box:after {
    content: " ";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.content .btn-box .pager {
    text-align: left;
    display: inline-block;
    margin: 0 0 20px;
}

.content .btn-box .pager li {
    margin: 0 5px;
}

.content .btn-box .pager li>a {
    background: #fff;
    color: #888;
    border-radius: 5px;
    border: 1px solid #DFDFDF;
    padding: 5px 20px;
}

.content .btn-box .pager li>a:hover {
    background-color: #36B9C0;
    color: #fff;
}

.content .btn-box .pager li>a .icon {
    display: none;
}

.content .btn-box .page-info {
    color: #888;
    float: right;
    text-align: center;
    margin: 0 5px;
}

.content .btn-box .page-info select {
    min-width: 60px;
    border: 1px solid #DFDFDF;
    margin-right: 10px;
}

/*----------------------------------------- 首頁 home --------------------------------------*/
body.home .main_content {
    min-height: 0;
}

body.home .content>h2 {
    font-size: 1.25rem;
    border-bottom: 1px solid #ACE7EB;
    color: #36B9C0;
    padding: 6px;
}

body.home .content .btn-more {
    top: 10px;
    right: 0;
}

.team-section {
    margin: 40px 0;
}

.intro-sub .limit-width {
    display: inline-block;
    font-size: 1.1rem;
}

.gallery-list.slick .item {
    padding: 0 15px;
}

.gallery-list .item .pic {
    position: relative;
}

.gallery-list .item .pic .pic-d {
    overflow: hidden;
}

.gallery-list .item .pic .pic-d img {
    transform: scale(1);
    transition: all 1s ease;
}

/* .gallery-list .item .pic .cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    left: 0;
    top: 0;
    transition: all .3s ease;
    opacity: 0;
} */

/* .gallery-list .item .pic .cover .icon-wrap {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease;
} */

.gallery-list .item .info .title {
    color: #a63b3d;
    font-weight: bold;
    background-color: #efefef;
    border-top: solid 5px #a63b3d;
    text-align: center;
    position: relative;
    transition: all .3s ease;
    font-size: 1.2rem;
    padding: 8px 10px;
}
.home.en  .gallery-list .item .info .title span {
  
		-webkit-line-clamp:3;
	
}

 .gallery-list .item .info .title span {
    position: relative;
	overflow:hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp:2;
		-webkit-box-orient: vertical;
		white-space: normal;
}

.gallery-list .item .info .title:before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    transition: all .3s ease;
    background-color: #ddacac;
}

.gallery-list .item .info .desc {
    margin: 10px 0;
    font-size: 0.9375rem;
    color: #000;
    transition: all .3s ease;
}

/* .gallery-list .item:hover .pic .cover {
    opacity: 1;
} */

/* .gallery-list .item:hover .pic .cover .icon-wrap {
    top: 50%;
    opacity: 1;
    transition-delay: 0.3s;
} */

.gallery-list .item:hover .pic .pic-d img {
    transform: scale(1.2);
}

.gallery-list .item:hover .info .title {
    color: #fff;
}

.gallery-list .item:hover .info .title:before {
    height: 100%;
}

.gallery-list .item:hover .info .desc {
    color: #6f6f6f;
}

.icon.team,
.icon.talents {
    width: 80px;
    height: 60px;
    background-image: url(../images/all/icon_team.svg);
}

.icon {
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all .3s ease;
}
.home.en  .gallery-list .item .info .title {

	min-height: 143px;
	
}

.gallery-list .item .info .title {
    color: #a63b3d;
    font-weight: bold;
    background-color: #efefef;
    border-top: solid 5px #a63b3d;
    text-align: center;
    position: relative;
    transition: all .3s ease;
    font-size: 1.2rem;
    padding: 8px 10px;
	min-height: 107px;
	
}


.gallery-list .item .info .desc {
    margin: 10px 0;
    font-size: 0.9375rem;
    color: #000;
    transition: all .3s ease;
}


/*----------------------------------------- wid --------------------------------------*/
.content .wid {
    position: relative;
    z-index: 10;
}

/* wid-home-news */
.content .wid-home-news {
    margin-left: 0;
}

.content .wid-home-news .txt-list {
    margin-bottom: 10px;
    margin-top: -10px;
}

.content .wid-home-news .txt-list li {
    padding-left: 14px;
    background-position: 0 4px;
    background-color: transparent;
}

.content .wid-home-news .txt-list li:last-child {
    border-bottom: 2px solid #ACE7EB;
}

.content .wid-home-news .txt-list li a {
    padding: 2px 0;
    font-size: 0.813rem;
}

.content .wid-home-news .txt-list li a span {
    padding: 3px 0;
    font-size: 0.75rem;
}

/* wid-home-product */
.content .wid-home-product .bxslider li a {
    border: 1px solid #ACE7EB;
    padding: 2px;
    display: block;
}

.content .wid-home-product .bxslider li a:hover {
    border-color: #36B9C0;
}

.content .wid-home-product .bx-wrapper .bx-controls-direction a {
    width: 24px;
    height: 40px;
    background: url(../images/home/arrow.png) no-repeat;
}

.content .wid-home-product .bx-wrapper .bx-controls-direction a.bx-prev {
    left: -24px;
}

.content .wid-home-product .bx-wrapper .bx-controls-direction a.bx-next {
    right: -24px;
    background-position: 0 -40px;
}

/* wid-home-contact */
.content .wid-home-contact ul li {
    color: #717171;
    padding-left: 20px;
    font-size: 0.75rem;
    line-height: 1.8;
}

.content .wid-home-contact ul li.phone {
    font-size: 1.375rem;
    color: #333;
    font-weight: bold;
}

.talents-section {
    background: #fbfaf4;
    padding: 50px 0 50px;
}

/*********************/
.team-sepe-area {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.team-sepe-area .tsepe-box ul {
    padding: 0 15px 8px;
}

.team-sepe-area .tsepe-box ul li {
    width: 100%;
    font-size: 0.9375rem;
    color: #000;
    position: relative;
    padding-left: 15px;
    padding-right: 10px;
}

.team-sepe-area .tsepe-box ul li a {
    display: block;
    font-size: 0.9375rem;
    color: #000;
    transition: all .3s ease;
    padding: 10px 0;
}

.team-sepe-area .tsepe-box ul li:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background: #ddacac;
    left: 0;
    top: 19px;
    transition: all .3s ease;
}

.team-sepe-area .tsepe-box ul li:hover a {
    color: #a63b3d;
}

.team-sepe-area .tsepe-box ul li:hover:before {
    background: #a63b3d;
    width: 13px;
}

.team-sepe-area+.team-sepe-area {
    margin-top: 20px;
}


.side ul .nav-item .nav-link {
    border: solid 1px #5e5e5e;
    font-size: 1rem;
    color: #000;
    padding: 8px 25px;
    position: relative;
    overflow: hidden;
}

.side ul .nav-item .nav-link:before {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background: rgb(222 196 138 / 80%);
    left: 0;
    top: 0;
    transition: all .3s ease;
}

.side ul .nav-item .nav-link:hover:before {
    width: 100%;
}

.side ul .nav-item .nav-link:after {
    position: absolute;
    content: ">";
    display: block;
    font-weight: bolder;
    font-size: 1rem;
    color: #ce4a4d;
    left: -50%;
    top: 50%;
    transform: translate(-50%, -50%) scaleY(1.8);
    transition: all .3s ease;
}

.side ul .nav-item .nav-link:hover:after {
    left: 50%;
    transition-delay: 0.3s;
}

.pagination .page-item .page-link {
    border: none;
    color: #311300;
    transition: all .3s ease;
    border-radius: 0;
    font-size: 0.9375rem;
    padding: .4rem .65rem;
}

.pagination .page-item.active .page-link {
    color: #fff;
    background: #311300;
}

.pagination .page-item .page-link:hover {
    background: #dec48a;
    /* color: #fff; */
}

.page-area .page-info {
    font-size: 0.9375rem;
    color: #311300;
}

.page-area .page-info .form-control {
    font-size: 0.9375rem;
    height: 30px;
    padding: 3px 5px;
}