#page-home {
	overflow-x: hidden;
}

.home-about {
	display: flex;
	align-items: center;
	padding: 40px 0 150px 0;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

.home-about__row {
	gap: 20px 0;
	align-items: center;
}

.home-about .c-ttl__01 {
	font-weight: 700;
	font-size: 3.2rem;
}
.home-about .c-ttl__01 p {
	text-transform: none;
	font-size: 20px;
	font-weight: 500;
}

.home-about__content {
	padding-right: 25px;
}


.home-about__divider {
	width: 125px;
	height: 2px;
	background-color: #2a4e9e;
	margin: 10px 0 20px 0;
}

.home-about__description {
	color: #595959;
	line-height: 1.8;
	margin-bottom: 20px;
}

.home-about__content {
	position: relative;
	padding: 0 0 5% 5%;
	z-index: 1;

}

.home-about__image-child {
	overflow: hidden;
	line-height: 0;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
	transition: transform 0.3s ease;
}

.home-about__image-child:hover {
	transform: scale(1.05);
}

.home-about__image-child img {
	border-radius: 8px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-about__image-child:nth-child(2) {
	position: absolute;
	left: 0;
	bottom: 35%;
	width: 50%;
	z-index: 2;
	box-shadow: none;
	animation: upDown 4s ease-in-out infinite;
}

.title-separator {
    display: flex;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
}
.title-separator:before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #2a4e9e54;
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 77px);
}
.title-separator .separator-center {
    display: block;
    width: 32px;
    height: 12px;
    position: relative;
}
.title-separator:after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #2a4e9e54;
    position: absolute;
    top: calc(50% - 1px);
    right: calc(50% - 77px);
}
.title-separator .separator-center:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid #008b34;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 8px;
}
.title-separator .separator-center:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid #008b34;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 8px;
}
.home-about2__image-child.hover-effect_1 img {
    animation: upDown 4s ease-in-out infinite;
}
.home-about__description ul li {
    list-style: disc;
    margin-left: 25px;
}
.home-category__desc h2 {
    color: #292a33;
    font-size: 30px;
    margin-bottom: 10px;
}
@keyframes upDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.home-about2 .line {
    width: 177px;
    /* margin: 0 auto; */
    position: relative;
    height: 2px;
    display: block;
    margin-top: 10px;
}
.home-about2 .line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(100% - 35px);
    background: #db2b40 !important;
    transition: all .3s ease-in-out;
}
.home-about2 .line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(100% - 35px);
    background-color: #a4d164;
    transition: all .3s ease-in-out;
}
 .home-about2 .line::after {
    left: auto;
    right: 0;
    width: 27px;
    background: #75a93f;
}

.home-about2 .c-ttl__02>* {
    display: inline-block;
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
    position: relative;
    color: #2a4e9e;
    text-transform: uppercase;
}


@media (max-width: 768px) {

	.home-about__title {
		font-size: 2.5rem;
	}

	.home-about {
		padding: 50px 0 30px;
	}

}

/*  */
.benefits {
	border-bottom: 1px solid #a3d8fe3d;
}

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.benefits__item {
	padding: 40px 30px;
	position: relative;
	align-items: center;
	display: flex;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.benefits__item:not(:last-child):after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #a3d8fe3d;
}

.benefits__item:hover {
	background-color: #fafafa;
	/* transform: translateY(-2px); */
}

.benefits__icon {
	width: 54px;
	height: 54px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: transform 0.3s ease;
}

.benefits__ct {
	width: calc(100% - 65px);
	color: #666;
	padding-left: 10px;
	line-height: 1.6;
}

.benefits__ct strong {
	color: #2a4e9e;
	font-size: 18px;
	font-weight: 700;
}

.benefits__item:hover .benefits__icon {
	transform: scale(1.1);
}

.benefits__icon svg,
.benefits__icon img {
	width: 54px;
	height: 54px;
	stroke: #eb6d26;
	fill: none;
	stroke-width: 2;
}

.benefits__icon::before {
	content: "";
	position: absolute;
	top: 0.2em;
	left: 0em;
	width: 62px;
	height: 62px;
	z-index: -1;
	background: #b0e8f8;
	border-radius: 70% 30% 71% 29% / 25% 31% 69% 75%;
	animation: morph_rotate 4s linear infinite forwards paused;
	animation-play-state: running;
	transition: 0.4s;
}

.benefits__title {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.3;
}

.benefits__description {
	color: #666;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.benefits__grid {
		grid-template-columns: 1fr;
	}

	.benefits__item:not(:last-child):after {
		display: none;
	}

	.benefits__item:not(:last-child) {
		border-bottom: 1px solid #e0e0e0;
	}

	.benefits__item {
		padding: 20px 15px;
	}
}

/*  */
.home-product {
	padding: 20px 0 20px;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}


.home-about2 {
	background-color: #73c5da1f;
	background-image: url("../images/h3-banner1.png");
	background-repeat: no-repeat;
	background-position: center right;
	padding: 50px 0 0 0;
}

.home-about2__description {
	margin-bottom: 20px;
	color: #595959;
	font-size: 17px;
}

.home-about2__row {
	--gutter: 30px;
	gap: 10px 0;
}

.why-choose {
	/* background: linear-gradient(45deg, #bae5ff, #6edcfd, blue); */
	color: white;
	/* background-color: transparent !important; */
	padding: 30px 0;
}

.why-choose__row {
	--gutter: 0;
}

.why-choose .c-ttl__01-accent {
	/* font-size: 100px; */
	opacity: .1;
	background: transparent;
	color: #f6e9e4;
}

.why-choose__image {
	line-height: 0;
	height: 100%;
}

.why-choose__image img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.why-choose__right {
	/* padding: 80px 60px 50px; */
	/* background: #db2b40; */
	/* box-shadow: inset 1px 1px 6px #2b60aa6e; */
	/* display: flex; */
	/* flex-direction: column; */
	/* justify-content: center; */
}

.why-choose__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 25px;
}

.why-choose__list-item {
	align-items: start;
}


.why-choose__list-icon {
	width: 95px;
	position: relative;
	z-index: 1;
}

.why-choose__list-icon1::before {
	content: "";
	position: absolute;
	top: 0.2em;
	left: 0em;
	width: 62px;
	height: 62px;
	z-index: -1;
	background: #4386fe;
	border-radius: 70% 30% 71% 29% / 25% 31% 69% 75%;
	animation: morph_rotate 4s linear infinite forwards paused;
	transition: 0.4s;
}

.why-choose__list-icon1::before {
	animation-play-state: running;
}


.why-choose__list-icon img {
	width: 100%;
}

.why-choose__list-ct {
	width: calc(100% - 110px);
	font-size: 20px;
}

.why-choose__list-ct h3 {
	font-size: 45px;
	margin-bottom: 0;
}

.why-choose__list-ttl {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 10px;
	text-transform: uppercase;
}
section.home-about.khuyenmai {
    padding: 30px 0px;
}
@media (max-width: 768px) {
	.why-choose__list {
		grid-template-columns: 1fr;
	}

	.why-choose__right {
		padding: 10px 15px 20px;
	}
}

@keyframes morph_rotate {
	0% {
		border-radius: 70% 30% 71% 29%/25% 31% 69% 75%;
		transform: rotate(1turn);
	}

	50% {
		border-radius: 29% 71% 34% 66%/39% 62% 38% 61%;
	}

	100% {
		border-radius: 70% 30% 71% 29%/25% 31% 69% 75%;
		transform: rotate(0turn);
	}
}

.home-category {
	padding: 30px 0 50px;
	background: #f7f1e9;
}

.home-review {
	background: url(../images/bg-img.jpg) no-repeat left bottom/cover;
	padding: 80px 0 50px;
	position: relative;
	z-index: 1;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: left bottom !important;
}

.home-review::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.193);
	z-index: -1;
}

.review-block {
	width: 50%;
	margin-left: auto;
}

.review-block .c-ttl__01-accent {
	background: white;
	background-clip: text;
	opacity: .9;
}

.slide-review:hover .slick-arrow {
	opacity: 1;
}

.slide-review .slick-arrow:hover svg,
.slide-review .slick-arrow:hover svg path {
	fill: var(--color-2);
}

.slide-review .slick-arrow svg {
	width: 30px;
	height: 30px;
}

.slide-review .slick-prev {
	left: -15px;
}

.slide-review .slick-next {
	right: -15px;
}

.slide-review__wrap {
	/* padding-right: 60px; */
}

.slide-review__desc {
	margin-bottom: 25px;
	/* font-size: 18px; */
	margin-top: 15px;
	color: #595959;
}

.slide-review__info-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}

.slide-review__info-avatar img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.slide-review__info-ct {
	width: calc(100% - 90px);
	padding-left: 10px;
}

.slide-review__info-name {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
}

.slide-review__info-postion {
	color: #595959;
	font-size: 15px;
}

.home-news {
	padding: 30px 0 40px;
}

.home-news .c-ttl__01-accent.sm {
	font-size: 80px;
}
section.chungnhan {
    padding: 30px 0px;
}

section.chungnhan .images {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #cdcdcd;
    filter: drop-shadow(2px 4px 6px #cdcdcd);
}

section.chungnhan .name-book {
    text-align: center;
    padding: 10px;
    position: absolute;
    overflow: hidden;
    background: #ffffff96;
    width: 100%;
    bottom: 0;
}

section.chungnhan .images img {
    width: 100%;
    object-fit: cover;
}

section.chungnhan .item-book-one:hover img {
}
section.home-promotional {
    padding-bottom: 40px;
}
section.home-about.khuyenmai .home-about__image {
    padding: 0 0 0% 2%;
}
.line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(100% - 35px);
    background: #db2b40 !important;
    transition: all .3s ease-in-out;
}
.line {
    width: 177px;
    position: relative;
    height: 2px;
    display: block;
    margin-top: 10px;
}
 .line::after {
    left: auto;
    right: 0;
    width: 27px;
    background: #75a93f;
}
 .line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(100% - 35px);
    background-color: #a4d164;
    transition: all .3s ease-in-out;
}
.camnhan {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}
.item-book-one {padding-top: 25px;}

section.chungnhan .images img {
    display: block;
}
.camnhan .line::after {
    right: 2px;
    left: unset;
    width: 27px;
}
section.chungnhan .images {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    padding: 10px;
    border: 3px solid #2a4e9e;
    filter: drop-shadow(2px 4px 2px #cdcdcd);
}
section.chungnhan .images img {
    display: block;
    border-radius: 5px;
}
.home-category__desc {
	font-size: 15px;
	color: #595959;
	padding-left: 25px;
}
.slide-mv__info {
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 50%;
	transform: translateY(50%);
	z-index: 999;
}
.slide-mv__ct {
    color: white;
    margin: 0 auto;
    text-align: left;
    font-size: 18px;
}
.slide-mv__ct-ttl {
    font-size: 45px;
    font-weight: 700;
    /* max-width: 50%; */
    line-height: 1.1;
    margin: auto;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}



.home-category__desc ul li {
    list-style: disc;
    margin-left: 25px;
    padding-bottom: 5px;
}

.home-category__desc p {
    padding-bottom: 10px;
}

.images-categorys img {
    display: block;
    border-radius: 14px;
}
.pbmit-ihbox-contents {
    top: 65%;
    position: absolute;
    transform: translateY(-50%);
    left: 20px;
    z-index: 9999;
}

h4.pbmit-element-heading {
    font-size: 17px;
    font-family: Norican, sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 38px;
    margin-bottom: 0;
    color: #ffb200;
}

h4.pbmit-element-title {
    font-size: 30px;
    line-height: 44px;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #fff;
}
.item-slider-stages {
    position: relative;
}
.slick-slide img{
	border-radius: 8px;
}

.pbmit-svg-btn.pbmit-ihbox-btn a {
    margin-top: 10px;
    padding: 5px 15px;
    display: inline-block;
    -moz-border-radius: 36px;
    border-radius: 36px;
    color: #fff;
    border: 2px solid #fff;
    transition: 0.5s ease;
}

.pbmit-svg-btn.pbmit-ihbox-btn a:hover {
    background: #ffb200;
    color: #fff;
    border: 2px solid #ffb200;
	transition: 0.5s ease;
}
/* .home-product .product-column {
    background: #fff;
    border-radius: 50px;
    padding: 30px;
    margin-top: -140px;
} */
.hedding-title-home-product span {
    line-height: 34px;
    letter-spacing: 0;
    color: #ffb200;
    text-transform: none;
    font-style: normal;
    font-family: "Playfair", serif;
}

.hedding-title-home-product {
    text-align: center;
	margin-bottom: 40px;
	position: relative;
}

.hedding-title-home-product::before{
	content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background: #ddd;
    left: 0;
    right: 0;
}

h2.name-product-home {
    padding: 10px 30px;
    background: #0071bc;
    color: #fff;
    border-radius: 30px;
    position: relative;
    font-size: 20px;
    font-weight: 700;
	display: inline-block;
}

.shopify-buy__btn-wrapper a {
    color: #f5b43f;
    background-color: #db2b40;
    border-radius: 40px;
    padding: 7px 27px;
    letter-spacing: .3px;
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
}

figure.hover-effect_1:before {
    content: "";
    background: url( https://khobocali.com/wp-content/uploads/2023/09/burger-banner-01.png);
    width: 100%;
    height: 100%;
    z-index: 99;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
}

figure.hover-effect_1:hover:before {
    transform: scale(.8);
    opacity: 0;
    visibility: hidden;
    transition: 0.7s ease;
}

.slide-mv__info .ctnr {
    width: 80%;
    max-width: 75%;
}



.box-testimonial .testimonial-left {
	padding: 24px 13px;
	position: relative;
	/* display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; */
}
.box-testimonial .testimonial-header {
	text-align: center;
	margin-bottom: 10px;
}
.box-testimonial .testimonial-subtitle {
	color: #d4a574;
	font-size: 21px;
	font-style: italic;
	margin-bottom: 0px;
	font-family: "Playfair", serif;
}
.box-testimonial .testimonial-title {
	color: #2c3e50;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
}
.box-testimonial .testimonial-content {
	position: relative;
	text-align: center;
}
.box-testimonial .testimonial-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	padding: 0px 50px;
}
.slider-testimonial button svg {
    width: 30px;
    height: 30px;
    opacity: 1;
}

.slider-testimonial .slick-prev svg {
    fill: #000;
}

.slider-testimonial button {
    opacity: 1;
    right: 65px;
    top: 40%;
}

.slider-testimonial .slick-prev.slick-arrow svg {
    transform: rotate(180deg);
}
.box-testimonial .nav-arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: white;
	border: 1px solid #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.box-testimonial .nav-arrow:hover {
	background-color: #f0f0f0;
	transform: scale(1.05);
}
.box-testimonial .nav-arrow::before {
	content: '';
	width: 12px;
	height: 12px;
	border: 2px solid #666;
	border-top: none;
	border-right: none;
	transform: rotate(45deg);
}
.box-testimonial .nav-arrow.next::before {
	transform: rotate(-135deg);
}
.box-testimonial .testimonial-stars {
	display: flex;
	justify-content: center;
	gap: 3px;
	margin-bottom: 5px;
}
.box-testimonial .star {
	color: #ffd700;
	font-size: 20px;
}
.box-testimonial .avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #8b4513;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	color: white;
	font-size: 24px;
	font-weight: bold;
}
.box-testimonial .testimonial-text {
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 14px;
	font-style: italic;
	width: 90%;
}
.box-testimonial .customer-info {
	text-align: center;
}
.box-testimonial .customer-name {
	font-size: 16px;
	font-weight: 600;
	color: #8b4513;
	margin-bottom: 5px;
}
.box-testimonial .customer-role {
	font-size: 14px;
	color: #888;
}
.box-testimonial .testimonial-indicators {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
}
.box-testimonial .indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}
.box-testimonial .indicator.active {
	background-color: #8b4513;
}
.box-testimonial .video-right {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.box-testimonial .video-container {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.box-testimonial .video-thumbnail {
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect width="800" height="600" fill="%234a90e2"/><rect x="0" y="400" width="800" height="200" fill="%23f4c430"/><rect x="100" y="300" width="200" height="100" fill="%23fff"/><rect x="350" y="320" width="300" height="60" fill="%23666"/><circle cx="650" cy="150" r="80" fill="%23228b22"/><circle cx="700" cy="120" r="60" fill="%23228b22"/></svg>') center/cover;
	position: relative;
}
.box-testimonial .video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px;
}
.box-testimonial .video-title {
	color: white;
	font-size: 28px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	line-height: 1.2;
	text-align: center;
}
.box-testimonial .video-subtitle {
	color: #ffd700;
	font-size: 20px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	text-align: center;
	margin-top: 20px;
}
.box-testimonial .location-badge {
	background: white;
	color: #333;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	align-self: center;
	margin-top: 20px;
}
.box-testimonial .location-badge::before {
	content: "📍";
}
.box-testimonial .video-controls {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	color: white;
}
.box-testimonial .play-button {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}
.box-testimonial .time-display {
	font-size: 14px;
	color: white;
}
.box-testimonial .progress-bar {
	flex: 1;
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	position: relative;
}
.box-testimonial .progress-fill {
	height: 100%;
	background: #ffd700;
	border-radius: 2px;
	width: 30%;
}
.box-testimonial .volume-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}
.box-testimonial .volume-icon, .box-testimonial .fullscreen-icon, .box-testimonial .more-icon {
	width: 20px;
	height: 20px;
	cursor: pointer;
	opacity: 0.8;
}
video.elementor-video {
    display: block;
    width: 100%;
    height: 100%;
}

section.box-testimonial {
    background: #f7f1e9;
    padding: 30px 0px;
}
.js-slides.arrow-common.row {
    padding-top: 40px;
}
.box-container-subscription {
    display: flex;
    align-items: center;
}

.box-subscription-item-left .hedding-title-home-product {
    text-align: left;
}

.box-subscription-item-left .hedding-title-home-product p {
    font-size: 15px;
    color: #fff;
}

.box-subscription-item-left .hedding-title-home-product h2.name-product-home {
    font-size: 45px;
    color: #fff;
}

.box-subscription-item-left {
    width: 50%;
}

.box-subscription-item-right {
    width: 50%;
}

section.Subcription {
    padding: 45px 0px;
    position: relative;
    height: 520px;
}
.home-about__description p {
    padding-bottom: 15px;
}
form.form-subscription input {
	width: 100%;
    height: 48px;
    display: inline-block;
    margin-bottom: 15px;
    padding: 0px 20px;
    border-radius: 25px;
    border: 1px solid #fff;
    backdrop-filter: blur(21px);
    background: #ffffff2b;
}

form.form-subscription button {
    background-color: #ffb200;
    color: #fff;
    font-size: 14px;
    border-radius: 25px;
    height: 48px;
    line-height: 48px;
    padding: 0px 39px;
}
.e-hosted-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
form.form-subscription input::placeholder {
    color: #fff;
}
.box-btn-check-all {text-align: center;}

.box-btn-check-all a {
    color: #ffb200;
    padding-bottom: 10px !important;
    padding: 0px 20px;
    border-bottom: 1px solid;
    display: inline-block;
    margin-bottom: 30px;
}

.media-icon ul li svg {
    width: 20px;
    height: 20px;
}

.media-icon ul li a {
    padding: unset;
    border: none;
    display: flex;
    margin-bottom: 0px;
    width: 40px;
    height: 40px;
    background: #db2b40;
    justify-content: center;
    align-items: center;
    padding-bottom: 0px !important;
    border-radius: 7px;
}

.media-icon ul {
    display: flex;
    justify-content: center;
    gap: 0px 15px;
}
.media-icon ul li a svg path {
    fill: #fff;
}
section.home-about .c-btn-01 {
    border-radius: 25px;
}
.testimonial-left:before {
    content: "";
    background: url( https://khobocali.com/wp-content/uploads/2023/03/pattern-shap-02.png);
    width: 374px;
    height: 341px;
    position: absolute;
    top: 30%;
    left: 0;
    z-index: 9;
}
section.home-about .c-btn-01 {
    border-radius: 25px;
}
.home-about__image.clm iframe {
    height: 270px;
    margin-top: 20px;
    border-radius: 13px;
    width: 100%;
}
.home-about__image.clm {
    position: relative;
}
.home-about__content.clm .hedding-title-home-product {
    text-align: left;
    padding-bottom: 10px;
}

.home-about__image-child:nth-child(2) img {
    width: 58%;
}

/* Tuân css  */
.slideshows-banner .slick-next{
	right: -40px;
}

.slideshows-banner .slick-prev{
	left: -40px;
}

.slideshows-banner .slick-arrow svg,
.slideshows-banner .slick-arrow{
	width: 40px;
	height: 40px;
	transition: .3s;
}

.slideshows-banner .slick-arrow svg path{
	stroke: #FFF;
}

.slideshows-banner:hover .slick-next{
	opacity: 1;
	right: 0px;
}

.slideshows-banner:hover .slick-prev{
	opacity: 1;
	left: 0px;
}

.slideshows-banner-bottom .slick-slide{
	margin: 0 5px;
}

.slideshows-banner-bottom .slick-list{
	margin: 0 -5px;
}

.slideshows-banner-bottom{
	margin: 30px 0 16px;
}

.news-home h2.title{
	margin: 0 0 15px;
    text-transform: uppercase;
	font-size: 22px;
	color: #0071bc;
	border-bottom: 1px solid #707070;
    padding-bottom: 10px;
}

.slide-news-home {
	padding: 16px 16px 45px;
	border-radius: 8px;
	position: relative;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.img-100 {
    position: relative;
    height: 0;
    overflow: hidden;
    display: block;
}

.img-100>img {
    object-fit: cover;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s linear;
}

.wrap-img{
	display: block;
}

.slide-news-home .wrap-img{
	padding-bottom: 50%;
}

.slide-news-home .content .title{
	color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 15px;
    letter-spacing: 0.72px;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.3;
	transition: .3s;
}

.slide-news-home .content .title:hover{
	color: #0071bc;
}

.slide-news-home .content .des{
	color: #5c6873;
	font-size: 15px;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
	line-height: 22px;
}

.slide-news-home .slick-dots{
	position: absolute;
	bottom: 10px;
	left: 16px;
	display: inline-block;
	width: unset;
}

.slide-news-home .slick-dots li{
	border: 1px solid #0071bc;
	margin: 0 3px;
}

.slide-news-home .slick-dots li.slick-active{
	background-color: #0071bc;
}

.slide-news-home .slick-next{
	opacity: 1;
	position: absolute;
	bottom: 16px;
	right: 16px;
	top: unset;
}

.slide-news-home .slick-prev{
	opacity: 1;
	position: absolute;
	bottom: 16px;
	right: 30px;
	top: unset;
	left: unset;
}

.slide-news-home .slick-arrow svg path{
	stroke: #0071bc;
}

/* .news-home .news-right h2.title{
	border-bottom: 1px solid #707070;
    padding-bottom: 10px;
} */

.news-home .news-right .wrap-img{
	padding-bottom: 83.5%;
	border-radius: 8px;
}

.news-home .news-right .content .title{
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
	line-height: 1.3;
	color: #333;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	transition: .3s;
}

.news-home .news-right .content .title:hover{
	color: #0071bc;
}

.news-home .news-right .content .des{
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
	font-size: 14px;
	color: #5c6873;
	text-align: justify;
	line-height: 22px;
}

.news-home .news-right .content .in4{
	display: flex;
	align-items: center;
	font-size: 15px;
}

.news-home .news-right .content .in4 p{
	color: rgba(33, 37, 41, 0.75);
}

.news-home .news-right .content .in4 svg path{
	fill: #0071bc;
	stroke: #0071bc;
}

.news-home .news-right .content .in4 svg{
	margin-right: 8px;
}

.news-home .item-news-right{
	margin-bottom: 15px;
    border-radius: 8px;
    padding: 16px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 10px 1px;
	border: 1px solid #e8e4e4;
}

.news-home .news-right .see-more{
	color: #0071bc;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding: 10px 28px;
    background: #0071bc;
    border-radius: 8px;
	display: block;
	color: #FFF;
	text-align: center;
	transition: .3s;
}

.news-home .news-right .see-more:hover{
	background-color: #00289a;
}

/* .news-home .news-right .see-more-wrap{
	text-align: center;
	position: relative;
} */

/* .news-home .news-right .see-more-wrap::before{
	content: '';
	background-color: #0071bc;
	height: 1px;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
} */

.swal2-title{
	font-size: 18px !important;
}
/* End  */
@media (max-width: 768px) {
	.box-testimonial .testimonial-section {
		flex-direction: column;
   }
	.box-testimonial .testimonial-left {
		padding: 40px 20px;
   }
	.box-testimonial .testimonial-title {
		font-size: 28px;
		}
	.box-testimonial .video-right {
		min-height: 50vh;
   }
}


@media (max-width: 1023px) {
	.review-block {
		width: 100%;
	}

	.js-slide {
		padding: 0 10px;
	}

	.home-category {
		padding: 55px 0 30px;
	}

	.home-about2 {
		padding: 30px 0;
	}

	.home-review {
		padding: 60px 0 25px;
	}

	.home-news .c-ttl__01-accent.sm {
		font-size: 35px;
	}

	.home-news {
		padding: 55px 0 30px;
	}
}



@media(max-width:990px){
	.slide-mv__info{
		display: none;
	}
	.slide-mv__ct-ttl {
		font-size: 27px;
	}
	
	.slide-mv__ct-brief span {
		font-size: 26px !important;
	}
	
	.slide-mv__ct-brief p {
		font-size: 20px !important;
	}
	
	.home-category__desc {
		padding-top: 20px;
	}
	
	h4.pbmit-element-title {
		font-size: 20px;
	}
	
	.hover-effect_1 img {
		height: 227px !important;
	}
	
	.home-about__image-child:nth-child(2) {
		bottom: 46%;
	}
	
	.home-about {
		padding: 50px 0 70px;
	}
	
	.hedding-title-home-product span {
		font-size: 21px;
	}
	
	.why-choose__list-icon img {
	}
	
	.why-choose__list-icon {
		width: 71px;
	}
	
	.why-choose__list-ct h3 {
		font-size: 27px;
	}
	
	.box-testimonial .testimonial-left {
		padding: 15px 0px;
	}
	
	.box-testimonial .testimonial-nav {
		padding: 0px 2px;
	}
	
	.box-testimonial .testimonial-text {
		width: 100%;
	}
	
	.slider-testimonial button {
		right: 5px;
		opacity: 0;
	}
	
	.box-subscription-item-right {
		width: 100%;
		margin-top: 20px;
	}
	
	.box-subscription-item-left {
		width: 100%;
	}
	
	.box-container-subscription {
		display: block;
	}
	
	.e-hosted-video {
		position: unset;
	}
	
	section.Subcription {
		height: unset;
	}
	
	video.elementor-video {
		border-radius: 10px;
	}
	
	.home-news {
		padding-top: 20px;
	}

	.slide-news-home{
		margin-bottom: 40px;
	}

	/* .news-home .news-right .see-more-wrap::before{
		width: 90%;
	} */
}

@media (max-width: 768px) {
	h2.name-product-home {
        font-size: 16px;
    }

	.home-product{
		padding: 14px 0 20px;
	}
}

@media (max-width: 550px) {
	.news-home .news-right .content .des{
		display: none;
	}

	.news-home .news-right .content .title{
		-webkit-line-clamp: 2;
		padding-left: 10px;
	}
}