@charset "UTF-8";
/* =========================================================================

==base
==header
==banner
==intro
==product
==news
==contact
==footer
==breadcrumb + pagination
==RWD

========================================================================= */

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

/* =========================================================================
==base
========================================================================= */
:root {
	--fs-BNTitle: 54px;
	--fs-BNTxt: 24px;
	--fs-sectionTitle: 40px;
	--fs-infoTitle: 36px;
	--fs-sidebarTitle: 24px;
	--fs-itemTitle: 24px;
	--fs-footerTitle: 22px;
	--fs-headerNav: 20px;
	--fs-normal: 18px;
	--fs-small: 14px;

	--section: 80px;

	--cnvs-themecolor: #435290;
	--cnvs-themecolor-rgb: 67, 82, 144;
	--cnvs-lightblue: #5CA8BE;
	--cnvs-orange: #F59A49;
}

/* ================= 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-black);
	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-black);
	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-weight: 500;
	padding: 8px 32px;
	border-radius: 4px;
	transition: .3s ease;
}

.btn-base:hover {
	color: var(--cnvs-white);
	background-color: var(--cnvs-orange);
}

/* ==================== 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-lightblue);
	margin: 30px auto 0;
}

.section-title.white:after {
	background-color: var(--cnvs-white);
}	

@media (min-width: 992px) {
	.section-title.lg-left:after {
		margin: 30px 0 0;
	}
}
	
.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 ==================== */
@media (min-width: 1800px) {
	.container {
		max-width: 1760px;
	}
}

@media (min-width: 1520px) {
	.container.container-header {
		max-width: 1400px;
	}
}

.section {
	background-color: transparent;
	padding: var(--section) 0;
	margin: 0;
}

.color-lightblue {
	color: var(--cnvs-lightblue) !important;
}

.color-orange {
	color: var(--cnvs-orange) !important;
}

.h-color-orange:hover,
.h-color-orange:active {
	color: var(--cnvs-orange) !important;
}

.h-color-black:hover,
.h-color-black:active {
	color: var(--cnvs-black) !important;
}

.h-color-lightblue:hover,
.h-color-lightblue:active {
	color: var(--cnvs-lightblue) !important;
}

.h-bg-orange:hover,
.h-bg-orange:active {
	background-color: var(--cnvs-orange) !important;
}

.bg-lightblue {
	background-color: var(--cnvs-lightblue) !important;
}

/* =========================================================================
==header
========================================================================= */
#header {
	--cnvs-header-height-md: 95px;
}

.header-wrap-clone {
	height: 103px;
}

.top-search-open .top-search-parent .header-deco-wrap {
	opacity: 0;
}

.menu-link,
.sub-menu-container .menu-item > .menu-link,
.is-expanded-menu .sub-menu-container .menu-item > .menu-link {
	font-size: var(--fs-headerNav);
	font-weight: 500;
	line-height: 1.5;
}

.menu-item.sub-menu .menu-link > div {
	display: flex;
	align-items: center;
}

#header-wrap #logo img {
	height: 90px;
}

/* ==================== search ==================== */
.header-misc-icon > a {
	font-size: calc(var(--fs-headerNav) + 1px);
}

.top-search-form input {
	font-size: var(--fs-headerNav);
}

/* ==================== header deco ==================== */
.header-deco-wrap {
	left: calc(90px + 150px);
	gap: 12px;
}

.header-deco-wrap div {
	width: 30px;
	height: 104px;
	transform: skewX(-15deg);
}

.header-deco-wrap div.orange {
	background-color: var(--cnvs-orange);
}

.header-deco-wrap div.purple {
	background-color: var(--cnvs-themecolor);
}

/* =========================================================================
==banner
========================================================================= */
#slider {
	aspect-ratio: 1920 / 920;
}

.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.40) 0%, rgba(0, 0, 0, 0.40) 100%);
}

.banner-title {
	font-size: var(--fs-BNTitle);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 2px;
	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
========================================================================= */
.introicon-wrap {
	border: 1px solid var(--cnvs-lightblue);
	border-radius: 10px;
}

.introicon-wrap .introicon-title {
	font-size: var(--fs-headerNav)
}

/* ==================== info ==================== */
.working-box-wrapper {
  counter-reset: working-number;
}

.working-box-wrapper .working-single-box {
  background: var(--cnvs-themecolor);
  position: relative;
  min-height: 294px;
  display: table;
  width: 100%;
}

.working-box-wrapper .working-single-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-style: solid;
  border-width: 147px 0 147px 60px;
  border-color: var(--cnvs-themecolor) var(--cnvs-themecolor) var(--cnvs-themecolor) #fff;
}

.working-box-wrapper .working-single-box:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  border-style: solid;
  border-width: 147px 0 147px 60px;
  border-color: transparent var(--cnvs-themecolor) transparent var(--cnvs-themecolor);
  z-index: 1;
}

.working-box-wrapper .working-single-box.two{
  left: -30px;
  background: #4f74a6;
  z-index: -1;
}

.working-box-wrapper .working-single-box.two:before {
  border-color: #4f74a6 #4f74a6 #4f74a6 #fff;
}

.working-box-wrapper .working-single-box.two:after{
  border-color: transparent #4f74a6 transparent #4f74a6;
}

.working-box-wrapper .working-single-box.third{
  left: -60px;
  background: var(--cnvs-lightblue);
  z-index: -2;
}

.working-box-wrapper .working-single-box.third:before {
  border-color: var(--cnvs-lightblue) var(--cnvs-lightblue) var(--cnvs-lightblue) #fff;
}

.working-box-wrapper .working-single-box.third:after{
  border-color: transparent var(--cnvs-lightblue) transparent var(--cnvs-lightblue);
}

.working-box-wrapper .working-single-box.bg-red-light {
  background: #4f74a6;
}

.working-box-wrapper .working-single-box.bg-red-light:before {
  border-color: #4f74a6 #4f74a6 transparent;
}

.working-box-wrapper .working-single-box.bg-red-light:after {
  border-color: transparent #4f74a6 transparent #4f74a6;
  right: -51px;
  border-width: 125px 0 125px 51px;
}

.working-box-wrapper .working-content-wrapper {
  vertical-align: middle;
  display: table-cell;
  padding: 25px 20px 25px 105px;
}

.working-box-wrapper .working-content-wrapper .workig-icon {
  color: #fff;
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.working-box-wrapper .working-content-wrapper .workig-icon img {
  width: 70px;
}

.working-box-wrapper .working-content-wrapper .working-content p {
  color: #fff;
  min-height: 48px;
}

.working-box-wrapper .working-content-wrapper .working-content .working-time {
  font-size: var(--fs-footerTitle);
	font-weight: 600;
	color: var(--cnvs-white);
}

.working-box-wrapper [class*=col]:first-child {
  padding-left: 12px;
}

.working-box-wrapper [class*=col]:last-child {
  padding-right: 12px;
}

/* ==================== history ==================== */
.aiweb_1_history .aiweb_1_title::after {
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
}

.aiweb_1_history p {
  text-align: justify;
}

.aiweb_1_intro_timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--cnvs-themecolor);
}

.aiweb_1_intro_timeline:after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: var(--cnvs-themecolor);
}

.aiweb_1_intro_timeline-box {
  padding: 0;
}

.aiweb_1_intro_timeline-box+.aiweb_1_intro_timeline-box {
  padding-top: 40px;
}

.aiweb_1_intro_timeline-box+.aiweb_1_intro_timeline-box .aiweb_1_intro_timeline-year,
.aiweb_1_intro_timeline-box+.aiweb_1_intro_timeline-box .aiweb_1_intro_timeline-content {
	animation-delay: 0.3s;
}

.aiweb_1_intro_timeline-box:nth-child(even) {
  justify-content: flex-end;
}

.aiweb_1_intro_timeline-box:nth-child(even) .aiweb_1_intro_timeline-content {
	order: 1;
}

.aiweb_1_intro_timeline-content {
  max-width: 42%;
  border-color: var(--cnvs-themecolor) !important;
  margin-top: 28px;
}

.aiweb_1_intro_timeline-year {
  background: linear-gradient(90deg,var(--cnvs-lightblue) 0%, var(--cnvs-themecolor) 100%);
  width: 16%;
}

/* ==================== certificate ==================== */
.cer-item-wrap:nth-child(even) {
	animation-delay: .1s;
}

.cer-img::before,
.cer-img::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 85%;
	height: 100%;
	border: 2px solid var(--cnvs-themecolor);
	z-index: -1;
	transition: .3s ease-in-out;
}

.cer-img::before {
	opacity: 0;
  background: linear-gradient(90deg, var(--cnvs-lightblue) 0%, var(--cnvs-themecolor) 100%);
	transition: .3s ease-in-out;
}

.cer-item:hover .cer-img::after {
	width: 100%;
}

.cer-item:hover .cer-img::before {
	width: 100%;
	opacity: 1;
}

/* =========================================================================
==product
========================================================================= */
.pd-item .img-wrap {
	aspect-ratio: 960 / 640;
	text-align: center;
	background-color: #c6cbdd;
}
.pd-item .img-wrap img {
	height: 100%;
	object-fit: contain;
	transition: .3s ease;
}

.pd-item:hover .img-wrap img {
	transform: scale(1.05);
}

.pd-item:hover .item-title {
	color: var(--cnvs-themecolor) !important;
}

.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 ==================== */
.sidebar-wrap {
  top: 125px;
	position: sticky;
}

.news_1__widget-item {
  border: 2px solid rgba(var(--cnvs-themecolor-rgb),1);
  margin-bottom: 36px;
}

.product-cate-wrap .toggle .toggle-header {
	transition: .3s ease-in-out;
}

.product-cate-wrap .toggle:hover .toggle-header {
	background-color: var(--cnvs-lightblue);
	color: var(--cnvs-white);
}

.product-cate-wrap .toggle:hover .toggle-header a {
	color: var(--cnvs-white);
}

.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: 12px 16px;
	font-size: var(--fs-normal);
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: 1px;
}

.product-cate-wrap .toggle-icon {
	font-size: 24px;
	transform: translateY(2px);
	width: 20%;
	text-align: right;
}

.product-page-link i {
	font-size: 12px;
	transform: translateY(4px);
}

/* ==================== info img ==================== */
.proSwiper2 .swiper-wrapper {
	align-items: center;
}

.swiper-slide-thumb-active {
	border-color: var(--cnvs-lightblue) !important;
}

.swiper-slide-thumb-active::before {
	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-lightblue);
	border-left: .5em solid transparent;
}

.prodcut-info-img-wrap [class*=swiper-button-] {
	width: 36px;
	height: 36px;
	margin-top: 0;
	border-color: rgba(var(--cnvs-contrast-rgb), 0.1) !important;
	opacity: 0;
	transition: .3s ease-in-out;
}

.prodcut-info-img-wrap [class*=swiper-button-]:after {
	opacity: 0;
}

.prodcut-info-img-wrap [class*=swiper-button-]:hover {
	background-color: var(--cnvs-themecolor) !important;
	color: var(--cnvs-white);
}

.prodcut-info-img-wrap:hover [class*=swiper-button-] {
	opacity: 1;
}

.prodcut-info-img-wrap .proSwiper .swiper-slide {
	padding: 8px;
}

.nav-link {
	border: 1px solid var(--cnvs-themecolor);
}

.nav-link:hover {
	background-color: var(--cnvs-lightblue);
	border-color: var(--cnvs-lightblue) !important;
	color: var(--cnvs-white);
}

/* =========================================================================
==news
========================================================================= */
.item-tag {
	color: var(--cnvs-white);
	background-color: var(--cnvs-lightblue);
	padding: 0 12px;
	border-radius: 4px;
}

.item-tag:hover,
.item-tag:active {
	color: var(--cnvs-white);
	background-color: var(--cnvs-orange);
}

.news-item .item-tag {
	margin-left: 10px;
}

.news-item .img-wrap {
	aspect-ratio: 960 / 640;
	text-align: center;
	background-color: #c6cbdd;
}

.news-item .img-wrap img {
	height: 100%;
	object-fit: contain;
	transition: .3s ease;
}

.news-item .img-wrap:hover img {
	transform: scale(1.05);
}

.news-item + .news-item {
	border-top: 1px solid rgba(92, 168, 190, 0.25);
}

.news-item:not(:first-child) {
	padding-top: 24px;
}

.news-item:not(:last-child) {
	padding-bottom: 24px;
}

/* ==================== sidebar ==================== */
.sidebar-wrap {
  top: 125px;
	position: sticky;
}

.news_1__widget-item {
  border: 2px solid rgba(var(--cnvs-themecolor-rgb),.3);
  margin-bottom: 36px;
}

.news_1__widget-categories li {
  border-bottom: 1px solid #DDD;
}

.news_1__widget-categories li:hover {
  border-color: var(--cnvs-lightblue);
  background-color: var(--cnvs-lightblue);
}

.news_1__widget-categories li:hover a {
	color: var(--cnvs-white);
}

.news_1__widget-categories li.active {
  border-color: var(--cnvs-themecolor);
  background-color: var(--cnvs-themecolor);
}

.news_1__widget-categories li.active a,
.news_1__widget-categories li.active span {
  color: var(--cnvs-white);
}

.news_1__widget-categories i {
  font-size: 12px;
	transform: translateY(4px);
}

.news_1__widget-categories li a {
	padding: 12px 16px;
}


/* ==================== hot ==================== */
.news_1__side-thumb {
  width: 120px;
}

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

.news_1__side-content span {
  color: #888888;
  font-size: 14px;
  text-transform: uppercase;
}

.news_1__side-content h3 {
  font-size: 18px;
}

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

.hot-date {
	font-size: 15px;
	line-height: 1.3;
}

/* =========================================================================
==contact
========================================================================= */
.contact-box {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
}

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

.contact-info {
	width: calc(100% - 60px);
}

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

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

.contact-link:hover {
	color: var(--cnvs-lightblue);
}

.contact-box:hover .contact-icon {
	background-color: var(--cnvs-lightblue);
}

.contact-box:hover .contact-title,
.contact-box:hover .contact-link {
	color: var(--cnvs-lightblue);
}

.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; */
	border: 1px solid #efefef;
	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::placeholder,
.contact-form .form-group textarea::placeholder,
.contact-form .form-group select::placeholder {
	color: #848484;
}

.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);
	transform: none;
}

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

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

/* =========================================================================
==footer
========================================================================= */
#footer {
	background: #F6F8FF;
}

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

.widget-link {
	width: 125px;
}

.sns-icon {
	width: 30px;
	height: 30px;
}

#gotoTop {
	width: 44px;
	height: 44px;
}

#gotoTop:hover {
	background-color: var(--cnvs-orange);
}

/* =========================================================================
==breadcrumb + pagination
========================================================================= */
.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;
}

/* ==================== pagination ==================== */
.page-link.arrow {
	border: 1px solid transparent;
}

.page-link.arrow:hover {
	border-color: var(--cnvs-themecolor);
}

/* =========================================================================
==RWD
========================================================================= */
@media (max-width: 1199px) {
	/* ==================== intro ==================== */
	.working-box-wrapper .working-single-box:before,
  .working-box-wrapper .working-single-box:after{
    border-width: 147px 0 147px 30px;
  }

  .working-box-wrapper .working-single-box:after {
    right: -30px;
  }

  .working-box-wrapper .working-single-box.third:after{
    border-width: 147px 0 147px 60px;
    right: -60px;
  }

  .working-box-wrapper .working-content-wrapper {
    padding: 25px 0 25px 60px;
  }
}

@media (max-width: 991px) {
	.wow {
		animation-name: none !important;
		visibility: visible !important;
		opacity: 1;
	}

	:root {
		--fs-BNTitle: 42px;
		--fs-BNTxt: 20px;
		--fs-sectionTitle: 38px;
		--fs-infoTitle: 32px;
		--fs-sidebarTitle: 22px;
		--fs-itemTitle: 22px;
		--fs-footerTitle: 20px;
		--fs-headerNav: 18px;

		--section: 60px;
	}

	.section-title:after {
		margin: 24px auto 0;
	}

	/* ==================== header ==================== */
	#header-wrap #logo img {
		height: 75px;
    margin: 5px 0;
	}

	.header-deco-wrap {
		left: calc(75px + 120px);
		top: 0;
	}

	.header-deco-wrap div {
		height: 87px;
	}

	.header-wrap-clone {
		height: 86px;
	}

	/* ==================== footer ==================== */
	.footer-logo {
		width: 70px;
	}

	/* ==================== breadcrumb + pagination ==================== */
	.breadcrumb-title {
		margin-right: 0;
	}

	/* ==================== intro ==================== */
	/* info */
	.working-box-wrapper .working-content-wrapper {
    padding: 30px;
  }

  .working-box-wrapper .working-single-box:before,
  .working-box-wrapper .working-single-box:after{
    display: none;
  }

  .working-box-wrapper .working-single-box.two,
  .working-box-wrapper .working-single-box.third{
    left: 0;
  }

  .working-box-wrapper .working-content-wrapper .working-content p{
    min-height: unset;
  }

	.working-box-wrapper .working-single-box {
		min-height: auto;
	}

	/* history */
	.aiweb_1_intro_timeline:before {
    left: 5%;
  }

  .aiweb_1_intro_timeline:after {
    display: none;
  }

	.aiweb_1_intro_timeline-box:nth-child(even) {
		justify-content: flex-start;
	}

  .aiweb_1_intro_timeline-content {
    max-width: 100%;
		order: 0 !important;
		padding-top: 46px !important;
		padding-left: 80px !important;
  }

	.aiweb_1_intro_timeline-year {
		width: fit-content;
		padding: 0px 16px;
		position: absolute;
		top: 40px;
	}

  .aiweb_1_intro_timeline-box:first-child .aiweb_1_intro_timeline-year {
		top: 0;
  }
}

@media (max-width: 767px) {
	/* ==================== banner ==================== */
	.banner-txt {
		display: none;
	}

	/* ==================== intro ==================== */
	.breadcrumb-wrap ul {
		font-size: 16px;
	}

	.breadcrumb-wrap ul a,
	.php_breadcrumb li:not(:last-child)::after {
		color: #f7faff;
	}

	/* ==================== breadcrumb ==================== */
	.php_breadcrumb .color {
		color: var(--cnvs-white) !important;
	}
}

@media (max-width: 575px) {
	:root {
		--fs-BNTitle: 24px;
		--fs-infoTitle: 30px;
		--fs-sectionTitle: 36px;
		--fs-sidebarTitle: 20px;
		--fs-itemTitle: 20px;

		--section: 60px;
	}

	/* ==================== header ==================== */
	#header-wrap #logo img {
		height: 65px;
	}

	.header-deco-wrap div {
		height: 76px;
	}

	.header-wrap-clone {
		height: 75px;
	}

	.header-deco-wrap {
		left: calc(65px + 40px);
	}

	.header-deco-wrap div {
		width: 24px;
	}

	/* ==================== banner ==================== */
	#slider {
		--cnvs-swiper-dots-position-bottom: 10px;
	}

	/* ==================== footer ==================== */
	.footer-logo {
		width: 65px;
	}

	/* ==================== 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-share-wrap a[title="Facebook"] i {
		transform: translateY(-1px);
	}
}

.swal2-icon.swal2-error .x-mark {
	top: calc(50% + 16px);
	transform: translateY(-50%);
}

.swiper-slide {
	text-align: center;
}