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

.home-mv {
	position: relative;
	padding: 50px 0;
	overflow: hidden;
	min-height: 98vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.home-mv::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: black;
	opacity: .4;
}

.home-mv::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 78px;
	left: 0;
	background-image: url(../images//bg-after.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 3;
	bottom: -1px;
}

.home-mv__video {
	position: absolute;
	top: 0;
	left: 0;
	height: 130%;
	overflow: hidden;
	width: 100%;
	z-index: 1;
}

.home-mv__video img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.home-mv__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-mv__info {
	text-align: center;
	position: relative;
	z-index: 4;
	color: #FAFAFA;
}

.home-mv__lead {
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.home-mv__ttl {
	color: #FAFAFA;
	/* font-size: clamp(30px, 10vw, 110px); */
	line-height: 1;
	margin-bottom: 10px;
	font-size: 50px;
	text-transform: uppercase;
	font-family: "Playfair Display", serif;
}

.home-mv__desc {
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	max-width: 800px;
    margin: 0 auto;
}

.home-mv__desc:not(:last-child) {
	margin-bottom: 30px;
}

.home-mv__info .button-gr svg {
	width: 20px;
	height: 20px;
}

.home-mv__info .button-gr .lien-he.dat-ban svg path {
	fill: #FFF;
}

.home-mv__info .button-gr .lien-he {
	display: inline-flex;
	gap: 10px;
	padding: 5px 30px;
	align-items: center;
	background: #fcba00;
	border-radius: 5px;
	margin: 0 10px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
}

.home-mv__info .button-gr .lien-he.dat-ban {
	color: #FFF;
	background: #7a9c59;
}
.home-about {
	padding: 80px 0;
}

.home-about__img {
	line-height: 0;
}

.home-about__img img {
	border-radius: 20px;
}

.home-about__block {
	gap: 15px 0;
}

.home-about__block .c-ttl__01 {
	margin-bottom: 15px;
}

.home-about__block .c-ttl__01 small {
	margin-bottom: 10px;
}

.home-about__block {
	/* margin-bottom: 40px;
	padding-bottom: 40px; */
	/* border-bottom: 1px solid #eeeeee; */
}

.home-about__gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.home-about__gallery-wrap {
	position: relative;
	display: block;
	transition: all .6s ease-in-out;
}

.home-about__gallery-wrap:hover>.home-about__gallery-img::after {
	opacity: .5;
}

.home-about__gallery-wrap:hover .home-about__gallery-ttl::after {
	opacity: 1;
}

.home-about__gallery-wrap:hover .home-about__gallery-sub {
	height: auto;
	margin-top: 45px;
	opacity: 1;
}

.home-about__gallery-wrap:hover {
	transform: scale(1.09);
}

.home-about__gallery-wrap:hover {
	box-shadow: 3px 3px 8px 3px rgba(0, 0, 0, 0.161);
}

.home-about__gallery-info {
	position: absolute;
	padding: 20px;
	text-align: center;
	left: 0;
	top: 50%;
	width: 100%;
	color: white;
	z-index: 2;
	transform: translateY(-50%);
}

.home-about__gallery-img {
	position: relative;
	overflow: hidden;
	padding-top: calc((367 /262) * 100%);
}

.home-about__gallery-img::after {
	content: '';
	width: 100%;
	background-color: black;
	position: absolute;
	height: 100%;
	opacity: .3;
	top: 0;
	left: 0;
	transition: all .6s;
	z-index: 2;
}

.home-about__gallery-img img {
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: all .6s ease-in;
}

.home-about__gallery-ttl {
	margin-bottom: 5px;
	margin-top: 0;
	font-size: 20px;
	position: relative;
	color: #fff;
	transition: all .3s;
}

.home-about__gallery-ttl::after {
	content: '';
	width: 50px;
	height: 2px;
	left: 50%;
	bottom: -25px;
	margin-left: -25px;
	position: absolute;
	background: rgba(255, 255, 255, 0.7);
	transition: all .5s;
	opacity: 0;
}

.home-about__gallery-sub {

	text-transform: none;
	height: 0;
	transition: all .5s;
	opacity: 0;
}

.modal-overlay-lod {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    /* display: flex; */
}

.modal-overlay-lod .modal-content {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    animation: fadeIn 0.3s ease;
	position: relative;
	max-height: 80vh;
    overflow: auto;
}

.modal-overlay-lod .close-btn-modal{
	padding: 0;
	position: absolute;
	top: 10px;
	right: 10px;
}

.modal-overlay-lod .close-btn-modal svg{
	width: 20px;
	height: 20px;
}

.modal-overlay-lod .warning-infomation .title {
	display: flex;
	align-items: center;
	gap: 10px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.modal-overlay-lod .warning-infomation .title img {
	width: 29px;
}

.modal-overlay-lod .warning-infomation .content p {
	margin-bottom: 10px;
}

.modal-overlay-lod .button-group {
	text-align: center;
	margin-top: 10px;
}

.modal-overlay-lod .button-group .map {
	display: inline-grid;
	grid-template-columns: 20px auto;
	gap: 5px;
	background-color: #ffbd00;
	padding: 5px 20px;
	align-items: center;
	font-weight: 500;
	font-size: 13px;
}

.modal-overlay-lod .button-group .map svg {
	width: 20px;
	height: 20px;
}

/* Hiệu ứng hiện */
@keyframes fadeIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media screen and (min-width: 992px) {
	.home-about__desc p:not(:last-child) {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 992px) {
  .home-gallery{
  display:none;
  }
	.home-about__gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.home-about__gallery-info {
		padding: 10px;
	}

}

@media screen and (max-width: 640px) {
	.home-about__gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-about__gallery-ttl {
		font-size: 17px;
	}
}

.home-review {
	background-attachment: fixed !important;
	padding: 80px 0;
	color: white;
	position: relative;
}

.home-review::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .6);
}

.home-review>.ctnr {
	max-width: 750px;
}

.home-review .c-ttl__01 {
	color: white;
	margin-bottom: 30px;
}

.home-review .c-ttl__01>* {
	color: inherit;
}

.home-review__item {
	text-align: center;
}

.home-review__avatar {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	margin: 0 auto 33px;
}

.home-review__avatar img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-review__desc {
	font-weight: 300;
	font-style: italic;

}

.home-review__name {
	font-size: 13px;
	font-weight: 500;
	margin-top: 25px;
}

.home-review__slider:hover .slick-arrow {
	opacity: 1;
}

.home-review__slider .slick-prev svg {
	transform: rotate(180deg);
}

.home-review__slider .slick-prev {
	left: -40px;
}

.home-review__slider .slick-next {
	right: -40px;
}

.home-review__slider:hover .slick-next {
	right: -25px;
}

.home-review__slider:hover .slick-prev {
	left: -25px;
}

.home-post {
	padding: 50px 0
}

.home-post .c-ttl__01 {
	margin-bottom: 30px;
}

.post-column>.row {
	--gutter: 15px;
	gap: 20px 0;
}

.logo-banner {
	display: none;
}

.banner-title {
	height: 365px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.5);
}

.banner-title:after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 25px solid #FFF;
}

.banner-title .c-ttl__01-lead {
	color: #ffbd00;
	font-size: 57px;
}

.banner-title .c-ttl__01 {
	font-size: 80px;
	color: #FFF;
}

.banner-title .see-menu {
	font-size: 16px;
	color: #ffbd00;
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
}

.banner-title .see-menu::before {
	background-color: currentColor;
    bottom: 0;
    content: "";
    height: 2px;
    left: 20%;
    opacity: .3;
    position: absolute;
    transition: all .3s;
    width: 60%;
}

.banner-title .see-menu:hover {
	color: #FFF;
}

.banner-title .see-menu:hover::before {
	left: 0;
    opacity: 1;
    width: 100%;
}

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

@media (max-width: 992px) {
	.home-mv__lead {
		font-size: 10px;
	}

	.home-mv__desc:not(:last-child) {
		margin-bottom: 16px;
	}

	.home-mv {
		min-height: 70vh;
	}

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

	.home-about .c-ttl__01 {
		font-size: 2.3rem;
		margin-bottom: 10px;
	}

	/* .home-about__block {
		margin-bottom: 20px;
		padding-bottom: 20px;
	} */

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

	.home-review .c-ttl__01 {
		margin-bottom: 20px;
	}

	.home-review__name {
		margin-top: 10px;
	}

	.home-review {
		padding: 30px 0 70px;
	}

	.home-review .slick-dots {
		bottom: -30px;
	}

	.home-post .c-ttl__01 {
		margin-bottom: 10px;
	}

	.home-review__avatar {
		margin-bottom: 15px;
	}
	
	.home-mv__ttl {
		display: none;
	}

	.logo-banner {
		display: block;
		max-width: 300px;
		margin: 0 auto 10px;
	}

	.header-top__flex .header-logo {
		display: none;
	}
}

@media (max-width: 767px) {
	.modal-overlay-lod .button-group {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
	}

	.home-mv__ttl {
		font-size: 34px;
	}

	.home-mv__desc {
		font-size: 14px;
    	line-height: 22px;
	}

	.home-mv__info .button-gr .lien-he {
		display: flex;
        justify-content: center;
        margin: 0 auto 10px;
        font-size: 13px;
        width: 80%;
	}

	.modal-overlay-lod .button-group .map {
		justify-content: center;
	}

	.banner-title {
		height: 300px;
	}

	.banner-title .c-ttl__01 {
		font-size: 60px;
	}

	.banner-title .c-ttl__01-lead {
		font-size: 44px;
	}

	.home-review__slider .slick-arrow {
		display: none !important;
	}
}
