@charset "UTF-8";
/* =========================================================================

==base
==header
==banner
==intro
==product
==news
==contact
==footer
==breadcrumb + pagination
==privacy
==RWD

========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

/* =========================================================================
==base
========================================================================= */
:root {
	--fs-BNTitle: 50px;
	--fs-BNTxt: 23px;
	--fs-sectionTitle: 40px;
	--fs-infoTitle: 36px;
	--fs-date: 32px;
	--fs-sidebarTitle: 24px;
	--fs-itemTitle: 24px;
	--fs-footerTitle: 25px;
	--fs-headerNav: 22px;
	--fs-normal: 18px;
	--fs-small: 14px;
	--fs-20: 20px;
	--fs-30: 30px;

	--section: 80px;

	--cnvs-themecolor: #13577d;
	--cnvs-themecolor-rgb: 19, 87, 125;
	--cnvs-lightblue: #7EB2CC;
	--cnvs-deepblue: #062A3D;
	--cnvs-bgblue: #EAF4FA;
}

/* ================= base ================= */
body,
.form-control {
	word-break: break-word;
	letter-spacing: 1px;
	line-height: 1.75;
	font-weight: 400;
	font-family: "Noto Sans TC", sans-serif;
	color: var(--cnvs-deepblue);
	font-size: var(--fs-normal);
}

.form-control::placeholder {
	color: var(--cnvs-contrast-600);
}

p:last-child,
ul:last-child,
ol:last-child,
li:last-child,
form:last-child,
.form-control:last-child {
	margin-bottom: 0;
}

a {
	color: var(--cnvs-deepblue);
	transition: .3s ease;
}

a:hover {
	color: var(--cnvs-themecolor);
}

button {
	transition: .3s ease;
}

/* ================= ellipsis ================= */
.one-row { 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.two-row { 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.three-row { 
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

@media (min-width:768px) {
	.three-md-row {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}
}

/* ==================== btn ==================== */
.btn-base {
	display: inline-block;
	color: var(--cnvs-white);
	background-color: var(--cnvs-lightblue);
	font-size: var(--fs-20);
	font-weight: 500;
	padding: 8px 32px;
	border-radius: 4px;
	transition: .3s ease;
}

.btn-base:hover {
	color: var(--cnvs-white);
	background-color: var(--cnvs-themecolor);
}

/* ==================== title ==================== */
.section-title {
	font-size: var(--fs-sectionTitle);
	color: var(--cnvs-black);
}

.section-title.white {
	color: var(--cnvs-white);
}

.section-title:after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background-color: var(--cnvs-themecolor);
	margin: 24px auto 0;
}

.section-title.text-white:after {
	background-color: var(--cnvs-white);
}

.section-title.white:after {
	background-color: var(--cnvs-white);
}
	
.item-title {
	font-size: var(--fs-itemTitle);
	color: var(--cnvs-black);
	line-height: 1.3;
	font-weight: 600;
}

.footer-title {
	font-size: var(--fs-footerTitle);
}

.sidebar-title {
	font-size: var(--fs-footerTitle);
	color: var(--cnvs-black);
}

.info-title {
	font-size: var(--fs-infoTitle);
	color: var(--cnvs-black);
}

/* ==================== other ==================== */
.section {
	background-color: transparent;
	padding: var(--section) 0;
	margin: 0;
}

.text-justify {
	text-align: justify !important;
}

.fs-normal {
	font-size: var(--fs-normal) !important;
}

.fs-20 {
	font-size: var(--fs-20) !important;
}

.fs-30 {
	font-size: var(--fs-30) !important;
}

.h-text-decoration-none:hover,
.h-text-decoration-none:active {
	text-decoration: none !important;
}

.h-color:hover,
.h-color:active {
	color: var(--cnvs-themecolor) !important;
}

.color-lightblue,
.h-color-lightblue:hover,
.h-color-lightblue:active  {
	color: var(--cnvs-lightblue) !important;
}

.color-gray {
	color: #4E4E4E !important;
}

.bg-blue {
	background: var(--cnvs-bgblue) !important;
}

.bg-lightblue,
.h-bg-lightblue:hover,
.h-bg-lightblue:active {
	background-color: var(--cnvs-lightblue) !important;
}

.h-bg-white:hover,
.h-bg-white:active {
	background: var(--cnvs-white) !important;
}

.section-bgdeco {
	background: url('../images/introbg_1435x1295_reverse.png') no-repeat right top / 640px;
	background-attachment: fixed;
}

/* =========================================================================
==header
========================================================================= */
@media (min-width:1400px) {
	.is-expanded-menu.stretched .full-header #header-wrap > .container.header-container {
		max-width: 1400px;
	}	
}

#header {
	--cnvs-header-height-md: 90px;
}

/* ==================== nav ==================== */
.menu-link,
.sub-menu-container .menu-item > .menu-link {
	color: var(--cnvs-themecolor);
	font-size: var(--fs-headerNav);
	font-weight: 600;
}

.is-expanded-menu .menu-link {
	padding: 44px 12px;
}

.is-expanded-menu #header.sticky-header-shrink .menu-link {
	padding: 30px 12px;
}

.is-expanded-menu .sub-menu-container .menu-item > .menu-link,
.is-expanded-menu #header.sticky-header-shrink .sub-menu-container .menu-item > .menu-link {
	padding: 15px;
}

header:not(.sticky-header) .menu-link,
header:not(.sticky-header) .header-misc-icon > a,
header:not(.sticky-header) .lang-wrap a {
	color: var(--cnvs-white);
}

.lang-wrap a {
	display: block;
}

.menu-item:hover > .menu-link,
.lang-wrap a:hover {
	color: var(--cnvs-lightblue);
}

/* ==================== func ==================== */
.header-misc-icon > a,
.lang-wrap a {
	color: var(--cnvs-themecolor);
}

.lang-wrap a {
	padding: 0 12px;
}

.header-misc-icon {
	margin: 0 12px;
}

.header-misc-icon > a {
	font-size: var(--fs-20);
}

.top-search-form input {
	font-size: var(--fs-headerNav);
}

.top-search-form input::placeholder {
	color: var(--cnvs-contrast-400);
}

/* ==================== logo ==================== */
.logo-dark {
	display: none;
}

.sticky-header #logo a .logo-dark {
	display: flex;
}

.sticky-header #logo a .logo-default {
	display: none;
}

/* =========================================================================
==banner
========================================================================= */
#slider {
	aspect-ratio: 2000 / 1125;
}

.swiper-slide-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
}

.banner-title {
	font-size: var(--fs-BNTitle);
	font-weight: 600;
	line-height: 1.3;
	color: var(--cnvs-white);
	margin-bottom: 0;
}

.banner-txt,
.slider-caption p {
	font-size: var(--fs-BNTxt);
	font-weight: 400;
	color: var(--cnvs-white);
	margin-bottom: 0;
}

/* =========================================================================
==intro
========================================================================= */
.intro-txt {
	background: rgba(232, 243, 249, 0.90);
}

/* ==================== info ==================== */
.intro-info-1 > img:first-child {
	max-width: 800px;
}

.intro-info-1 > img:nth-child(2) {
	max-width: 550px;
}

/* ==================== history ==================== */
.timeline-box {
	border-right: 2px solid var(--cnvs-lightblue);
	width: 50%;
}

.timeline-box:first-child {
	padding-top: 0;
}

.timeline-box:nth-child(even) {
	flex-direction: row-reverse;
	margin-left: calc(50% - 2px);
	border-left: 2px solid var(--cnvs-lightblue);
	border-right: none;
}

.timeline-card__wrap {
	margin-right: 10px;
}

.timeline-box:nth-child(even) .timeline-card__wrap {
	margin-right: 0px;
	margin-left: 10px;
}

.timeline-year {
	font-size: var(--fs-BNTitle);
	color: var(--cnvs-lightblue);
	-webkit-text-stroke: 1px var(--cnvs-lightblue);
	color: transparent;
	text-align: right;
}

.timeline-box:nth-child(even) .timeline-year {
	text-align: left;
}

.timeline-card__txt::before {
	content: "";
	border-radius: 8px;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: rgba(126, 178, 204, 0.3)
}

.timeline-box:nth-child(even) .timeline-card__txt::before {
	left: initial;
	right: -20px;
}

.timeline-card__inner {
	border: 1px solid var(--cnvs-lightblue);
}

.timeline-card__wrap .item-title {
	border-bottom: 2px solid var(--cnvs-lightblue);
}

/* 線圈 */
.timeline-decor {
	display: flex;
	align-items: center;
	margin-right: -9px;
	position: relative;
	top: 60px;
}

.timeline-box:nth-child(even) .timeline-decor {
	margin-left: -9px;
	margin-right: 0;
}

.timeline-decor .d-circle {
	width: 16px;
	height: 16px;
}

.timeline-decor .d-line {
	width: 50px;
	height: 2px;
}

/* ==================== concept ==================== */
.intro-concept::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	pointer-events: none;
}

.intro-concept .border-box {
	border-bottom: 6px solid var(--cnvs-lightblue);
}

/* ==================== certificate ==================== */
.cert-wrap img {
	display: block;
	border-top: 6px solid var(--cnvs-themecolor);;
}

/* ==================== service ==================== */
.service-img-wrap {
	padding: 0 0 32px 32px;
}

.service-img-wrap:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(100% - 32px);
	height: calc(100% - 32px);
	background-color: rgba(19, 87, 125, 0.5);
	border-radius: 6px;
	z-index: -1;
}

.service-txt .item-title {
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-decoration-thickness: 6px;
	text-decoration-color: rgba(126, 178, 204, .3);
	text-underline-offset: 1px;
}

.service-txt ul {
	padding-left: 40px;
}

/* =========================================================================
==product
========================================================================= */
.pd-item .img-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pd-item .img-wrap img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: .3s ease;
}

.pd-item:hover .img-wrap img {
	transform: scale(1.05);
}

.pd-item:hover .item-title {
	color: var(--cnvs-lightblue) !important;
}

.owl-carousel .owl-nav [class*=owl-] {
	color: var(--cnvs-themecolor);
	border: 1px solid var(--cnvs-themecolor);
}

.owl-carousel .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	border: 1px solid var(--cnvs-white);
	opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
	background-color: var(--cnvs-white);
}

/* ==================== sidebar ==================== */
.product-cate-wrap .toggle .toggle-header {
	transition: .3s ease-in-out;
}

.product-cate-wrap .toggle:hover .toggle-header {
	background-color: rgba(var(--cnvs-themecolor-rgb),.2);
	color: var(--cnvs-themecolor);
}

.product-cate-wrap .toggle.active .toggle-header {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
}

.product-cate-wrap .toggle.active .toggle-header .toggle-title {
	color: var(--cnvs-white);
}

.product-cate-wrap .toggle.active .toggle-content {
	padding-top: 8px !important;
}

.product-cate-wrap .toggle-content li.active .product-page-link {
	color: var(--cnvs-themecolor);
}

.product-cate-wrap .toggle-title {
	width: 80%;
}

.product-cate-wrap .product-page-link {
	display: block;
	padding: 8px 16px;
	font-size: var(--fs-normal);
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 16px;
}

.product-cate-wrap .toggle-content .product-page-link:hover,
.product-cate-wrap .toggle-content .product-page-link:active {
	color: var(--cnvs-lightblue);
}

.product-cate-wrap .toggle-icon {
	font-size: 20px;
	transform: translateY(2px);
	width: 20%;
	text-align: right;
}

.product-page-link i {
	font-size: 12px;
	transform: translateY(4px);
}

/* ==================== info img ==================== */
.info-cotent-wrap .proudctInfoBig .swiper-slide {
	border: 1px solid rgba(var(--cnvs-themecolor-rgb),.3);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.info-cotent-wrap .proudctInfoBig .swiper-slide img {
	object-fit: contain;
	height: 100%;
}

.info-cotent-wrap .proudctInfoSm .swiper-slide {
	border: 1px solid #DDD;
	padding: 8px;
	margin-top: 24px;
	aspect-ratio: 1 / 1;
	cursor: pointer;
}

.info-cotent-wrap .proudctInfoSm .swiper-slide.swiper-slide-thumb-active {
	border: 1px solid var(--cnvs-themecolor);
}

.info-cotent-wrap .proudctInfoSm .swiper-slide img {
	opacity: 0.6;
	object-fit: contain;
	height: 100%;
}

.info-cotent-wrap .proudctInfoSm .swiper-slide.swiper-slide-thumb-active img {
	opacity: 1;
}

.info-cotent-wrap .proudctInfoSm .swiper-slide.swiper-slide-thumb-active:after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: calc(50% - .5em);
	top: -.5em;
	border-top: 0;
	border-right: .5em solid transparent;
	border-bottom: .5em solid var(--cnvs-themecolor);
	border-left: .5em solid transparent;
}

/* ==================== info img arrow ==================== */
[class*=swiper-button-] {
	width: 36px;
	height: 36px;
	transform: translateY(-50%);
	margin-top: -35px;
	opacity: 0;
	background-color: var(--cnvs-white);
	border: 1px solid var(--cnvs-themecolor);
	color: var(--cnvs-themecolor);
}

[class*=swiper-button-]:after {
	display: none;
}

[class*=swiper-button-]:hover {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
}

.swiper-button-prev {
	left: -16px;
	right: auto;
	transition: .3s ease;
}

.swiper-button-next {
	right: -16px;
	left: auto;
	transition: .3s ease;
}

@media (min-width: 576px) {
	.swiper-slider-wrap > .swiper {
		padding-right: 1px;
	}
}	

.swiper-slider-wrap:hover [class*=swiper-button-] {
	opacity: 1;
}

.swiper-slider-wrap:hover .swiper-button-prev {
	left: -6px;
	right: auto;
}

.swiper-slider-wrap:hover .swiper-button-next {
	right: -6px;
	left: auto;
}

/* =========================================================================
==news
========================================================================= */
.tag {
	padding: 0 12px;
}

.news-title-color {
	color: var(--cnvs-deepblue);
}

.news-item .main-wrap {
	padding: 12px 24px;
	border-right: 3px solid var(--cnvs-lightblue);
	border-left: 3px solid var(--cnvs-lightblue);
	background: var(--cnvs-bgblue);
}

.news-item .item-title {
	font-size: var(--fs-20);
	line-height: 1.57;
}

.news-item .info-wrap {
	font-size: var(--fs-date);
}

.news-item .info-wrap .line {
	height: 1px;
	width: 100%;
	background-color: var(--cnvs-white);
}

/* ==================== sidebar ==================== */
.sidebar-wrap {
  top: 119px;
}

.news_1__sidebar-area::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(126 ,178, 204, 0.3);
}

.news_1__widget-title::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, rgba(28,151,177,1), rgba(255,255,255,0.2));
}

.news_1__widget-categories:not(.product-cate-wrap) li a:hover,
.news_1__widget-categories:not(.product-cate-wrap) li a:active {
  color: var(--cnvs-themecolor);
	background-color: var(--cnvs-bgblue);
}

.news_1__widget-categories:not(.product-cate-wrap) li.active a {
	color: var(--cnvs-white);
	background-color: var(--cnvs-themecolor);
}

.news_1__widget-categories ul li i {
  font-size: 12px;
}

.news-info-img-wrap .news-item .info-wrap {
	padding: 16px;
}

/* =========================================================================
==contact
========================================================================= */
.index-contact-section > img:first-child {
	right: 33%;
}

.index-contact-section > img:nth-child(2) {
	left: 33%;
}

/* ================= info ================= */
.contact-info {
	margin-bottom: -16px;
}

.contact-info li > * {
	background-color: rgba(126, 178, 204, .2);
	word-break: break-word;
}

.contact-info li a:hover,
.contact-info li a:active {
	transform: translateY(-4px);
}

/* ---------- form ---------- */
.contact-link {
	color: var(--cnvs-themecolor);
}

.contact-link:hover,
.contact-link:active {
	color: var(--cnvs-lightblue);
}

.form-check-input[type=checkbox] {
	transform: translateY(1px);
}

/* ---------- sending ---------- */
.sending {
	top: 100%;
}

/* ---------- img ---------- */
.contact-deco-img {
	bottom: 100%;
	width: 45%;
}

/* ---------- map ---------- */
.contact-map iframe {
	height: 450px;
}

/* =========================================================================
==footer
========================================================================= */
#footer .footer-widgets-wrap {
	padding: calc(var(--section) / 2) 0;
}

/* ==================== logo ==================== */
.footer-logo {
	width: 98px;
}

/* ==================== sns ==================== */
.sns-icon-wrap {
	gap: 10px;
}

.sns-icon {
	width: 30px;
	height: 30px;
}

/* ==================== website map ==================== */
.widget-link {
	width: 145px;
}

/* ==================== go to top ==================== */
#gotoTop,
.float-sns-wrap .sns-icon {
	width: 42px;
	height: 42px;
}

/* ==================== float sns ==================== */
.float-sns-wrap {
	right: 30px;
	bottom: calc(50px + 42px + 8px); /* gotop bottom + item width + gap */
	z-index: 599;
}

.float-sns-wrap .sns-icon {
	font-size: var(--fs-itemTitle);
}

/* =========================================================================
==breadcrumb + pagination
========================================================================= */
.breadcrumb-wrap {
	padding-top: 200px;
}

.breadcrumb-title {
	font-size: var(--fs-sectionTitle);
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 1px;
	flex-shrink: 0;
	margin-right: 48px;
}

.php_breadcrumb li:not(:last-child)::after {
	content: '/';
	display: inline-block;
	margin: 0 12px;
}

.breadcrumb-wrap,
.breadcrumb-wrap a {
	color: var(--cnvs-lightblue);
}

.breadcrumb-wrap a:hover,
.breadcrumb-wrap a:active {
	color: var(--cnvs-white);
}

/* ================= pagination ================= */
.page-item {
	margin: 0 4px;
}

.page-link {
	width: 44px;
	height: 44px;
	border: 1px solid var(--cnvs-lightblue);
	border-radius: 0 !important;
}

.page-link.arrow {
	background-color: transparent;
	color: var(--cnvs-themecolor);
}

.page-link:hover,
.page-link.arrow:hover {
	background-color: var(--cnvs-lightblue);
	border-color: var(--cnvs-lightblue);
	color: var(--cnvs-white);
}

.active > .page-link,
.page-link.arrow:active {
	background-color: var(--cnvs-themecolor);
	border-color: var(--cnvs-themecolor);
}

.page-link.arrow i {
	font-size: 12px;
}

/* =========================================================================
==privacy
========================================================================= */
.fbox-content .item-title {
	font-size: var(--fs-itemTitle);
	color: var(--cnvs-black);
	line-height: 1.3;
	font-weight: 600;
}

/* =========================================================================
==RWD
========================================================================= */
@media (max-width: 1399px) {
	/* ==================== header ==================== */
	#header {
    --cnvs-header-height-md: 75px;
	}
}

@media (max-width: 1199px) {
	/* ==================== base ==================== */
	.section-bgdeco {
		background: url('../images/introbg_1435x1295_reverse.png') no-repeat right top / 500px;
	}

	/* ==================== header ==================== */
	#logo a .logo-default {
		display: none;
	}

	#logo a .logo-dark {
		display: flex;
	}

	#header-wrap #logo img {
    height: 70px;
	}

	.cnvs-hamburger .cnvs-hamburger-inner,
	.cnvs-hamburger .cnvs-hamburger-inner::before,
	.cnvs-hamburger .cnvs-hamburger-inner::after {
		background-color: var(--cnvs-themecolor);
	}

	header:not(.sticky-header) .menu-link {
		color: var(--cnvs-themecolor);
	}

	header:not(.sticky-header) .lang-wrap a,
	header:not(.sticky-header) .header-misc-icon > a {
		color: var(--cnvs-themecolor);
	}

	.header-wrap-clone {
		height: 86px;
	}
	
	/* ==================== info ==================== */
	.news-info-img-wrap .news-item .info-wrap {
		--fs-20: 16px;
		--fs-date: 24px;
	}

	.news-info-img-wrap .news-item .info-wrap .fs-6 {
		font-size: 14px !important;
	}

	/* ==================== breadcrumb + pagintaion ==================== */
	.breadcrumb-wrap {
		padding-top: 180px;
	}
}

@media (max-width: 991px) {
	.wow {
		animation-name: none !important;
		visibility: visible !important;
		opacity: 1;
	}

	:root {
		--fs-BNTitle: 44px;
		--fs-BNTxt: 20px;
		--fs-sectionTitle: 36px;
		--fs-infoTitle: 32px;
		--fs-date: 28px;
		--fs-sidebarTitle: 22px;
		--fs-itemTitle: 22px;
		--fs-footerTitle: 23px;
		--fs-headerNav: 20px;
		--fs-20: 18px;
		--fs-30: 26px;
	
		--section: 60px;
	}

	.section-title:after {
		margin: 16px auto 0;
	}

	.section-bgdeco {
		background: none;
	}

	/* ==================== intro ==================== */
	.index-intro-section > img:nth-child(2) {
		opacity: 0.15;
	}

	/* history */
	.timeline-box {
		border-right: none;
		border-left: 2px solid var(--cnvs-lightblue);
		width: 100%;
		flex-direction: row-reverse;
	}

	.timeline-box:nth-child(even) {
		margin-left: 0;
	}

	.timeline-card__txt::before {
		left: initial;
		right: -20px;
	}

	.timeline-card__wrap {
		margin-left: 10px;
	}

	.timeline-box:nth-child(even) .timeline-card__wrap {
		margin-right: 10px;
	}

	.timeline-year {
		text-align: left;
	}

	.timeline-decor {
		margin-right: 0px;
		margin-left: -10px;
	}

	/* ==================== footer ==================== */
	.footer-logo {
		width: 90px;
	}

	.stretched #gotoTop,
	.float-sns-wrap {
		right: 20px;
	}

	/* ==================== breadcrumb + pagintaion ==================== */
	.breadcrumb-wrap {
		padding-top: 48px;
	}
}

@media (max-width: 767px) {
	/* ==================== header ==================== */
	#header-wrap #logo img {
		height: 60px;
	}
	
	.header-wrap-clone {
		height: 76px;
	}

	/* ==================== banner ==================== */
	.banner-txt,
	.slider-caption p {
		display: none;
	}

	/* ==================== news ==================== */
	.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;
	}
	
	.news-info-img-wrap .news-item .info-wrap {
		--fs-20: 14px;
		--fs-date: 20px;
		padding: 10px;
	}

	.news-info-img-wrap .news-item .info-wrap .fs-6 {
		font-size: 13px !important;
	}

	/* ==================== footer ==================== */
	.footer-logo {
		width: 80px;
	}

	/* ==================== breadcrumb + pagintaion ==================== */
	.breadcrumb-title {
		margin-right: 0;
	}
}

@media (max-width: 575px) {
	:root {
		--fs-BNTitle: 36px;
		--fs-sectionTitle: 34px;
		--fs-infoTitle: 28px;
		--fs-date: 26px;
		--fs-sidebarTitle: 20px;
		--fs-itemTitle: 20px;
		--fs-footerTitle: 22px;
		--fs-headerNav: 18px;
		--fs-30: 24px;
	
		--section: 40px;
	}

	/* ==================== header ==================== */
	#header-wrap #logo img {
		height: 48px;
	}

	.lang-wrap a {
		padding: 0 8px;
	}
	
	.header-misc-icon {
		margin: 0 8px;
	}

	.header-wrap-clone {
		height: 64px;
	}

	/* ==================== banner ==================== */
	.swiper-pagination {
		bottom: 12px !important;
	}

	/* ==================== intro ==================== */
	/* histroy */
	.timeline-decor .d-line {
		width: 20px;
	}

	/* ==================== contact ==================== */
	.form-check-input[type=checkbox] {
		transform: translateY(7px);
	}

	/* ==================== footer ==================== */
	.footer-logo {
		width: 70px;
	}

	/* ==================== breadcrumb + pagintaion ==================== */
	.page-link {
		width: 38px;
		height: 38px;
	}
}

@media (max-width: 375px) {
	/* ==================== intro ==================== */
	.timeline-decor {
		display: none;
	}

	.timeline-box {
		border-left: none;
	}

	.timeline-box:nth-child(even) {
		border-left: none;
	}
}