/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/

.text-justify{
	text-align: justify;
}

.section-head{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.section-title .char{
	opacity: 0;
}

.section.show .section-title .char {
	animation-name: fadeIn;
	animation-duration: 1.5s;
	animation-delay: calc(10ms* var(--char-index));
	animation-fill-mode: forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

/*--------------------------------------------------------------
# Navs
--------------------------------------------------------------*/

.section-nav{
	overflow: inherit;
	position: sticky;
	top: 3.6rem;
	background-color: #fff;
	z-index: 11;
}

.section-nav ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	padding: 0 var(--sb-content-gap);
	margin: 0;
}

.section-nav ul>li{
	margin: 0 3.5rem;
}

.section-nav ul>li a{
	position: relative;
	display: block;
	padding-bottom: 1.6rem;
}

.section-nav ul>li a::before{
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: .4rem;
	width: 0;
	background: var(--sb-primary);
	transition: all .3s;
}

.section-nav ul>li:hover > a::before, .section-nav ul>li > a.active::before{
	width: 100%;
}

@media (min-width: 1200px) and (max-width: 1440px) {
	.section-nav ul>li {
		margin: 0 2rem;
	}

	.section-nav ul>li a{
		padding-bottom: 2rem;
	}

	.section-nav ul>li a::before{
		height: .3rem;
	}
}

/*--------------------------------------------------------------
# Fields
--------------------------------------------------------------*/

.wrap-items.field-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.field-item{
	display: block;
}

.field-item .card-item-image{
	--aspect-ratio: 1 / 1.15;
}

/*.field-item>*{
	flex: 0 0 50%;
	max-width: 50%;
	border-radius: 0;
}*/

.field-item .card-item-content{
	position: absolute;
	z-index: 2;
	opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	gap: 0;
	align-items: center;
    justify-content: center;
	background: #0000009e !important;
	padding: 11rem 7rem 5rem 7rem;
	transition: all .3s;
}

.field-item:hover .card-item-content{
	opacity: 1;
}

.field-item .field-icon{
	display: flex;
	margin-top: auto;
}

.field-item .card-item-title{
	font-size: 3.2rem;
	font-weight: 500;
	margin-bottom: 4rem;
}

.field-item:hover .card-item-image{
	box-shadow: none;
	transform: none;
}

/*.field-item:nth-child(n+3){
	flex-direction: row-reverse;
}*/

.field-item .card-item-excerpt{
	line-height: 1.3;
	color: var(--sb-dark);
}

@media (min-width: 1701px) and (max-width: 1919px) {
	.field-item .card-item-excerpt{
		font-size: 1.4rem;
	}
}

@media (min-width: 577px){

	.field-item:hover .card-item-content{
		background: var(--sb-primary);
	}

	.field-item:hover .card-item-content>*, .field-item:hover .card-item-title{
		color: #fff;
	}

	.field-item:hover .field-icon img{
		filter: brightness(0) invert(1);
		-webkit-filter: brightness(0) invert(1);
	}

}
/*--------------------------------------------------------------
# Infor
--------------------------------------------------------------*/

.wrap-items.infor-items {
	display: flex;
	flex-wrap: wrap;
	background: #f6f6f6;
}

.wrap-items.infor-items>*{
	position: relative;
	flex: 0 0 50%;
	max-width: 50%;
}

.info-item-overlay{
	display: flex;
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.stock-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 16rem;
}

.stock-item-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}


.stock-header, .stock-footer{
	display: flex;
	flex-direction: column;
}

.stock-header{
	gap: .4rem;
}

.stock-title{
	font-size: 3.6rem;
	font-weight: 500;
	margin-bottom: 4rem;
}

.stock-point {
	display: flex;
	margin: 0 0 1rem;
	gap: 1rem;
}

.stock-point-param{
	font-family: var(--sb-font-2);
	font-size: 6rem;
	line-height: 1;
	color: #009203;
	font-weight: 600;
}

.stock-point-icon{
	display: flex;
}

.stock-point-icon img{
	max-width: 3rem;
}

.stock-footer p{
	margin-bottom: 1rem;
}

.stock-footer .infor-btn{
	margin-top: 5rem;
	background: var(--sb-primary);
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	padding: 1.6rem 2rem !important;
	min-width: 24rem;
}

.stock-item-item .report-lists{
	list-style: none;
	width: 100%;
	max-width: 56%;
	margin: 0 auto;
	margin-top: 5rem;

}

.stock-item-item .report-lists li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
}

.stock-item-item .report-lists li:not(:last-child){
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid;
}

.counter-list-wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	padding: 0 1.5rem 0 16rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap: 11rem;
	color: #fff;
}

.stock-date-report {
	position: absolute;
	bottom: 10rem;
}

.counter-list-wrap .stock-title{
	color: #fff;
	position: absolute;
	top: 16rem;
	margin: 0;
}

.counter-list{
	color: #fff;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 4rem;
	row-gap: 14rem;
}

.counter-header{
	margin-bottom: 2rem;
}

.counter-header h3{
	font-size: 2.6rem;
	color: #fff;
	font-weight: 500;
	margin: 0;
}

.counter-number{
	font-family: var(--sb-font-2);
	font-size: 5rem;
	font-weight: bold;
	line-height: 1;
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/

.section-posts-list .swiper{
	padding-bottom: 0 !important;
}

.swiper-slide-card .card-item-image{
	border-radius: 0;
	--aspect-ratio: 100 / 63;
	width: 100%;
	height: 100%;
}

.swiper-slide-card .card-item{
	gap: 0;
	height: 100%;
	background: #f6f6f6;
	transition: all .3s;
}

.swiper-slide-card .card-item:hover{
	background: var(--sb-primary);
}

.archive.category .swiper-slide-card .card-item:not(:hover){
	background: #fff;
}


.swiper-slide-card .card-item-content{
	gap: 0;
	padding: 3rem;
	justify-content: space-between;
	height: 100%;
}

.swiper-slide-card .card-item-title{
	font-size: 2rem;
	line-height: 1.3;
	font-weight: 600;
	min-height: 5.4rem;
	margin-bottom: 4rem;
}


.swiper-slide-card .card-item:hover>*, .swiper-slide-card .card-item:hover .card-item-title, .swiper-slide-card .card-item:hover .card-item-excerpt{
	color: #fff;
}

.swiper-slide-card .card-item-meta{
	display: none;
}

.swiper-slide-card .card-item-link{
	margin-left: -1.2rem;
	margin-top: 5rem;
}

.swiper-slide-card .card-item-link a{
	font-weight: 600;
}

.swiper-slide-card .card-item-link svg{
	width: 3.6rem;
	height: 3.6rem;
	stroke-width: 1.5;
	color: var(--sb-primary);
}

.swiper-slide-card .card-item:hover .card-item-link a, .swiper-slide-card .card-item:hover .card-item-link svg{
	color: #fff;
}

/*--------------------------------------------------------------
# Journey
--------------------------------------------------------------*/

.section-journey{
	position: relative;
	background-image: var(--bg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%, cover;
	height: 40rem;
	padding: 0;
}

@media (min-width: 1537px){
	.section-journey{
		height: 70rem;
	}
}

.section-journey:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .65;
}

.section-journey .section-head{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	margin: 0 auto;
}

.section-journey .section-head .container{
	width: 100%;
}

.section-journey .section-head .swiper{
	width: 100%;
}

.journey-list{
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--sb-column-gap);
	max-width: var(--content-width-size);
}

.journey-item__title{
	color: #fff;
	font-size: 4.6rem;
	font-weight: 400;
	margin-bottom: 3.2rem;
}

.section-journey .section-head p{
	margin: 0;
}

.journey-item .btn{
	margin: 3rem auto 0;
	background: var(--sb-primary);
	color: #fff;
	padding: 1.2rem 3rem !important;
	font-size: 1.8rem;
	min-width: 14rem;
	font-weight: 500;
}

.section-journey .swiper-control-absolute .swiper-prev{
	left: -10rem;
}

.section-journey .swiper-control-absolute .swiper-next{
	right: -10rem;
}

.section-journey .swiper-control-btn img{
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}

/*--------------------------------------------------------------
# Partner
--------------------------------------------------------------*/

.section-partner{
	padding-bottom: var(--sb-default-gap);
}

.section-partner .wrap-items{
	position: relative;
	margin: 0 auto;
	padding: 0 6rem;
	width: 100%;
}

.section-partner .swiper{
	width: 100%;
}

.section-partner ul.swiper-wrapper{
	align-items: center;
}

.section-partner .swiper-slide-image{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.section-partner .swiper-slide-image img{
	max-height: 11.9rem;
}

.section-partner .swiper-control-btn{
	width: auto;
	height: auto;
	box-shadow: none;
	border-radius: 0;
}

.section-partner .swiper-control-absolute .swiper-prev{
	left: 0;
}

.section-partner .swiper-control-absolute .swiper-next{
	right: 0;
}


/* Related */


.post-related{
	max-width: 1080px;
	margin: 0 auto;
	border-top: 1px solid #8a8a8a;
	margin-top: var(--sb-default-gap);
}

.post-related .card-item{
	gap: 3rem;
	flex-direction: row;
	align-items: center;
}

.post-related .card-item:not(:last-child){
	margin-bottom: 6rem;
}

.post-related .card-item-image{
	flex: 0 0 20%;
	max-width: 20%;
	--aspect-ratio: 4 / 3;
}

@media (min-width: 1440px) and (max-width: 1919px) {
	.post-related .card-item-title{
		font-size: 1.6rem;
		font-weight: 600;
	}
}

.post-related .card-item-excerpt{
	-webkit-line-clamp: 2;
}

.single-post .section-posts-list{
	background: #f6f6f6;
	    padding: 0;
}

.single-post .swiper-control-relative{
	margin-top: 4rem;
	justify-content: end;
}

.single-post .swiper-slide-card .card-item{
	
}

@media (max-width: 576px){
	.post-related .card-item{
		gap: 1.5rem;
	}
	
	.post-related .card-item:not(:last-child){
		margin-bottom: 3rem;
	}
	
	.post-related .card-item-image{
		flex: 0 0 30%;
		max-width: 30%;
	}
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

/*@media (min-width: 1701px) and (max-width: 1919px){

	.field-item .card-item-content{
		gap: 2rem;
		padding: 7rem 4rem;
	}

	.field-item .card-item-title {
		font-size: 2.4rem;
		font-weight: 500;
		margin-bottom: 0;
	}

	.field-icon img{
		width: 5rem;
		height: 5rem;
	}

	.stock-item{
		gap: 0;
		padding-top: 12rem;
	}

	.counter-list-wrap .stock-title{
		top: 12rem;
	}


	.stock-item-item{
		aspect-ratio: 10 / 4.5;
	}

	.stock-item-item:last-child{
		aspect-ratio: 10 / 5.5;
	}

	.stock-title{
		font-size: 3.6rem;
	}

	.stock-point-param{
		font-size: 6rem;
	}

	.stock-point-icon img{
		width: 2.4rem;
	}

	.stock-footer .infor-btn{
		margin-top: 4rem;
		font-size: 1.6rem;
		min-width: auto;
		padding: 1.2rem 2rem !important;
	}

	.stock-item-item:last-child .stock-title{
		margin-bottom: 3rem;
	}

	.stock-item-item .report-lists{
		margin-top: 4rem;
	}

	.counter-list-wrap{
		padding: 0 2rem 0 12rem;

	}

	.stock-date-report{
		bottom: 8rem;
	}

	.counter-list{
		column-gap: 8rem;
		row-gap: 6rem;
	}

	.counter-header h3{
		font-size: 2.4rem;
	}

	.counter-number{
		font-size: 4rem;
	}

	.swiper-slide-card .card-item-content{
		padding: 4rem 3rem;
	}

	.swiper-slide-card .card-item-title{
		font-size: 1.8rem;
		min-height: 4rem;
	}

	.swiper-slide-card .card-item-excerpt{
		font-size: 1.6rem;
	}

	.swiper-slide-card .card-item-link{
		margin-top: 0;
		margin-left: -.7rem;

	}

	.swiper-slide-card .card-item-link a{
		font-size: 1.6rem;
	}

	.swiper-slide-card .card-item-link svg{
		width: 2.4rem;
		height: 2.4rem;
	}

	.journey-item__title{
		font-size: 3.2rem;
		margin-bottom: 2rem;
	}

	.journey-list{
		max-width: 80%;
	}

	.section-journey .swiper-control-absolute .swiper-next{
		right: -6rem;
	}

	.section-journey .swiper-control-absolute .swiper-prev {
		left: -6rem;
	}

	.section-partner .wrap-items{
		max-width: 80%;
	}

	.section-partner .swiper-control-absolute .swiper-next{
		right: -6rem;
	}

	.section-partner .swiper-control-absolute .swiper-prev {
		left: -6rem;
	}

	.journey-item .btn{
		margin-top: 4rem;
		font-size: 1.6rem;
		min-width: auto;
		padding: 1.2rem 2rem !important;
	}

	.post-related{
		max-width: 800px;
		margin: 0 auto;
		margin-top: var(--sb-default-gap);
	}

	.post-related .card-item:not(:last-child){
		margin-bottom: 2rem	;
	}

	.post-related .card-item{
		gap: 2rem;
	}

	.post-related .card-item-title{
		min-height: auto;
	}

	.section-nav ul>li{
		margin: 0 2rem;
	}

}*/

@media (min-width: 1701px) and (max-width: 1919px){
	.field-item .card-item-content{
		gap: 2rem;
		padding: 5rem 3rem;
	}

	.field-item .card-item-title {
		font-size: 2rem;
		font-weight: 500;
		margin-bottom: 0;
	}

	.field-icon img{
		width: 4.6rem;
		height: 4.6rem;
	}

	.stock-item{
		gap: 0;
		padding-top: 10rem;
	}

	.stock-item-item > *{

	}

	.stock-item-item{
		aspect-ratio: 10 / 4.5;
	}

	.stock-item-item:last-child{
		aspect-ratio: 10 / 5.5;
	}

	.stock-title{
		font-size: 2.4rem;
	}

	.stock-header p{
		margin-bottom: 0;
	}

	.stock-point-param{
		font-size: 5rem;
	}

	.stock-point-icon img{
		width: 2.4rem;
	}

	.stock-footer .infor-btn{
		margin-top: 2rem;
		font-size: 1.5rem;
		min-width: auto;
		padding: 1.2rem 2rem !important;
	}

	.stock-item-item:last-child .stock-title{
		margin-bottom: 3rem;
	}

	.stock-item-item .report-lists{
		margin-top: 5rem;
		margin-bottom: .3rem;
	}

	.stock-footer p{
		margin-bottom: 0;
	}

	.stock-point{
		margin: 0 0 1.6rem;
	}

	.stock-date-report{
		bottom: 6rem;
	}

	.counter-list-wrap{
		padding: 0 2rem 0 12rem;
		row-gap: 0;
	}

	.counter-list{
		row-gap: 8rem;
	}

	.counter-list-wrap .stock-title{
		top: 10rem;
	}

	.stock-item-item .report-lists li:not(:last-child){
		padding-bottom: .7rem;
		margin-bottom: .7rem;
	}

	.counter-header h3{
		font-size: 1.8rem;
	}

	.counter-number{
		font-size: 4rem;
	}

	.swiper-slide-card .card-item-content{
		gap: 2rem;
		padding: 4rem 3rem;
	}

	.swiper-slide-card .card-item-title{
		font-size: 1.6rem;
		min-height: 4rem;
	}

	.swiper-slide-card .card-item-excerpt{
		font-size: 1.4rem;
	}

	.swiper-slide-card .card-item-link{
		margin-top: 0;
		margin-left: -.7rem;

	}

	.swiper-slide-card .card-item-link a{
		font-size: 1.4rem;
	}

	.swiper-slide-card .card-item-link svg{
		width: 2.4rem;
		height: 2.4rem;
	}

	.journey-item__title{
		font-size: 2.8rem;
		margin-bottom: 2rem;
	}

	.journey-list{
		max-width: 80%;
	}

	.section-journey .swiper-control-absolute .swiper-next{
		right: -6rem;
	}

	.section-journey .swiper-control-absolute .swiper-prev {
		left: -6rem;
	}

	.section-partner{
		padding-bottom: 3rem;
	}

	.section-partner .wrap-items .swiper-slide-image img{
		max-height: 9rem;
	}

	.journey-item .btn{
		margin-top: 4rem;
		font-size: 1.4rem;
		min-width: auto;
		padding: 1.2rem 2rem !important;
	}

	.post-related{
		max-width: 800px;
		margin: 0 auto;
		margin-top: var(--sb-default-gap);
	}

	.post-related .card-item:not(:last-child){
		margin-bottom: 2rem	;
	}

	.post-related .card-item{
		gap: 2rem;
	}

	.post-related .card-item-title{
		min-height: auto;
	}


	.section-nav ul>li{
		margin: 0 2rem;
	}


}

@media (min-width: 1537px) and (max-width: 1700px){
	.field-item .card-item-content{
		gap: 2rem;
		padding: 5rem 3rem;
	}

	.field-item .card-item-title {
		font-size: 2rem;
		font-weight: 500;
		margin-bottom: 0;
	}

	.field-icon img{
		width: 4.6rem;
		height: 4.6rem;
	}

	.stock-item{
		gap: 0;
		padding-top: 10rem;
	}

	.stock-item-item > *{

	}

	.stock-item-item{
		aspect-ratio: 10 / 4.5;
	}

	.stock-item-item:last-child{
		aspect-ratio: 10 / 5.5;
	}

	.stock-title{
		font-size: 2.4rem;
	}

	.stock-header p{
		margin-bottom: 0;
	}

	.stock-point-param{
		font-size: 5rem;
	}

	.stock-point-icon img{
		width: 2.4rem;
	}

	.stock-footer .infor-btn{
		margin-top: 2rem;
		font-size: 1.5rem;
		min-width: auto;
		padding: 1.2rem 2rem !important;
	}

	.stock-item-item:last-child .stock-title{
		margin-bottom: 3rem;
	}

	.stock-item-item .report-lists{
		margin-top: 5rem;
		margin-bottom: .3rem;
	}

	.stock-footer p{
		margin-bottom: 0;
	}

	.stock-point{
		margin: 0 0 1.6rem;
	}

	.stock-date-report{
		bottom: 6rem;
	}

	.counter-list-wrap{
		padding: 0 2rem 0 12rem;
		row-gap: 0;
	}

	.counter-list{
		row-gap: 8rem;
	}

	.counter-list-wrap .stock-title{
		top: 10rem;
	}

	.stock-item-item .report-lists li:not(:last-child){
		padding-bottom: .7rem;
		margin-bottom: .7rem;
	}

	.counter-header h3{
		font-size: 1.8rem;
	}

	.counter-number{
		font-size: 4rem;
	}

	.swiper-slide-card .card-item-content{
		gap: 2rem;
		padding: 4rem 3rem;
	}

	.swiper-slide-card .card-item-title{
		font-size: 1.6rem;
		min-height: 4rem;
	}

	.swiper-slide-card .card-item-excerpt{
		font-size: 1.4rem;
	}

	.swiper-slide-card .card-item-link{
		margin-top: 0;
		margin-left: -.7rem;

	}

	.swiper-slide-card .card-item-link a{
		font-size: 1.4rem;
	}

	.swiper-slide-card .card-item-link svg{
		width: 2.4rem;
		height: 2.4rem;
	}

	.journey-item__title{
		font-size: 2.8rem;
		margin-bottom: 2rem;
	}

	.journey-list{
		max-width: 80%;
	}

	.section-journey .swiper-control-absolute .swiper-next{
		right: -6rem;
	}

	.section-journey .swiper-control-absolute .swiper-prev {
		left: -6rem;
	}

	.section-partner{
		padding-bottom: 3rem;
	}

	.section-partner .wrap-items .swiper-slide-image img{
		max-height: 9rem;
	}

	.journey-item .btn{
		margin-top: 4rem;
		font-size: 1.4rem;
		min-width: auto;
		padding: 1.2rem 2rem !important;
	}

	.post-related{
		max-width: 800px;
		margin: 0 auto;
		margin-top: var(--sb-default-gap);
	}

	.post-related .card-item:not(:last-child){
		margin-bottom: 2rem	;
	}

	.post-related .card-item{
		gap: 2rem;
	}

	.post-related .card-item-title{
		min-height: auto;
	}


	.section-nav ul>li{
		margin: 0 2rem;
	}


}

/*@media (min-width: 1395px) and (max-width: 1440px) and (min-resolution: 2dppx) {
	body {
		background-color: #f8f8f8;
	}
}*/


@media (min-width: 1401px) and (max-width: 1536px){
	.field-item .card-item-content{
		gap: 2rem;
		padding: 5rem 3rem;
	}

	.field-item .card-item-title {
		font-size: 2rem;
		font-weight: 500;
		margin-bottom: 0;
	}

	.field-icon img{
		width: 4.6rem;
		height: 4.6rem;
	}

	.stock-item{
		gap: 0;
		padding-top: 10rem;
	}

	.stock-item-item > *{

	}

	.stock-item-item{
		aspect-ratio: 10 / 4.5;
	}

	.stock-item-item:last-child{
		aspect-ratio: 10 / 5.5;
	}

	.stock-title{
		font-size: 2.4rem;
	}

	.stock-header p{
		margin-bottom: 0;
	}

	.stock-point-param{
		font-size: 5rem;
	}

	.stock-point-icon img{
		width: 2.4rem;
	}

	.stock-footer .infor-btn{
		margin-top: 2rem;
		font-size: 1.5rem;
		min-width: auto;
		padding: 1.2rem 2rem !important;
	}

	.stock-item-item:last-child .stock-title{
		margin-bottom: 3rem;
	}

	.stock-item-item .report-lists{
		margin-top: 5rem;
		margin-bottom: .3rem;
	}

	.stock-footer p{
		margin-bottom: 0;
	}

	.stock-point{
		margin: 0 0 1.6rem;
	}

	.stock-date-report{
		bottom: 6rem;
	}

	.counter-list-wrap{
		padding: 0 2rem 0 12rem;
		row-gap: 0;
	}

	.counter-list{
		row-gap: 8rem;
	}

	.counter-list-wrap .stock-title{
		top: 10rem;
	}

	.stock-item-item .report-lists li:not(:last-child){
		padding-bottom: .7rem;
		margin-bottom: .7rem;
	}

	.counter-header h3{
		font-size: 1.8rem;
	}

	.counter-number{
		font-size: 4rem;
	}

	.swiper-slide-card .card-item-content{
		gap: 2rem;
		padding: 4rem 3rem;
	}

	.swiper-slide-card .card-item-title{
		font-size: 1.6rem;
		min-height: 4rem;
	}

	.swiper-slide-card .card-item-excerpt{
		font-size: 1.4rem;
	}

	.swiper-slide-card .card-item-link{
		margin-top: 0;
		margin-left: -.7rem;

	}

	.swiper-slide-card .card-item-link a{
		font-size: 1.4rem;
	}

	.swiper-slide-card .card-item-link svg{
		width: 2.4rem;
		height: 2.4rem;
	}

	.journey-item__title{
		font-size: 2.8rem;
		margin-bottom: 2rem;
	}

	.journey-list{
		max-width: 80%;
	}

	.section-journey .swiper-control-absolute .swiper-next{
		right: -6rem;
	}

	.section-journey .swiper-control-absolute .swiper-prev {
		left: -6rem;
	}

	.section-partner{
		padding-bottom: 3rem;
	}


	.section-partner .wrap-items .swiper-slide-image img{
		max-height: 9rem;
	}

	.journey-item .btn{
		margin-top: 4rem;
		font-size: 1.4rem;
		min-width: auto;
		padding: 1.2rem 2rem !important;
	}

	.post-related{
		max-width: 800px;
		margin: 0 auto;
		margin-top: var(--sb-default-gap);
	}

	.post-related .card-item:not(:last-child){
		margin-bottom: 2rem	;
	}

	.post-related .card-item{
		gap: 2rem;
	}

	.post-related .card-item-title{
		min-height: auto;
	}


	.section-nav ul>li{
		margin: 0 2rem;
	}
}

@media (min-width: 1200px) and (max-width: 1440px){

	.field-item .card-item-content{
		gap: 2rem;
		padding: 5rem 3rem;
	}

	.field-item .card-item-title {
		font-size: 2rem;
		font-weight: 500;
		margin-bottom: 0;
	}

	.field-icon img{
		width: 4.6rem;
		height: 4.6rem;
	}

	.stock-item{
		gap: 0;
		padding-top: 10rem;
	}

	.stock-item-item > *{

	}

	.stock-item-item{
		aspect-ratio: 10 / 4.5;
	}

	.stock-item-item:last-child{
		aspect-ratio: 10 / 5.5;
	}

	.stock-title{
		font-size: 2.4rem;
	}

	.stock-header p{
		margin-bottom: 0;
	}

	.stock-point-param{
		font-size: 5rem;
	}

	.stock-point-icon img{
		width: 2.4rem;
	}

	.stock-footer .infor-btn{
		margin-top: 3rem;
		font-size: 1.5rem;
		min-width: auto;
		padding: 1rem 1.8rem !important;
	}

	.stock-item-item:last-child .stock-title{
		margin-bottom: 3rem;
	}

	.stock-item-item .report-lists{
		margin-top: 5rem;
		margin-bottom: .3rem;
	}

	.stock-footer p{
		margin-bottom: 0;
	}

	.stock-point{
		margin: 0 0 1.6rem;
	}

	.stock-date-report{
		bottom: 6rem;
	}

	.counter-list-wrap{
		padding: 0 2rem 0 12rem;
		row-gap: 0;
	}

	.counter-list{
		row-gap: 8rem;
	}

	.counter-list-wrap .stock-title{
		top: 10rem;
	}

	.stock-item-item .report-lists li:not(:last-child){
		padding-bottom: .7rem;
		margin-bottom: .7rem;
	}

	.counter-header h3{
		font-size: 1.8rem;
	}

	.counter-number{
		font-size: 4rem;
	}

	.swiper-slide-card .card-item-content{
		gap: 2rem;
		padding: 4rem 3rem;
	}

	.swiper-slide-card .card-item-title{
		font-size: 1.6rem;
		min-height: 4rem;
	}

	.swiper-slide-card .card-item-excerpt{
		font-size: 1.4rem;
	}

	.swiper-slide-card .card-item-link{
		margin-top: 0;
		margin-left: -.7rem;

	}

	.swiper-slide-card .card-item-link a{
		font-size: 1.4rem;
	}

	.swiper-slide-card .card-item-link svg{
		width: 2.4rem;
		height: 2.4rem;
	}

	.journey-item__title{
		font-size: 2.8rem;
		margin-bottom: 2rem;
	}

	.journey-list{
		max-width: 80%;
	}

	.section-journey .swiper-control-absolute .swiper-next{
		right: -6rem;
	}

	.section-journey .swiper-control-absolute .swiper-prev {
		left: -6rem;
	}

	.section-partner{
		padding-bottom: 3rem;
	}

	.section-partner .wrap-items .swiper-slide-image img{
		max-height: 6rem;
	}

	.journey-item .btn{
		margin-top: 4rem;
		font-size: 1.4rem;
		min-width: auto;
		padding: 1.2rem 2rem !important;
	}

	.post-related{
		max-width: 800px;
		margin: 0 auto;
		margin-top: var(--sb-default-gap);
	}

	.post-related .card-item:not(:last-child){
		margin-bottom: 2rem	;
	}

	.post-related .card-item{
		gap: 2rem;
	}

	.post-related .card-item-title{
		min-height: auto;
	}

}

@media (min-width: 1281px) {

}

@media (min-width: 1025px) and (max-width: 1280px) {

	.section-nav ul>li a{
		padding-bottom: 1rem;
	}

	.field-item .card-item-content{
		padding: 3rem 2rem;
	}

	.field-item .card-item-title{
		font-size: 1.6rem;
		margin-bottom: 2rem;
		min-height: auto;
	}

	.field-item .field-icon img{
		width: 4.6rem;
	}

	.stock-item{
		gap: 0;
		padding-top: 10rem;
	}

	.stock-item-item > *{

	}

	.stock-item-item{
		aspect-ratio: 10 / 4.5;
	}

	.stock-item-item:last-child{
		aspect-ratio: 10 / 5.5;
	}

	.stock-title{
		font-size: 2rem;
	}

	.stock-header p{
		margin-bottom: 0;
	}

	.stock-point-param{
		font-size: 5rem;
	}

	.stock-point-icon img{
		width: 2.4rem;
	}

	.stock-footer .infor-btn{
		margin-top: 2rem;
		font-size: 1.5rem;
		min-width: auto;
		padding: 1.2rem 2rem !important;
	}

	.stock-item-item:last-child .stock-title{
		margin-bottom: 3rem;
	}

	.stock-item-item .report-lists{
		margin-top: 5rem;
		margin-bottom: .3rem;
	}

	.stock-footer p{
		margin-bottom: 0;
	}

	.stock-point{
		margin: 0 0 1.6rem;
	}

	.stock-date-report{
		bottom: 6rem;
	}

	.counter-list-wrap{
		padding: 0 2rem 0 8rem;
		row-gap: 0;
	}

	.counter-list{
		row-gap: 8rem;
	}

	.counter-list-wrap .stock-title{
		top: 10rem;
	}

	.stock-item-item .report-lists li:not(:last-child){
		padding-bottom: .7rem;
		margin-bottom: .7rem;
	}

	.counter-header h3{
		font-size: 1.8rem;
	}

	.counter-number{
		font-size: 4rem;
	}

	.swiper-slide-card .card-item-title{
		display: block;
		display: -webkit-box;
		max-width: 100%;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.journey-item__title{
		font-size: 2.8rem;
	}

	.swiper-slide-card .card-item-title{
		font-size: 1.6rem;
		min-height: 4rem;
	}

	.swiper-slide-card .card-item-excerpt, .swiper-slide-card .card-item-link a{
		font-size: 1.4rem;
	}

	.swiper-slide-card .card-item-content{
		gap: 1.6rem;
		padding: 2rem 1.5rem;
	}

}

@media (max-width: 1280px) {

}

/* Ipad */

@media (max-width: 1024px) {

}

@media (min-width: 768px) and (max-width: 1024px) {

	.section-nav ul>li{
		margin: 0 2rem;
	}

	.section-nav ul>li a::before{
		height: .2rem;
	}

	.field-item .card-item-content{
		padding: 4rem 2rem;
	}
	.field-item .card-item-title{
		font-size: 1.8rem;
		margin-bottom: 1rem;

	}

	.field-icon img{
		width: 3.6rem;
		height: 3.6rem;
	}

	.wrap-items.infor-items > *{
		flex: 0 0 100%;
		max-width: 100%;
	}

	.counter-list-wrap{
		padding: 0 2rem;
	}

	.stock-item{
		gap: 2rem;
		padding: 3rem 0 0;
	}

	.stock-item-item:last-child{
		padding: 0 2rem 4rem;
	}

	.stock-title{
		font-size: 2rem;
	}

	.stock-item-item:last-child .stock-title{
		margin-bottom: 2rem;
	}

	.stock-item-item .report-lists{
		margin-top: 2rem;
	}

	.stock-point-param{
		font-size: 4.6rem;
	}

	.stock-point-icon img{
		width: 2rem;
	}

	.stock-footer .infor-btn, .journey-item .btn{
		margin-top: 2rem;
		font-size: 1.4rem;
		padding: 8px 14px !important;
		min-width: auto;
	}

	.stock-date-report{
		bottom: 6rem;
	}

	.info-item-overlay{
		aspect-ratio: 3 / 2;
	}

	.counter-list-wrap .stock-title{
		top: 8rem;
	}

	.counter-list{
		padding: 0;
		column-gap: 0;
		row-gap: 4rem;
	}

	.counter-header h3{
		font-size: 1.6rem;
	}

	.counter-header p{
		font-size: 1.2rem;
	}

	.counter-number{
		font-size: 2.8rem;
	}

	.swiper-slide-card .card-item-content{
		gap: 1.6rem;
		padding: 2rem 1.5rem;
	}

	.swiper-slide-card .card-item-title{
		font-size: 1.4rem;
		min-height: 3.6rem;
	}

	.swiper-slide-card .card-item-excerpt{
		font-size: 1.4rem;
	}

	.swiper-slide-card .card-item-link{
		margin-top: 0;
		margin-left: -.7rem;

	}

	.swiper-slide-card .card-item-link a{
		font-size: 1.4rem;
		gap: 0;
	}

	.swiper-slide-card .card-item-link svg{
		width: 2rem;
		height: 2rem;
	}

	.section-journey{
		height: 36rem;
	}

	.journey-item__title{
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.section-partner{
		padding-bottom: 3rem;
	}

	.section-partner .wrap-items{
		max-width: 80%;
	}

	.section-partner .wrap-items .swiper-slide-image img{
		max-height: 6rem;
	}

	.journey-item .btn{
		margin-top: 3rem;
		font-size: 1.4rem;
		font-weight: 500;
		padding: .8rem 1.8rem !important;
		min-width: auto;
	}


}

/* Ipad Landscape */

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {

}


@media (max-width: 992px) {

}

@media  (max-width: 767px) {
	.section-journey{
		background-attachment: inherit;
		aspect-ratio: 1 / 1;
		width: 100%;
		        background-size: 100% 100% !important;
	}
}

@media (min-width: 481px) and (max-width: 767px) {

	.section-nav{
		top: 4rem;
	}

	.section-nav ul > li{
		margin: 0 2rem;
	}

	.section-nav ul > li a::before{
		height: .2rem;
	}

	.section-nav ul > li a{
		padding-bottom: 1rem;
	}

	.section-field .section-head{
	}

	.wrap-items.field-items{
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.field-item>*{
		flex: 0 0 100%;
		max-width: 100%;
	}

	.field-item .card-item-content{
		padding: 2rem 2rem;
		gap: 1.6rem;
	}

	.field-item .card-item-title{
		font-size: 1.8rem;
		margin-bottom: 0;
	}

	.field-item .card-item-image{
		--aspect-ratio: 4 / 3;
	}

	.field-icon img{
		width: 4rem;
	}

	.wrap-items.infor-items > *{
		flex: 0 0 100%;
		max-width: 100%;
	}

	.counter-list-wrap{
		padding: 0 2rem;
	}

	.stock-item{
		gap: 2rem;
		padding: 3rem 0 0;
	}

	.stock-item-item:last-child{
		padding: 0 2rem 4rem;
	}

	.stock-title{
		font-size: 2rem;
	}

	.stock-item-item:last-child .stock-title{
		margin-bottom: 2rem;
	}

	.stock-item-item .report-lists{
		margin-top: 2rem;
		max-width: 100%;
	}

	.stock-point-param{
		font-size: 4.6rem;
	}

	.stock-point-icon img{
		width: 2rem;
	}

	.stock-footer .infor-btn, .journey-item .btn{
		margin-top: 2rem;
		font-size: 1.5rem;
		padding: 1rem 2rem !important;
		min-width: auto;
	}

	.stock-date-report{
		bottom: 6rem;
	}

	.info-item-overlay{
		aspect-ratio: 3 / 2;
	}

	.counter-list-wrap .stock-title{
		top: 8rem;
	}

	.counter-list{
		padding: 0;
		column-gap: 0;
		row-gap: 4rem;
	}

	.counter-header h3{
		font-size: 1.6rem;
	}

	.counter-header p{
		font-size: 1.2rem;
	}

	.counter-number{
		font-size: 2.8rem;
	}

	.swiper-slide-card .card-item-content{
		gap: 1rem;
		padding: 2rem 1.5rem
	}

	.swiper-slide-card .card-item-title{
		font-size: 1.6rem;
		min-height: 3.6rem;
	}

	.card-item-link a{
		gap: 0;
	}

	.swiper-slide-card .card-item-link svg{
		width: 2.6rem;
		height: 2.6rem;
	}

	.swiper-slide-card .card-item-link{
		margin-left: -1rem;
		margin-top: 1rem;
	}

	.section-journey{
		background-size: auto 100%, cover;
	}

	.section-journey .section-head{
		padding: 0 1.5rem;
	}

	.section-journey .section-head p{
		text-align: justify;
	}

	.journey-item__title{
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.section-journey .swiper-control-absolute .swiper-prev{
		left: -15px;
	}

	.section-journey .swiper-control-absolute .swiper-next{
		right: -15px;
	}

	.journey-list{
		padding: 0;
	}

	.section-partner .swiper-slide-image img{
		max-height: 6rem;
	}

}

@media (min-width: 0px) and (max-width: 480px) {

	.section-nav{
		top: 4rem;
	}

	.section-nav ul{
		justify-content: space-between;
	}

	.section-nav ul > li{
		margin: 0;
	}

	.section-nav ul > li a::before{
		height: .2rem;
	}

	.section-nav ul > li a{
		padding-bottom: 1rem;
	}

	.section-field .section-head{
	}

	.wrap-items.field-items{
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.field-item>*{
		flex: 0 0 100%;
		max-width: 100%;
	}

	.field-item .card-item-content{
		padding: 2rem 2rem;
		gap: 1.6rem;
	}

	.field-item .card-item-title{
		font-size: 1.8rem;
		margin-bottom: 0;
	}

	.field-item .card-item-image{
		--aspect-ratio: 4 / 3;
	}

	.field-icon img{
		width: 4rem;
	}

	.field-item:hover .card-item-content{
		background: transparent;
	}

	.card-item .card-item-title {
		color: var(--sb-primary);
	}
	.section-field 	.card-item .card-item-title {
		color: #fff;
	}





	.field-item .card-item-content {
		opacity: 1;
	}

	.wrap-items.infor-items > *{
		flex: 0 0 100%;
		max-width: 100%;
	}

	.counter-list-wrap{
		padding: 0 2rem;
	}

	.stock-item{
		gap: 1rem;
		padding: 3rem 0 0;
	}

	.stock-item-item:last-child{
		padding: 0 2rem 4rem;
	}

	.stock-title{
		font-size: 2rem;
	}

	.stock-item-item:last-child .stock-title{
		margin-bottom: 2rem;
	}

	.stock-item-item .report-lists{
		margin-top: 2rem;
		max-width: 100%;
	}

	.stock-point-param{
		font-size: 4.6rem;
	}

	.stock-point-icon img{
		width: 2rem;
	}

	.stock-footer .infor-btn, .journey-item .btn{
		margin-top: 2rem;
		font-size: 1.5rem;
		padding: 1rem 2rem !important;
		min-width: auto;
	}

	.stock-date-report{
		bottom: 6rem;
	}

	.info-item-overlay{
		aspect-ratio: 3 / 4;
	}

	.counter-list-wrap .stock-title{
		top: 8rem;
	}

	.counter-list{
		padding: 0;
		column-gap: 0;
		row-gap: 4rem;
	}

	.counter-header h3{
		font-size: 1.6rem;
	}

	.counter-header p{
		font-size: 1.2rem;
	}

	.counter-number{
		font-size: 2.8rem;
	}

	.swiper-slide-card .card-item-content{
		gap: 1rem;
		padding: 2rem
	}

	.swiper-slide-card .card-item-title{
		font-size: 1.6rem;
		min-height: 3.6rem;
	}

	.card-item-link a{
		gap: 0;
	}

	.swiper-slide-card .card-item-link svg{
		width: 2.6rem;
		height: 2.6rem;
	}

	.swiper-slide-card .card-item-link{
		margin-left: -1rem;
		margin-top: 1rem;
	}

	.section-journey{
		background-size: auto 100%, cover;
	}

	.section-journey .section-head{
		padding: 0 2rem;
	}

	.section-journey .section-head p{
		text-align: justify;
	}

	.journey-item__title{
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.section-journey .swiper-control-absolute .swiper-prev{
		left: -15px;
	}

	.section-journey .swiper-control-absolute .swiper-next{
		right: -15px;
	}

	.journey-list{
		padding: 0;
	}

	.section-partner .swiper-slide-image img{
		max-height: 6rem;
	}


	.stock-item-item .report-lists li a{
		font-weight: 600;
	}

	.section-posts-list .swiper{
	}

}

@media (max-width: 380px) {
	.stock-title{
		font-size: 2rem;
	}
}