@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* root */
:root {
    --cnvs-themecolor: #2D3A93;
    --cnvs-themesubcolor: #CAE0F9;
    --cnvs-themesubcolor2: #DF1C15;
    --cnvs-beforeheadingcolor: #579DEC;

    --cnvs-themecolor-rgb: 45, 58, 147;
    --cnvs-themesubcolor-rgb: 202, 224, 249;
    --cnvs-themesubcolor2-rgb: 223, 28, 21;
    --cnvs-beforeheadingcolor-rgb: 87, 157, 236;

    --bs-body-font-family: "Noto Sans TC", "Noto Sans", sans-serif;
    --cnvs-body-font: "Noto Sans TC", "Noto Sans", sans-serif;
    --cnvs-primary-font: "Noto Sans TC", "Noto Sans", sans-serif;
    --cnvs-secondary-font: "Noto Sans TC", "Noto Sans", sans-serif;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* header */
#header-wrap .top-search-form input {
    font-size: 20px;
}

#header-wrap #logo img {
    height: 50px;
    aspect-ratio: 371 / 50;
}

.transparent-header.dark #header-wrap #logo img {
    filter: grayscale(1) invert(1) brightness(100);
}

.is-expanded-menu #header.sticky-header-shrink #header-wrap #logo img {
    height: 35px;
}

#header.sticky-header #header-wrap #logo img,
.is-expanded-menu #header.sticky-header-shrink #header-wrap #logo img {
    filter: brightness(1);
}

.is-expanded-menu .menu-link {
    --cnvs-primary-menu-padding-y: 29px;
    --cnvs-primary-menu-padding-x: 15px;
}

.is-expanded-menu #header.sticky-header-shrink .menu-link {
    --cnvs-primary-menu-padding-y: 20px;
}

.menu-container>.menu-item.current>.menu-link {
    color: var(--cnvs-themecolor);
}

#header {
    --cnvs-header-height: 80px;
}

@media screen and (min-width: 992px) {
    .is-expanded-menu .full-header #logo {
        padding-right: 0;
    }

    .menu-container>.menu-item .menu-link div,
    .header-misc>.menu-link div {
        position: relative;
    }

    .menu-container>.menu-item .menu-link div::before,
    .header-misc>.menu-link div::before {
        content: "";
        position: absolute;
        bottom: -4px;
        width: 0;
        height: 1px;
        background-color: var(--cnvs-primary-menu-color);
        transition: all 0.3s ease-out;
    }

    .menu-container>.menu-item:hover>.menu-link div::before,
    .header-misc:hover>.menu-link div::before {
        width: 100%;
    }

    .menu-container>.menu-item.current>.menu-link div::before {
        content: "";
        position: absolute;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background-color: var(--cnvs-themecolor);
        transition: all 0.3s ease-out;
    }
}

@media screen and (max-width: 1399px) {
    .is-expanded-menu .menu-link {
        font-size: 16px;
        --cnvs-primary-menu-padding-y: 29px;
        --cnvs-primary-menu-padding-x: 8px;
    }
}

@media screen and (max-width: 1199px) {
    #header-wrap #logo img {
        height: 35px;
    }

    .is-expanded-menu #header.sticky-header-shrink #header-wrap #logo img {
        height: 35px;
    }

    .is-expanded-menu .menu-link {
        font-size: 14px;
        --cnvs-primary-menu-padding-y: 24px;
        --cnvs-primary-menu-padding-x: 8px;
    }

    .is-expanded-menu.stretched .full-header #header-wrap>.container {
        padding: 0 12px;
    }

    #header {
        --cnvs-header-height: 70px;
    }
}

@media screen and (max-width: 991px) {
    #header-wrap #logo img {
        filter: brightness(1);
    }

    .menu-link {
        --cnvs-primary-menu-padding-x: 15px;
    }

    .menu-link.language {
        padding: 12px;
    }
}

@media screen and (max-width: 576px) {
    #header-wrap #logo img {
        height: 22px;
    }
}

/* slider */
#slider.swiper_wrapper {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 900;
}

#slider .slider-title {
    font-size: 48px;
    letter-spacing: 1px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#slider .slider-text {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.75;
    font-weight: 400;
    margin: 24px 0 0;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#slider .slider-button {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.75;
    font-weight: 500;
    padding: 8px 32px;
    margin: 24px 0 0;
    background-color: var(--cnvs-themesubcolor);
    color: var(--cnvs-themecolor);
}

#slider .slider-button:hover {
    background-color: var(--cnvs-themesubcolor2);
    color: #FFF;
}

#slider .swiper-slide-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1399px) {
    #slider .slider-title {
        font-size: 40px;
    }
    
    #slider .slider-text {
        font-size: 18px;
        margin: 16px 0 0;
    }
    
    #slider .slider-button {
        font-size: 16px;
        margin: 16px 0 0;
    }
}

@media screen and (max-width: 767px) {
    #slider .slider-title {
        font-size: 32px;
    }
    
    #slider .slider-text {
        font-size: 16px;
        margin: 8px 0 0;
    }
}

@media screen and (max-width: 575px) {
    #slider .slider-title {
        font-size: 24px;
    }
    
    #slider .slider-text {
        display: none;
    }

    #slider .slider-button {
        font-size: 14px;
        margin: 8px 0 0;
    }

    #slider .slider-arrow-left,
    #slider .slider-arrow-right {
        display: none;
    }
}


/* section */
.before-heading {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgb(87, 157, 236);
}

.heading-block .section-title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--cnvs-themecolor);
}

@media screen and (max-width: 991px) {
    .heading-block .section-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 767px) {
    .heading-block .section-title {
        font-size: 28px;
    }

    .section {
        padding: 40px 0;
    }
}

/* breadcrumb */
.breadcrumb {
    padding: 50px 0;
    z-index: 1;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}

.breadcrumb_title {
    font-size: 36px;
    margin-bottom: 24px;
    color: #fff;
    text-align: center;
}

.breadcrumb_list {
    margin-bottom: 0;
}

.breadcrumb_list li a {
    color: #fff;
    transition: all 0.3s ease-out;
}

.breadcrumb_list li a:hover {
    color: var(--cnvs-themecolor);
}

@media screen and (max-width: 991px) {
    .breadcrumb {
        padding: 40px 0;
    }
}

@media screen and (max-width: 768px) {
    .breadcrumb_title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

/* intro */
.cascading-image:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    background-color: var(--cnvs-themecolor);
}

.cascading-image3::before {
    content: "";
    position: absolute;
    top: 10px;
    right: -10px;
    width: 100%;
    height: 100%;
    background-color: var(--cnvs-themesubcolor);
    z-index: 0;
}
    
[class*="cascading-image"] img {
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .cascading-image:before {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        width: 100%;
        height: 100%;
        background-color: var(--cnvs-themecolor);
        animation: floating1 2.5s ease-in-out alternate infinite;
    }
    
    .cascading-image3::before {
        content: "";
        position: absolute;
        top: 10px;
        right: -10px;
        width: 100%;
        height: 100%;
        background-color: var(--cnvs-themesubcolor);
        animation: floating2 2.5s ease-in-out alternate infinite;
        z-index: 0;
    }
    
    @keyframes floating1 {
        0% {
            top: -20px;
        }
        
        100% {
            top: 20px;
        }
    }
    
    @keyframes floating2 {
        0% {
            top: 20px;
        }
    
        100% {
            top: -20px;
        }
    }
}


/* history */
.history-section .section-title-wrap {
    padding-right: 0;
}

.history-section .section-title {
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 1px;
}

.history_6__time-item::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 30%;
    height: 2px;
    background: var(--cnvs-themecolor);
}

.history_6__time-year {
    width: 20%;
    font-size: 20px;
    background: var(--cnvs-themecolor);
    height: fit-content;
    letter-spacing: 1px;
}

.history_6__time-txt {
    position: relative;
    margin-left: 10%;
    width: 70%;
    padding: 10px 0px 10px 30px;
}

.history_6__time-txt .item-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* Timeline */

.timeline__outer {
    padding-left: 220px;
    border-bottom: 1px solid #C4C4C4;
    position: relative;
    z-index: 1;
}

.timeline__outer:last-child {
    border-bottom: none;
}

.timeline__title-year {
    position: absolute;
    left: 0;
    top: 79px;
    color: rgba(0, 42, 148, 0.90);
    font-family: Manrope;
    font-size: 92px;
    font-style: normal;
    font-weight: 800;
    line-height: 28.5px;
    /* 28.5% */
    letter-spacing: -5px;
}

.timeline {
    border-left: 4px solid rgb(0 42 148 / 40%);
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    position: relative;
    line-height: 1.4em;
    font-size: 1.03em;
    padding: 32px 0 32px 50px;
    list-style: none;
    text-align: left;
    font-weight: 100;
    /* max-width: 800px; */
}

.timeline h1,
.timeline h2,
.timeline h3 {
    font-family: unset !important;
    letter-spacing: 0.5px !important;
    position: absolute;
    left: -216px;
    top: -8px;
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.5px;
    /* 129.545% */
    background-color: var(--cnvs-themecolor);
    padding: 5px 16px;
}


.timeline * {
    color: #222;
    font-family: 'Noto Sans TC', 'Noto Sans SC', 'Noto Sans JP';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.6px;
    /* 170% */
    letter-spacing: 0.5px;
}

.timeline ul {
    list-style-type: disc;
}


.timeline .event {
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    min-height: 60px;
}

.timeline .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.timeline .event:before,
.timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .event:before {
    left: -217.5px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.5) !important;
    content: unset !important;
    text-align: right;
    font-weight: 100;
    font-size: 0.9em;
    min-width: 120px;
}

.timeline .event:after {
    left: -59.85px;
    background: #002A94;
    border-radius: 50%;
    height: 17px;
    width: 17px;
    content: "";
    top: 5px;
}

@media screen and (max-width: 767px) {
    .timeline__outer {
        padding-left: 0px;
    }

    .timeline {
        padding: 16px 0 32px 16px;
    }

    .timeline h1,
    .timeline h2,
    .timeline h3 {
        position: relative;
        top: auto;
        left: auto;
        padding: 5px 16px;
        margin-bottom: 16px;
    }

    .timeline .event:after {
        top: 12px;
        left: -27px;
    }
}

/* certificate */
.cer-item-wrap .cer-item .item-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0;
    letter-spacing: 1px;
}


/* index service */
.ser-title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.ser-text {
    margin: 24px 0;
}

.ser-padding {
    /* background-color: #F0F0F0; */
    padding: 130px 80px;
}

.more-button {
    margin: 0;
    padding: 8px 24px;
    background: transparent;
    border: 1px solid var(--cnvs-themecolor);
    color: var(--cnvs-themecolor);
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 1px;
}

.more-button:hover {
    color: var(--cnvs-themecolor);
    background: var(--cnvs-themesubcolor);
}

.en-slogan {
    position: absolute;
    bottom: 0;
    left: -105px;

    color: rgba(255, 255, 255, 0.8);
    font-family: "Albert Sans", "Noto Sans";
    font-size: 5.25vw;
    text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
    letter-spacing: 1px;
    margin: 0;
}

@media screen and (max-width: 1199px) {
    .ser-padding {
        padding: 80px 80px;
    }
}

@media screen and (max-width: 991px) {
    .ser-title {
        font-size: 30px;
    }    
}

@media screen and (max-width: 767px) {
    .ser-title {
        font-size: 24px;
    }

    .ser-padding {
        padding: 40px;
    }

    .en-slogan {
        bottom: auto;
        left: auto;
        top: calc(-10vw / 1.05);
        right: 20px;
        font-size: 10vw;
    }
}

/* service */
#ser-info .news-tag {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--cnvs-themecolor);
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease-out;
    margin-right: 12px;
    margin-bottom: 4px;
}

#ser-info .news-tag:hover {
    color: var(--cnvs-themesubcolor2);
}

#ser-info .news-tag::before {
    content: "";
    width: 2px;
    height: 18px;
    background-color: var(--cnvs-themesubcolor2);
    position: relative;
    margin-right: 12px;
}

#ser-info .news-title {
    font-size: 28px;
    line-height: 1.3;
    margin: 12px 0 24px;
}

#ser-info .owl-carousel .owl-dots .owl-dot {
    margin-top: 24px;
    margin-bottom: 24px;
    width: 30px;
    height: 5px;
    border-radius: 0;
    opacity: 1;
    background-color: var(--cnvs-themesubcolor);
    transition: all 0.3s;
}

#ser-info .owl-carousel .owl-dots .owl-dot:hover {
    background-color: var(--cnvs-themecolor);
}

#ser-info .owl-carousel .owl-dots .owl-dot.active {
    background-color: var(--cnvs-themesubcolor2);
}

@media only screen and (max-width: 768px) {
    #ser-info .news-title {
        font-size: 24px;
        line-height: 1.3;
        margin: 12px 0 24px;
    }
}


/* index news */
.entry-title .news-title {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 16px;
    height: 55px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entry-title .news-title a {
    transition: all 0.3s ease-out;
}

.news-img img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transition: all 0.3s ease-out;
}

.news-img:hover img {
    transform: scale(1.1);
}

.news .news-date {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease-out;
    margin: 0 12px 0 0;
}

.entry-meta.news .news-tag {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--cnvs-themecolor);
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease-out;
    margin-right: 12px;
}

.entry-meta.news .news-tag:hover {
    color: var(--cnvs-themesubcolor2);
}

.entry-meta.news .news-tag::before {
    content: "";
    width: 2px;
    height: 24px;
    background-color: var(--cnvs-themesubcolor2);
    position: relative;
    margin-right: 12px;
}

.owl-carousel .owl-dots .owl-dot {
    margin-top: 48px;
    width: 30px;
    height: 5px;
    border-radius: 0;
    opacity: 1;
    background-color: var(--cnvs-themesubcolor);
    transition: all 0.3s;
}

.owl-carousel .owl-dots .owl-dot.active {
    background-color: var(--cnvs-themesubcolor2);
}

.owl-carousel .owl-dots .owl-dot:hover {
    background-color: var(--cnvs-themecolor);
}

/* news */
/* news page */
/*======== 產品側欄選單 ========*/
.pdt_sidebar-item {
    border: 2px solid #f3f3f3;
    background-color: #fdfdfd;
    margin-bottom: 40px;
    padding: 32px 24px;
}

.pdt_sidebar-title {
    color: var(--cnvs-themecolor);
    font-size: 20px;
    font-weight: 600;
}

.pdt_sidebar-title a {
    color: var(--cnvs-themesubcolor);
}

.pdt_sidebar-item .small-title {
    color: var(--color-text);
    font-size: var(--font-text);
    line-height: 1;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.pdt_category-sub-menu ul li {
    position: relative;
    list-style-type: none;
    margin-bottom: 0.5rem;
}

.pdt_category-sub-menu ul li a {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    display: block;
    line-height: 1.5;
    margin: 0;
    padding: 0.5rem 1rem;
    position: relative;
    text-transform: capitalize;
    width: 100%;
    border: 1px solid var(--cnvs-contrast-200);
    background-color: var(--bs-white);
    transition: all 0.3s ease-out;
}

.pdt_category-sub-menu ul.sub-menu-list li a {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    display: block;
    line-height: 1.5;
    margin: 0;
    padding: 0.5rem 1rem;
    position: relative;
    text-transform: capitalize;
    width: 100%;
    border: 1px solid var(--cnvs-contrast-200);
    background-color: var(--bs-white);
}

.pdt_category-sub-menu ul li.active .collapse-icons i,
.pdt_category-sub-menu ul li.active .collapse-icons i:after {
    background-color: var(--bs-white);
}

.pdt_category-sub-menu ul li a:hover,
.pdt_category-sub-menu ul li a:hover .collapse-icons>i,
.pdt_category-sub-menu ul li a:hover .collapse-icons>i:after {
    background-color: rgb(var(--cnvs-themesubcolor-rgb));
    color: var(--bs-black);
}

.pdt_category-sub-menu ul li.active>a {
    background-color: var(--cnvs-themecolor);
    color: var(--bs-white);
}

.pdt_category-sub-menu ul li.active a:hover>.collapse-icons i,
.pdt_category-sub-menu ul li.active a:hover>.collapse-icons i:after {
    background-color: var(--bs-white);
}

.pdt_category-sub-menu ul li a:hover>.collapse-icons i,
.pdt_category-sub-menu ul li a:hover .collapse-icons>i:after {
    background-color: var(--bs-white);
}

.pdt_category-sub-menu ul li .collapse-icons {
    display: inline-block;
    position: relative;
    width: 20px;
    line-height: 30px;
}

.pdt_category-sub-menu ul li a:not(.collapsed) .collapse-icons i:after {
    height: 0;
}

.pdt_category-sub-menu ul li .collapse-icons i {
    position: absolute;
    background-color: #707070;
    height: 1px;
    top: 50%;
    left: 50%;
    width: 10px;
    transform: translateX(-50%);
}

.pdt_category-sub-menu ul li .collapse-icons i:after,
.pdt_category-sub-menu ul li a span.collapse-icons i:after {
    background-color: #707070;
    content: "";
    position: absolute;
    height: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    width: 1px;
}

.pdt_category-sub-menu ul li .collapse-icons:hover i {
    background-color: var(--cnvs-themecolor);
}

.pdt_category-sub-menu ul li .collapse-icons:hover i:after {
    background-color: var(--cnvs-themecolor);
}

.pdt_category-sub-menu ul {
    margin-bottom: 24px;
}

.pdt_category-sub-menu ul li ul {
    margin-left: 8px;
}

.table-responsive .slide-hint-wrap {
    display: none;
}

.news_side-content .pdt-tag {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 8px;
}

.news_side-content .pdt-tag span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_side-content .news-tag {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--cnvs-themecolor);
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease-out;
    margin-right: 12px;
    margin-top: 4px;
    border-left: 1px solid var(--cnvs-themesubcolor2);
    padding-left: 8px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news_side-content .news-tag:hover {
    color: var(--cnvs-themesubcolor2);
}

/* .news_side-content .news-tag::before {
    content: "";
    width: 2px;
    height: 16px;
    background-color: var(--cnvs-themesubcolor2);
    position: relative;
    margin-right: 9px;
} */

#news-info .news-tag {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--cnvs-themecolor);
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease-out;
    margin-right: 12px;
    margin-bottom: 4px;
}

#news-info .news-tag:hover {
    color: var(--cnvs-themesubcolor2);
}

#news-info .news-tag::before {
    content: "";
    width: 2px;
    height: 24px;
    background-color: var(--cnvs-themesubcolor2);
    position: relative;
    margin-right: 12px;
}

#news-info .news-title {
    font-size: 28px;
    line-height: 1.3;
    margin: 12px 0 24px;
}

.nodata {
    border: 1px solid var(--cnvs-themecolor);
    color: var(--cnvs-themecolor);
    letter-spacing: 1px;
}

.sidebar-wrap {
    top: 110px;
}

.news_widget-item {
    border: 2px solid #f3f3f3;
    background-color: #fdfdfd;
    margin-bottom: 40px;
    padding: 32px 24px;
}

.news_widget-item.news_widget-item--search {
    border: none;
    background-color: transparent;
    padding: 0;
}

@media only screen and (max-width: 1199px) {
    .news_widget-item {
        margin-bottom: 30px;
        padding: 23px 16px 26px;
    }
}

@media only screen and (max-width: 991px) {
    .news_widget-item {
        margin-top: 30px;
    }

    .news_widget-item.news_widget-item--search {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 768px) {
    #news-info .news-title {
        font-size: 24px;
        line-height: 1.3;
        margin: 12px 0 24px;
    }
}

.news_widget-title {
    color: var(--cnvs-themecolor);
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 20px;
}

.news_form-input-item {
    position: relative;
}

.news_form-input-item input {
    border: 1px solid #f3f3f3;
    background-color: #fdfdfd;
    color: #000;
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    padding: 10px 70px 10px 19px;
    width: 100%;
}

.news_form-input-item input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #919090;
}

.news_form-input-item input::-moz-placeholder {
    /* Firefox 19+ */
    color: #919090;
}

.news_form-input-item input:-ms-input-placeholder {
    /* IE 10+ */
    color: #919090;
}

.news_form-input-item input:-moz-placeholder {
    /* Firefox 18- */
    color: #919090;
}

.news_btn-src {
    border: none;
    background-color: var(--cnvs-themecolor);
    color: var(--bs-white);
    font-size: 18px;
    position: absolute;
    padding: 9px 20px;
    height: 100%;
    top: 0;
    right: 0;
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
}

.news_btn-src:hover {
    background-color: var(--cnvs-themesubcolor);
    color: var(--bs-white);
}

.news_widget-categories ul {
    margin: 0;
}

.news_widget-categories ul li {
    list-style: none;
    border: 1px solid #f3f3f3;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 0;
    height: 48px;
    line-height: 48px;
    padding: 0 19px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.news_widget-categories ul li.active {
    color: var(--bs-white);
    background-color: var(--cnvs-themecolor);
}

.news_widget-categories ul li.active a,
.news_widget-categories ul li.active span {
    color: var(--bs-white);
}

.news_widget-categories ul li:last-child {
    margin-bottom: 0;
}

.news_widget-categories ul li a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #494949;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    font-size: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.news_widget-categories ul li a span {
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.news_widget-categories ul li:not(.active):hover {
    color: var(--bs-white);
    background-color: var(--cnvs-themehovercolor);
}

.news_widget-categories ul li:not(.active):hover a {
    color: var(--bs-white);
}

.news_widget-categories ul li:not(.active):hover a span {
    color: var(--bs-black);
}


.news_widget-body {
    margin-top: 30px;
}


.news_widget-blog-post {
    border-bottom: 1px solid #f3f3f3;
    margin-bottom: 20px;
    padding-bottom: 22px;
}

.news_widget-blog-post:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news_widget-blog-post ul {
    margin: 0;
}

.news_widget-blog-post ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.news_side-thumb {
    margin-right: 16px;
    width: 120px;
}

.news_side-thumb a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #DDD;
}

.news_side-thumb a.pdt {
    aspect-ratio: 4 / 3;
}

.news_side-thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.news_side-thumb a:hover img {
    transform: scale(1.05);
}

.news_side-content {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: calc(100% - 136px);
    margin-top: -7px;
}

.news_side-content .news-date {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
}

.news_side-content h3 {
    color: var(--cnvs-themecolor);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

.news_side-content h3 a {
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease-out;
}

.news_side-content h3 a:hover {
    color: var(--cnvs-themecolor);
}

.news-hr {
    color: rgb(var(--cnvs-themecolor-rgb), .25);
    opacity: 1;
}

@media only screen and (max-width: 576px) {
    .news-share-wrap [class*=border-] {
        border: 0 !important;
    }

    .news-share-wrap a {
        display: inline-block;
        font-size: 24px;
        margin: 0 8px;
    }

    .news-share-wrap a[title="Facebook"] {
        font-size: 26px;
    }
}

/* pagination */
.pagination .pagination li {
    margin-right: 5px;
}

.pagination .pagination li a {
    background-color: rgba(var(--cnvs-themesubcolor-rgb), 0.2);
    border: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.2);
    color: var(--bs-black);
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    height: 36px;
    line-height: 35px;
    padding: 0;
    text-align: center;
    vertical-align: top;
    width: 36px;
    transition: all 0.3s ease-out;
}

.pagination .pagination li a.active {
    color: var(--bs-white);
    background-color: var(--cnvs-themecolor);
}

.pagination .pagination li a:hover {
    background-color: var(--cnvs-themesubcolor);
}

.pagination .pagination li i {
    font-size: 15px;
    font-weight: 700;
}

.pagination .pagination li:last-child {
    margin-right: 5px;
}


/* index album */
#album h3 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0;
    height: 53px;
}

#album .portfolio-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: all 0.3s ease-out;
}

#album .portfolio-image:hover img {
    transform: scale(1.1);
}

#album .album-tag {
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 1px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease-out;
}

#album .album-tag:hover {
    color: var(--cnvs-themecolor);
}

/* album */
#album-list .news-img img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: all 0.3s ease-out;
}

#album-list .album-title {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 16px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#album-list .album-title a {
    transition: all 0.3s ease-out;
}

#album-list .album-tag {
    font-size: 18px;
    line-height: 1.3;
    color: #000;
    transition: all 0.3s ease-out;
}

#album-info .album-title {
    font-size: 28px;
    line-height: 1.3;
    color: #000;
}

#album-info .album-tag {
    font-size: 18px;
    line-height: 1.3;
    color: #000;
    padding-right: 8px;
    margin-right: 8px;
    border-right: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.5);
    transition: all 0.3s ease-out;
}

#album-info .album-tag:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

#album-list .album-tag:hover,
#album-info .album-tag:hover {
    color: var(--cnvs-themecolor);
}

#album-side .news_side-thumb a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: #DDD;
}

#album-side .album-tag {
    font-size: 14px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.separator-line {
    width: 100%;
    height: 1px;
    background-color: var(--cnvs-themecolor);
    margin: 16px 0;
}

#album-info .album-photo a img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: all 0.3s ease-out;
}

#album-info .album-photo a:hover img {
    transform: scale(1.1);
}

#album-info .album-photo-title {
    margin: 8px 0 0;
    font-size: 18px;
    text-align: center;
    line-height: 1.3;
    color: #000;
}

@media screen and (max-width: 767px) {
    #album-info .album-title {
        font-size: 24px;
    }
}



/* index contact */
.contact-img-bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.contact-img-bg {
    width: 100%;
    height: 250px;
}

.contact-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-button {
    margin: 0;
    padding: 8px 32px;
    background: transparent;
    border: 1px solid var(--cnvs-themecolor);
    color: var(--cnvs-themecolor);
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 1px;
}

.contact-button:hover {
    color: var(--cnvs-themecolor);
    background: var(--cnvs-themesubcolor);
}

/* contact */
.word-break {
    word-break: break-all;
}

#contact_page .contact-block {
    position: relative;
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

#contact_page .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cnvs-themecolor);
    color: var(--cnvs-themecolor);
    width: 64px;
    height: 60px;
    font-size: 24px;
    transition: all .3s ease-out;
}

#contact_page .contact-info {
    width: calc(100% - 64px);
}

#contact_page .contact-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    color: #000;
    transition: all .3s ease-out;
}

#contact_page .contact-link {
    margin-bottom: 0;
    color: #000;
    transition: all .3s ease-out;
}

#contact_page .contact-link:hover {
    color: var(--cnvs-themecolor);
}

#contact_page .contact-block:hover .contact-icon {
    background-color: var(--cnvs-themesubcolor);
}

#contact_page .contact-block:hover .contact-title,
#contact_page .contact-block:hover .contact-link {
    color: var(--cnvs-themecolor);
}

/* contact form */
.contact-form .form-group {
    position: relative;
    min-height: 70px;
    padding: 0 0 10px;
    margin: 0;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    -webkit-transition: border 0.5s;
    transition: border 0.5s;
    /* color: #848484; */
    /* background-color: rgba(var(--cnvs-themesubcolor-rgb), 0.1); */
    border: 1px solid var(--cnvs-themesubcolor);
    padding: 0 20px;
    -webkit-border-radius: 0;
    border-radius: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    line-height: 55px;
}

.contact-form .form-group input:not(.form-check-input):focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    background-color: #FFF;
    border-color: var(--cnvs-themecolor);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder,
.contact-form .form-group select::placeholder {
    color: #848484;
}

.form-check-input:checked {
    background-color: var(--cnvs-themecolor);
}

.contact-form .form-group textarea.message {
    height: 200px;
    margin-bottom: -6px;
}

.contact-form .form-group textarea.tips {
    height: 60px;
    margin-bottom: -6px;
}

.contact-form .form-group select.classic {
    margin: 0;
    min-height: 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    display: inline-block;
    font: inherit;
    background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%), linear-gradient(to right, #E9E9E9, #E9E9E9);
    background-position: calc(100% - 29px) calc(1em + 12px), calc(100% - 21px) calc(1em + 12px), 100% 0;
    background-size: 8px 8px, 8px 8px, 60px 60px;
    background-repeat: no-repeat;
}

.contact-form .form-group .form-check-input {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid var(--cnvs-themecolor);
}

.captcha-area__inner {
    display: inline-block;
}

.captcha-area__inner img {
    height: 40px;
    margin: 10px 0;
}


/* footer */
#footer {
    --cnvs-footer-top-border: 2px solid #EEE;
    --cnvs-copyrights-link-color: var(--cnvs-contrast-500);
    position: relative;
    background-color: var(--cnvs-footer-bg);
    border-top: var(--cnvs-footer-top-border);
}

#footer .footer-logo {
    width: auto;
    max-height: 40px;
    aspect-ratio: 372 / 50;
}

#footer .footer-widgets-wrap {
    padding: 40px 0;
}

#footer .footer-title {
    font-size: 20px;
    line-height: 1.75;
    font-weight: 700;
    margin-bottom: 24px;
}

#footer .footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
}

@media screen and (max-width: 991px) {
    #footer .footer-menu {
        padding-top: 0;
    }
}

#footer .footer-menu-item {
    width: calc(100% / 3 - 16px);
    text-align: center;
    border: 1px solid var(--cnvs-themecolor);
    font-size: 18px;
    color: var(--cnvs-themecolor);
    line-height: 1.3;
    letter-spacing: 1px;
    transition: all 0.3s ease-out;
}

#footer .footer-menu-item a {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    #footer .footer-menu-item {
        width: calc(100% / 2 - 16px);
    }
}

#footer .footer-menu-item:hover {
    background-color: var(--cnvs-themesubcolor);
}

#footer .h1-txt {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-align: justify;
}

#copyrights {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 1px;
    color: #FFF;
}

#copyrights a {
    color: #FFF;
    transition: all 0.3s ease-out;
}

#copyrights a:hover {
    color: var(--cnvs-themesubcolor);
}

/* cookie */
.cookie_cse {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 1000;
	background-color: rgba(var(--bs-white), 0.4);
}

.cookie_cse .cookie-info {
	position: absolute;
	width: 100%;
	bottom: 0;
	background-color: var(--cnvs-themecolor);
}

.cookie_cse .cookie-info .container-fluid {
	margin: 0 auto;
	padding: 32px 24px;
	width: 80%;
}

.cookie_cse .cookie-info .align-center {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cookie_cse .cookie-info .tx {
	padding-right: 30px;
}

.cookie_cse .cookie-info .tx p {
	color: #FFF;
	line-height: 1.5;
	margin-bottom: 0;
}

.cookie_cse .cookie-info .tx p a {
	color: #FFF;
}

.cookie_cse .cookie-info .tx p a:hover {
	color: #FFD700;
}

.cookie_cse .btn-cookie {
	margin-left: 0;
	margin-top: 10px;
	min-width: fit-content;
}

.cookie_cse .btn-cookie .btn-all {
	background-color: var(--cnvs-themesubcolor);
	color: var(--cnvs-themecolor);
	padding: 8px 32px;
	letter-spacing: 1px;
	font-weight: 400;
	font-size: 16px;
    border-radius: 0;
}

.cookie_cse .btn-cookie .btn-all:hover {
	background-color: var(--cnvs-themesubcolor2);
	color: #FFF;
    border-color: transparent;
}

@media(max-width: 1024px) {
	.grid.info .col-4 {
		float: none;
		display: block;
		margin-right: auto;
		margin-left: auto;
		width: 100%;
		margin-bottom: 6%;
		min-width: 200px;
	}
}

@media(max-width: 1299px) {
	.cookie_cse .cookie-info .container-fluid {
		margin: 0 auto;
		padding: 20px;
		width: 100%;
	}

	.cookie_cse .cookie-info .tx p {
		font-size: 18px;
	}
}

@media(max-width: 991px) {
	.cookie_cse .cookie-info .align-center {
		display: block;
	}

	.cookie_cse .cookie-info .tx {
		padding-right: 0px;
	}

	.cookie_cse .cookie-info .tx p {
		line-height: 30px;
	}

	.cookie_cse .btn-cookie {
		display: flex;
		justify-content: flex-end;
	}

	.cookie_cse .btn-cookie .btn-all {
		background-color: var(--cnvs-themesubcolor);
		color: var(--cnvs-themecolor);
		padding: 8px 32px;
		letter-spacing: 1px;
		font-weight: 400;
		font-size: 16px;
        border-radius: 0;
	}

    .cookie_cse .cookie-info .tx p {
		font-size: 16px;
	}
}