@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@700&family=Saira+Stencil+One&display=swap');

:root{
	--red:#e01b23;
	--yellow: #fbe004;
}
body{
	font-size: 16px;
	/*line-height: 1.2;*/
	font-family: 'Montserrat', sans-serif;
}
p:last-of-type{
	margin-bottom: 0;
}
.fs-12{
	font-size: 0.75rem;
}	
.fs-14{
	font-size: 0.875rem;
}
.fs-32{
	font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
}

.text-justify{
	text-align: justify;
}
/*text color*/
.text-red{
	color: var(--red);
}
/*background*/
.bg-red{
	background-color: var(--red);
}
.bg-red{
	background-color: var(--red);
}


.flex-1{
	flex: 1;
}
.content ol li::marker{
	font-weight: 700;
}
.content ol li + li{
	margin-top: 1rem;
}


/*button*/
.btn_custom{
	display: inline-block;
	padding: 8px 16px;
	font-weight: bold;
	border-radius: 6px;
	transition: all .3s ease-in-out; 
}
.btn-red{
	color: #fff;
	background-color: var(--red);
	border: 1px solid var(--red);
	border-color: var(--red);
	outline: none;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.btn-red:hover{
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.image-cover{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hover-scale{
	transition: .3s ease-out;
}
.hover-scale:hover{
	transform: scale(1.1);
}
.trans-mt3{
	margin-top: -1rem;
}
.trans-mt4{
	margin-top: -1.5rem;
}



.block{
	padding-top: 30px;
	padding-bottom: 30px;
}
/*nav menu*/
.logo{
	width: 150px;
}
.name-company{
	color: var(--red);
	font-weight: bold;
	white-space: normal;
	font-size: 32px;
	text-transform: uppercase;
}

.name-company-us{
	font-size: 20px;
}

.box-user{
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #21252c;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}
.box-hotline{
	display: flex;
	gap: 8px;
	font-weight: 600;
}
.box-hotline .icon{
	width: 60px;
	height: 60px;
	background-color: var(--red);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 24px;
	border-radius: 6px;
}


.box-hotline .phone{
	font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
	color: var(--red);
	text-decoration: none;
	font-weight: bold;
	line-height: 1.2;
}


/**/
.navbar{
	padding: 0px;
	z-index: 99;
	background-color: #fff;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.nav-fixed{
	position: fixed;
	top: 0;
	transition: 4s all ease-in-out;
}

.navbar-nav .nav-item .nav-link{
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	padding-left: 16px;
	padding-right: 16px;
}
.navbar-nav .nav-item .nav-link.active{
	color: var(--yellow)
}
.navbar-toggler:focus{
	box-shadow: none;
}
.navbar .dropdown-menu .dropdown-item{
	color: var(--red);
	font-weight: 500;
	padding: 10px 16px;
}
.navbar .dropdown-menu .dropdown-item:active{
	background-color: var(--red);
}
.nav-item.dropdown .dropdown-menu{
	animation: menu 0.3s;
}
.nav-item.dropdown:hover .dropdown-menu{
	display: block;
}
@keyframes menu {
  	0% { transform: translateY(20px); }
  	100% { transform: translateY(0px); }
}

.top-header:after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	opacity: .05;
	background-image: url('/upload/images/general/13.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.modal-backdrop.show{
	z-index: 1;
}
.title_block{
	color: var(--red);
	font-weight: bold;
	font-size: 1.875rem;
}

.gtranslate_wrapper .glink{
	border: 1px solid #fff;
}
.gtranslate_wrapper .glink + .glink{
	margin-left: 5px;;
}
.gtranslate_wrapper .glink img{
	margin-right: 0;
}

/*___*/
.hashtag{
	flex-wrap: wrap;
	gap: 10px;
}
.hashtag>.item{
	/*margin-right: 10px;*/
	/*margin-bottom: 10px;*/
	padding: 3px 5px;
	font-size: 12px;
	color: #000;
	text-decoration: none;
	border: 1px solid #ccc;
	border-radius: 50rem;
}
.swiper {
  	width: 100%;
  	height: 100%;
  	margin-left: auto;
  	margin-right: auto;
}
.swiper-slide img {
  	display: block;
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
}
.swiper-button-next:after,
.swiper-button-prev:after{
	font-size: clamp(1.25rem, 1.05rem + 1vw, 1.875rem);
	font-family: "Font Awesome 6 Pro";
	color: #060606;
}
.swiper-button-next:after{
	content: "\f105";
}
.swiper-button-prev:after{
	content: "\f104";
}
.swiper-pagination-bullet{
	background-color: var(--red);
	width: 8px;
	height: 8px;
	transition: .3s ease-in;
}
.swiper-pagination-bullet-active{
	width: 20px;
	height: 8px;
	border-radius: 50rem;
}
.swiper1{
	height: 450px;
}


/*___*/
.main-title{
	font-weight: bold;
	position: relative;
	color: var(--red);
	font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
	/*font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);*/
	margin-bottom: 40px;
}
.main-title:before{
	content: "";
	position: absolute;
	width: 50px;
	height: 2px;
	left: 0;
	bottom: -10px;
	background-color: #000;
}
.main-title:after{
	content: "";
	position: absolute;
	width: 100px;
	height: 3px;
	left: 0;
	bottom: -15px;
	background-color: #000;
}
.line-title{
	padding-left: 16px;
	border-left: 3px solid var(--red);
}
.client-title{
	font-weight: bold;
	color: var(--red);
	text-align: center;
	position: relative;
}
/*.client-title:after{
	content: "";
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 3px;
	background-color: var(--red);
}*/

/**/
.card-box{
	display: flex;
	flex-direction: column;
	transition: all .3s ease;
}
.card-box .thumbnail{
	overflow: hidden;
}
.card-box .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	transition: .4s ease-out;
}
.card-box:hover .thumbnail img{
	transform: scale(1.1);
}
.card-box .date{
	color: #727272;
	font-style: italic;
	font-size: 14px;
}
.card-box .title{
	font-weight: 600;
	font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
	color: #000;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: 'Noto Serif', serif;
	text-decoration: none;
}
.card-box:hover .title{
	color: var(--red);
}
.card-box .description{
	text-align: justify;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.card-box-small .thumbnail{
	max-height: 170px;
	height: 170px;
}
.card-box-small .date{
	font-size: 12px;	
}
.card-box-small .description{
	font-size: 14px;
}
.card-row{
	flex-direction: row;
}
.card-row .thumbnail{
	width: 150px;
	height: 150px;
}
.card-row-larger .thumbnail{
	width:300px;
	height: 170px;
}
.card-row .box-content{
	flex: 1;
}
.right_sidebar .card-row .thumbnail{
	width: 100px;
	height: 100px;
}
.card-box.fix-height .thumbnail{
	height: 350px;
}
.list-cart-scroll{
	overflow-y: scroll;
}
.list-cart-scroll::-webkit-scrollbar{
	border-radius: 20px;
  	width: 5px;
  	overflow: hidden;
}
.list-cart-scroll::-webkit-scrollbar-track {
	border-radius: 20px;
  	background-color: #ccc;
}

.list-cart-scroll::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/**/
.card-blog{
	display: flex;
	}
.card-blog .thumbnail{
	width: 50%;
	height: 240px;
	border-radius: 0.375rem;
	overflow: hidden;
}
.card-blog .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	transition: .4s ease-out;
}
.card-blog:hover .thumbnail img{
	transform: scale(1.1);
}
.card-blog .box-content{
	display: flex;
	flex-direction: column;
	flex: 1;
}
.card-blog .title{
	color: #000;
	font-size: 1.25rem;
	font-family: 'Noto Serif', serif;
	text-decoration: none;
}
.card-blog .description{
	margin-top: 0.5rem;
}
.card-blog .description p{
	text-align: justify;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 6;
}
.card-blog .date{
	margin-top: 0.5rem;
	color: #727272;
    font-style: italic;
    font-size: 12px;
}


/**/
.title-single-post{
	border-bottom: 1px solid var(--red);
}
.title-single-post .title{
	margin-bottom: 0;
	font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
	font-weight: 700;
	color: var(--red);
}
.box-time{
	width: 70px;
	height: 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 600;
	background-color: var(--red);
}
.box-time .year{
	font-size: 20px;
}

.back-introduce{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-weight: bold;
	color: var(--red);
	text-decoration: none;
}


/**/
.label_form{
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 8px;
}
.form_input{
	display: block;
	width: 100%;
	padding: 10px;
	border: 2px solid;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
}


.slide_partner img{
	width: 80%;
	filter: grayscale(1);
	transition: .3s ease-in-out;
}
.slide_partner img:hover{
	filter: grayscale(0);
}

.breadcrumb-item a{
	color: #000;
	text-decoration: none;
}
.breadcrumb-item+.breadcrumb-item::before{
	content: "\f054";
	font-family: "Font Awesome 6 Pro";
}
.page-link {
	color: #000;
}

.box-content img{
	display: block;
	margin: 0 auto 20px;
	max-width: 100%;
}
.box-content  table th,
.box-content  table td{
	padding: 0.5rem;
	border: 1px solid;
}
.page_banner{
	position: relative;
	min-height: 150px;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.bg-cover{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	/*filter: grayscale(1);*/
}
.page_banner:after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	background-color: rgba(0,0,0,.7);
}
.page_banner .main-title{
	margin-bottom: 0;
	color: #fff;
}
.page_banner .breadcrumb-item a,
.page_banner .breadcrumb-item.active,
.page_banner .breadcrumb-item + .breadcrumb-item::before{
	color: #fff;
}
.page_banner .main-title:before,
.page_banner .main-title:after{
	background-color: #fff;
}

.box-leader{
	display: flex;
	transition: .2s ease-in-out;
}
.box-leader .thumbnail{
	width: 270px;
	height: 270px;
	overflow: hidden;
	border-radius: 50%;
	border: 10px solid #fff;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.box-leader .content{
	flex: 1;
	margin-top: 1.5rem;
	padding-left: 30px;
}
.box-leader .content p{
	margin-bottom: 8px;
}

/**/
.number-title{
	display: flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding-right: 8px;
	font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
	font-weight: bold;
	border: 1px solid #ccc;
}
.number-title .number{
	width: 60px;
	height: 60px;
	background-color: var(--red);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.box-activity{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.box-activity .thumbnail{
	width: 100px;
	height: 100px;
	padding: 20px;
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background: #fff;
}
.box-activity .title{
	margin-top: 8px;
	text-align: center;
	font-weight: 500;
}


.block-client{
	/*border-top: 1px solid var(--red);*/
	/*border-bottom: 1px solid var(--red);*/
}


#accordionMenu .accordion-button{
	background-color: #fff;
	font-weight: 600;
}
#accordionMenu .accordion-button:not(.collapsed){
	
	/*color: var(--red);*/
}
#accordionMenu .accordion-button:focus{
	border: none;
	box-shadow: none;
}

#accordionMenu .accordion-body{
	background-color: #f7f7f7;
}
#accordionMenu li + li{
	margin-top: 10px;
}
#accordionMenu a {
	color: #000;
	font-weight: 500;
	text-decoration: none;
}
#accordionMenu a:hover{
	color: var(--red);
}


.footer{
	position: relative;
	overflow: hidden;
	font-weight: 500;
	padding-bottom: 1rem;
	border-top: 1px solid var(--red);
}
.footer .bg-cover{
	overflow: hidden;
	position: absolute;
	height: 150px;
	top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.footer .img-cover{
	position: absolute;
	inset: 0;
	opacity: .05;
	z-index: -2;
}
.footer-bottom{
	text-align: center;
	padding-top: 1rem;
}
.footer-bottom, .footer-bottom a{
	/*color: #000;*/
}
.title-footer{
	margin-bottom: 1.25rem;
	font-weight: bold;
	position: relative;
}
.title-footer:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 50px;
	height: 2px;
	background: var(--red);
}
.link-footer a{
	color: #000;
	text-decoration: none;
	font-weight: 500;
}
.link-footer a:hover{
	color: var(--red);
}
.link-footer li + li{
	margin-top: 16px;
}
.link-footer i{
	color: var(--red);
	margin-right: 8px;
}
