﻿@charset "UTF-8";
/*@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:wght@400;500;700&display=swap');*/

:root {
  --primary-color: #55b9eb; 
  /* --tcolor: #00a8fc; */
  --tcolor: #0b44c9;
  --scolor: rgb(0, 102, 255);
  --subcolor: #0b44c9;
  --txt: #353535;
}
.lazyload {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazyloaded {
  opacity: 1;
}


h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 18px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: var(--primary-color);
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.3em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 80px;
}
#totop a {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
}
#totop a::before{
  /* mũi tên màu vàng hướng lên */
  content: "↑";
  color: yellow;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
#totop a:hover {
  opacity: 0.7;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: #353535;
  font-family: 'Roboto', sans-serif;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
	display: none;
}
#header.fixed{
  position: fixed;
  animation: slideDown 0.5s ease-in-out;
}
#header {
  width: 100%;
  /* background-color: rgba(255, 255, 255, 0.962); */
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1111999 !important;
	padding: 15px 0;
}

.h_right{
  z-index: 1111999 !important;
}

@keyframes slideDown {
  from {
    /* Bắt đầu từ vị trí ẩn phía trên màn hình */
    transform: translateY(-100%);
  }
  to {
    /* Kết thúc ở vị trí bình thường */
    transform: translateY(0);
  }
}
#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
  width: 100px;
	margin: 0;
}
.h_info {
    display: flex;
    justify-content: flex-end;
}
.h_info li {
	font-size: 13px;
	color: var(--txt);
	font-style: italic;
    font-family: 'UTMAvo';
	display: flex;
	align-items: center;
	margin-left: 30px;
}
.h_mail img, .h_tel img{
  margin-right: 10px;
}

.h_add img{
  margin-right: 3px;
}

/* .h_info li:before {
	content: '';
	position: relative;
	background: url("/W_images/h_mail.png") no-repeat;
	display: inline-block;
	width: 21px;
	height: 15px;
	margin-right: 10px;
} */
.h_info .h_add:before {
	/* background-image: url("/W_images/h_add.png"); */
	width: 15px;
	height: 22px;
}
.h_info .h_tel:before {
	/* background-image: url("/W_images/h_tel.png"); */
	width: 19px;
	height: 19px;
}
.h_info .h_tel {
	font-size: 17px;
	/* font-weight: bold; */
	font-style: normal;
}
.gnavi {
	display: flex;
}
.gnavi>li {
	position: relative;
	padding: 0 20px;
}
.gnavi>li>a {
	display: block;
	text-decoration: none;
	font-size: 17px;
	color: var(--txt);
	text-transform: uppercase;
	font-family: 'Roboto Condensed', sans-serif;
	padding: 10px 0;
	position: relative;
  font-weight: 600;
}
.gnavi>li>a:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: var(--scolor);
	left: 0;
	bottom: 0;
	opacity: 0;
	transition: all 0.3s;
}
.gnavi>li>a:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--scolor);
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    bottom: -3px;
	opacity: 0;
	transition: all 0.3s;
}
.gnavi>li.active>a {
	color: var(--scolor);
	font-weight: 700;
}
.gnavi>li:hover>a {
	color: var(--scolor);
}
.gnavi>li.active>a:after, .gnavi>li.active>a:before, .gnavi>li:hover>a:after, .gnavi>li:hover>a:before {
	opacity: 1;
}
.submenu {
	position: absolute;
	width: 250px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: none;
	margin-top: 5px;
}
.submenu a {
	display: block;
	text-decoration: none;
	color: #fff;
	background: var(--primary-color);
	margin-top: 1px;
	padding: 10px 20px;
	font-size: 16px;
	text-align: center;
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	transition: all 0.3s;
}
.submenu a:hover {
	background: var(--scolor);
}
/* .h_lang{
  margin-left: 40px;
  display: flex;
  gap: 20px;
}
.h_lang a{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.h_lang a:hover{
  transform: scale(1.1);
} */

/* --- CÀI ĐẶT CHUNG CHO KHỐI NGÔN NGỮ --- */
.h_lang {
  margin-left: 40px;
  display: flex;
  gap: 20px;
  align-items: center; /* Căn giữa các item */
}

/* --- KIỂU CHO CÁC LÁ CỜ (Thẻ <a>) --- */
/* Chỉ áp dụng bo tròn và cắt ảnh cho các lá cờ là thẻ <a> */
.h_lang a.h_lang-item {
  /* width: 40px; */
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden; 
  /* Chỉ cắt ảnh thừa của các lá cờ */
}

.h_lang a.h_lang-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: unset;
}

/* .h_lang a.h_lang-item:hover {
  transform: scale(1.1);
} */

/* --- KIỂU CHO KHỐI DROPDOWN (Thẻ <div>) --- */
.h_lang-dropdown {
  position: relative; /* Rất quan trọng: làm mốc cho dropdown con */
  width: auto;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  cursor: pointer;
  /* Quan trọng: KHÔNG dùng overflow: hidden ở đây */
  overflow: visible;
}

.lang-current {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden; 
    /* Chỉ cắt ảnh thừa của các lá cờ */
}

.lang-current img {
    width: 40px;
    object-fit: contain;
    border: 1px solid #ccc;
}

.h_lang-dropdown .box_more {
  font-size: 14px;
  white-space: nowrap;
  /* không cho thao tác vói text */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Hầu hết các trình duyệt hiện đại */
}


/* === PHẦN LOGIC ẨN/HIỆN QUAN TRỌNG NHẤT === */

/* 1. Mặc định: ẨN danh sách dropdown đi */
.h_lang-dropdown .h-lang-list {
  display: none; /* <<<<<<< ĐÂY LÀ DÒNG BẠN MUỐN THÊM */
  
  /* Định vị danh sách con so với cha */
  position: absolute;
  top: 120%; /* Nằm ngay dưới nút cha */
  right: 0;
  z-index: 1000; /* Đảm bảo nằm trên các phần tử khác */
  
  /* Trang trí */
  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  list-style: none;
  padding: 10px;
  margin: 0;
  border-radius: 8px;
  gap: 10px;
  width: 180px;
}

/* 2. Khi click (có class 'active'): HIỂN THỊ danh sách dropdown */
.h_lang-dropdown.active .h-lang-list {
  display: flex; /* <<<<<<< HIỂN THỊ LẠI DANH SÁCH */
  flex-direction: column;
}

.h-lang-list li{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.h-lang-list a{
  display: flex;
  color: var(--txt);
  gap: 10px;
  text-decoration: none;
}

.h-lang-list li img{
  border: 1px solid #000;
  height: 100%;
  width: 40px;
}
.h_search {
	position: relative;
	margin-left: 50px;
}
.h_search_form {
	position: absolute;
	top: 60px;
	right: 0;
	background: #e1e7df;
	padding: 5px;
	width: 475px;
	display: none;
	z-index: 9;
}
.h_search_main{    position: relative;
	display: flex;
    align-items: center;
}
.h_search_main select{
	
	font-size: 14px;
    padding: 9px 10px;
    border: none;
}
.h_search_ttl {
	margin: 0;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s;
}
.h_search_ttl:hover {
	background: var(--scolor);
}
.h_search_form input {
	width: 100%;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	font-style: italic;
}
.h_search_form .button {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    padding: 10px;
	cursor: pointer;text-decoration: none;
}
.h_search_main select {
    font-size: 14px;
    padding: 9px 12px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 8px;
    appearance: none; /* Ẩn mũi tên mặc định */
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path fill='%23000' d='M0 0l5 6 5-6z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 6px;
    width: 140px;
}

/* Hiệu ứng hover & focus */
.h_search_main select:hover,
.h_search_main select:focus {
    border-color: var(--scolor);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.main_slide p {
	margin: 0;
}
.main_slide img {
	width: 100%;
}


.mainvisual_Home {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider_Content_Home {
  width: 100%;
  height: auto;
  position: relative;
}

.slider_Home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  text-align: center;
}

.slider_Home img {
  width: auto;  
  height: auto; 
  display: block;
  margin: 0 auto;
  object-fit: cover; /* Giữ tỷ lệ, cắt phần thừa */
}

.box01 {
	background: url("/W_images/b01_bg.webp") no-repeat top center;
	padding: 100px 0;
	min-height: 634px;
}
.idx_h2 {
  font-display: swap;
	text-align: center;
	position: relative;
	line-height: 1.5em;
	font-size: 55px;
	color: var(--primary-color);
	font-weight: 700;
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	margin-bottom: 40px;
	z-index: 2;
}
.idx_h2 .lager {
  font-display: swap;

    font-size: 181.81%;
    font-family: 'UTMAvo';
    position: absolute;
    width: 100%;
    line-height: 1.5em;
    left: 0;
    bottom: 10px;
    opacity: 0.15;
    z-index: -1;
}
/* lazy item b1 */
.b01_item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s ease, transform .5s ease;
}
.b01_item.show {
  opacity: 1;
  transform: translateY(0);
}
/* end lazy item b1 */
.b01_item {
    width: calc(25% - 22.5px);
    background: #ffffff78;
   /* background: linear-gradient(180deg, rgba(11, 91, 80, 0.54) 0%, rgba(11, 91, 80, 0.73) 50%, rgba(11, 91, 80, 1) 100%);*/
    color: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 30px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
	transition: all 0.3s;
}
.b01_item:hover {
	/*background: var(--scolor);*/
  transform: translateY(-10px);
}
.b01_item a, .b02-pro-item a  {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}
.b01_list {
    display: flex;
    justify-content: space-between;
}
.b01-item{
  background-color: var(--primary-color);
}

.b01_itm_main:before {
	content: '';
	position: relative;
	display: block;
	background: url("/W_images/l1_w.png") no-repeat;
	width: 50px;
	height: 50px;
	margin: 0 auto 30px;
	filter: invert(1);
}
.b01_item:nth-child(2) .b01_itm_main:before {
	background-image: url("/W_images/l2_w.png");
}
.b01_item:nth-child(3) .b01_itm_main:before {
	background-image: url("/W_images/l3_w.png");
}
.b01_item:nth-child(4) .b01_itm_main:before {
	background-image: url("/W_images/l4_w.png");
}
.b01_itm_ttl {

  /*box-shadow: 0px 0px 4px 1px #e1e1e1;*/
  font-size: 13px;
  border-radius: 15px;
 background: #56b6e9;
    color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  line-height: 1.3em;
  height: 50px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-family: 'Roboto Condensed', sans-serif;
}
.b01_itm_ttl .small {
  font-display: swap;

    font-size: 80%;
    text-transform: capitalize;
    line-height: 1em;
    margin-top: 5px;
}
.b01_itm_ttl:before, .b01_itm_ttl:after {
	/* content: ''; */
	position: absolute;
	background: url("/W_images/b01_ttl_icon.png") no-repeat top center/100% auto;
	width: 25px;
	height: 96px;
	top: 50%;
	transform: translateY(-50%);
}
.b01_itm_ttl:before {
    left: -15px;
    transform: translateY(-50%) rotateY(190deg);
}
.b01_itm_ttl:after{
	right: -15px;
}
.b01_itm_txt {
	color:#000;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}
.box02 {
	padding: 100px 0 60px;
}

/* box02 product */
.box02_product{
  padding: 100px 0 60px;
}

.b02_list_product {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* justify-content: space-between; */
  gap: 40px;
}
.b02-pro-item{
  position: relative;
  border-radius: 10px;
  transition: all 0.3s ease;
 /* box-shadow: 0 1px 3px -2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); */
}

.b02-pro-item:hover{
  transform: translateY(-10px);
}

.b02-pro-itm-info{
  padding: 20px 30px;
  background: #f7f7f7;
}
.b02-pro-itm-img{
  margin:0;
}
.b02-pro-itm-img a img{
  border-radius: 10px 10px 0 0;
}

.b02-pro-itm-ttl {
  text-align: center;
  color: #000;
  font-size: 16px;
  text-decoration: none;
  /* tối đa 3 dòng */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 45px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 10px;
}

.b02-pro-itm-price{
  font-weight: 500;
  font-style: italic;
  text-align: center;
  color: red;
  font-size: 20px;
  margin: 0;
}

.b02-pro-itm-price .old{
  color: #7e7e7e;
    text-decoration: line-through;
    margin-left: 10px;
    font-size: 18px;
}

.idx_btn{
  margin-top: 50px;
  text-align: center;
}

@media (min-width: 1800px) {
  .b01_itm_ttl{
    font-size:18px;
  }
}

/* box02 info */
.b02_info {
    display: flex;
	justify-content: space-between;
    flex-direction: row-reverse;
}
.b02_img {
    margin: 0;
    width: calc(50% - 30px);
	text-align: center;
}
.b02_main {
    width: 50%;
}
.b02_item {
    position: relative;
	padding-left: 75px;
	margin-bottom: 30px;
}
.b02_item:before {
	content: '';
	position: absolute;
	background: url("/W_images/b02_icon01.png") no-repeat center center;
	width: 49px;
	height: 49px;
	left: 0;
	top: 10px;
}
.b02_itm_ttl {
    font-size: 24px;
    line-height: 1.5em;
    color: var(--txt);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
	font-family: 'Roboto Condensed', sans-serif;
}
.b02_itm_txt {
    margin: 0;
}
.b02_item:nth-child(2):before {
	background-image: url("/W_images/b02_icon02.png");
}
.b02_item:nth-child(3):before {
	background-image: url("/W_images/b02_icon03.png");
}
.idx_btn {
	margin: 0;
}
.idx_btn a {
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: white;
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Roboto Condensed', sans-serif;
	background: var(--scolor);
	padding: 10px 30px;
	border-radius: 30px;
	min-width: 145px;
	-webkit-box-shadow: 0px 5px 0px 0px rgb(15, 226, 106);
	-moz-box-shadow:    0px 5px 0px 0px rgb(15, 226, 106);
	box-shadow:         0px 5px 0px 0px rgb(15, 226, 106);
	transition: all 0.3s;
}
.idx_btn a:after {
	content: '';
	position: relative;
	display: inline-block;
	width: 0;
height: 0;
border-style: solid;
border-width: 4px 0 4px 6px;
border-color: transparent transparent transparent white;
	margin-left: 5px;
	top: -1px;
}
.idx_btn a:hover {
	background: var(--primary-color);
	-webkit-box-shadow: 0px 5px 0px 0px rgba(35, 170, 91, 1);
	-moz-box-shadow:    0px 5px 0px 0px rgba(35, 170, 91, 1);
	box-shadow:         0px 5px 0px 0px rgba(35, 170, 91, 1);
}
.box03 {
	background: url("/W_images/b03_bg.png") no-repeat top center/cover;
	/*background: url("/W_images/bg_service1.jpg") no-repeat top center/cover;*/
	padding: 110px 0;
	position:relative;
}

/*.box03:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000ad;
}*/
.box03 .idx_h2 {
	color: #f0e14c;
}
.b03_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	margin-bottom: 20px;
}
.box03 .idx_btn {
	text-align: center;
}
.b03_itm_img {
    flex-shrink: 0;
    margin: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
}
.b03_itm_img img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.b03_item {
    width: calc(50% - 15px);
    margin-bottom: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 13px;
    border-radius: 200px;
    overflow: hidden;
	justify-content: space-between;
	transition: all 0.3s;
	position: relative;
}
.b03_item:hover {
	transform: translateY(-10px);
}
.b03_itm_main {
    width: calc(70% - 30px);
	padding-right: 40px;
}
.b03_item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.b03_itm_ttl {
    font-size: 24px;
    color: var(--primary-color);
    line-height: 1.3em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
	font-family: 'Roboto Condensed', sans-serif;
}
.b03_itm_txt {
    margin: 0;
}
.b03_itm_txt span {
	color: var(--primary-color);
}
.box04 {
	padding: 70px 0 50px;
}
.b04_list {
	display: flex;
}
.b04_item {
	width: calc(33.33% - 20px);
	margin: 0 30px 0 0;
	background: #f7f7f7;
	position: relative;
	transition: all 0.3s;
}

.b04_item a{
  text-decoration: none;
  color: var(--txt);
}

.b04_item:hover {
	transform: translateY(-10px);
}
.b04_item:last-child {
	margin-right: 0;
}
.b04_itm_img {
    margin: 0;
}
.b04_itm_img img {
	width: 100%;
}
.b04_itm_main {
    padding: 30px;
}
.b04_itm_ttl {
  height: 50px;
    font-size: 20px;
    line-height: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.b04_itm_info {
    font-size: 14px;
    margin: 0 0 10px;
}
.b04_itm_info span:before {
	content: '';
	position: relative;
	display: inline-block;
	background: url("/W_images/b04_icon02.png") no-repeat center center;
	width: 13px;
	height: 13px;
	margin-right: 5px;
}
.b04_itm_info span:not(:last-child) {
	margin-right: 30px;
}
.b04_itm_info span:nth-child(2):before {
	background-image: url("/W_images/b04_icon02.png");
}
.b04_itm_txt {
    margin: 0;
    font-size: 16px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#footer {
	/* background: url("/W_images/f_bg.png") no-repeat top right; thêm lazyload */
	background: url("/W_images/f_bg.png") no-repeat top right;
  opacity: 1;
	transition: opacity 0.5s ease;
	padding-top:150px;
	padding-bottom: 40px;
  background-size: cover;
}
.f_main {
    display: flex;
}
.f_left {
    width: calc(34% - 15px);
    margin-right: 30px;
}
.f_right {
	width: calc(66% - 15px);
}
.f_ttl {
    font-size: 55px;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1.5em;
    margin: 0 0 20px;
    font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
}
.f_info {
    background: #fff;
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    height: 145px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 90px;
	padding-right: 20px;
	font-size: 16px;
}
.f_info:before {
	content: '';
	position: absolute;
	background: url("/W_images/f_add.png") no-repeat center center;
	width: 53px;
	height: 54px;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
}
.f_tel:before {
	background-image: url("/W_images/f_tel.png");
}
.f_mail:before {
	background-image: url("/W_images/f_mail.png");
}
.f_info .ttl {
    display: block;
    font-size: 24px;
    color: var(--txt);
    line-height: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
}
.f_tel {
    font-weight: bold;
}
.f_tel .small {
	font-size: 10px;
	font-weight: 500;
	font-style: italic;
}
.f_info a {
	text-decoration: none;
	color: #353535;
	display: inline-block;
}
.f_form input {
    width: 100%;
    background: #d3d3d3;
    border: none;
    font-size: 16px;
    padding: 25px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-style: italic;
}
.f_form_row {
    display: flex;
    justify-content: space-between;
}
.f_form_row input:not(:last-child) {
	margin-right: 30px;
}
.f_form_row input:last-child {
	width: 40%;
	flex-shrink: 0;
}
.f_form textarea {
    width: 100%;
    background: #d3d3d3;
    border: none;
    font-size: 16px;
    padding: 25px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-style: italic;
	height: 150px;
}
.f_form button {
	text-decoration: none;
	display: block;
	border: none;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: white;
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Roboto Condensed', sans-serif;
	background: var(--scolor);
	padding: 15px 30px;
	cursor: pointer;
	border-radius: 30px;
	min-width: 145px;
	-webkit-box-shadow: 0px 5px 0px 0px rgb(15, 226, 106);
	-moz-box-shadow:    0px 5px 0px 0px rgb(15, 226, 106);
	box-shadow:         0px 5px 0px 0px rgb(15, 226, 106);
	transition: all 0.3s;
}
.f_form button:after {
	content: '';
	position: relative;
	display: inline-block;
	width: 0;
height: 0;
border-style: solid;
border-width: 4px 0 4px 6px;
border-color: transparent transparent transparent #ffff00;
	margin-left: 5px;
	top: -1px;
}
.f_form button:hover {
	background: var(--primary-color);
	-webkit-box-shadow: 0px 5px 0px 0px rgba(35, 170, 91, 1);
	-moz-box-shadow:    0px 5px 0px 0px rgba(35, 170, 91, 1);
	box-shadow:         0px 5px 0px 0px rgba(35, 170, 91, 1);
}
.f_com {
    border-top: 1px solid #ccc;
    margin: 30px 0 0;
    /* padding: 50px 0 0; */
    text-align: center;
}
.f_com .name {
    font-weight: bold;
    font-size: 24px;
    color: var(--primary-color);
    line-height: 1.5em;
}
.copyright {
    margin: 30px 0 0;
    text-align: center;
    font-size: 16px;
    color: #666666;
    font-style: italic;
}
.copyright a {
	text-decoration: none;
	color: #666;
}



.f_content{
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.f_content_1{
  width: 40%;
}

.f_content_2, .f_content_3{
  margin-top: 65px;
  margin-left: 5%;
  width: 30%;
}

.f_content_2 h2, .f_content_3 h2{
  font-size: 24px;
  color: var(--primary-color);
  line-height: 1.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.f_content_2 ul, .f_content_3 ul{
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style:armenian;
  font-style: italic;
}

.f_content_2 li, .f_content_3 li{
  padding-left: 40px;
  background: url(../W_images/water.png) no-repeat left center/ 20px 20px;  
}

.f_content_2 li:hover, .f_content_3 li:hover{
  color: var(--scolor);
}

.f_content_2 a, .f_content_3 a{
  text-decoration: none;
  color: var(--txt);
}











/*
	font-family: 'Roboto', sans-serif;
	font-family: 'Roboto Condensed', sans-serif;
*/
@media screen and (max-width: 1400px) {
  .container {
    padding: 0 3%;
  }
  .gnavi>li>a{font-size: 15px;}
  .lang-current img{width: 25px;}
  .h_lang-dropdown{height: 30px;}
}
@media screen and (min-width: 769px) {
	
.h_main {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
	flex-direction: row-reverse;
}
}
@media screen and (max-width: 768px) {
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 14px;
}
  .h_lang{
  gap:10px;
  }
  .pro-hotline{
    margin: 0 !important;
  }
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 90px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: var(--primary-color);
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnv-ico {
    width: 50px;
    height: 48px;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #totop {
    width: 40px;
    right: 5%;
    bottom: 50px;
    line-height: 0;
  }
  #totop a{
    width: 40px;
    height: 40px;
  }
	.h_info {
		display: none;
	}
.h_main {
    position: fixed;
    width: 100%;
    top: 90px;
    left: 0;
    z-index: 999;
	height: calc(100% - 90px);
    background: rgba(255,255,255,0.9);
	padding: 30px 3%;
	overflow: auto;
	display: none;
}
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.9);
    padding: 10px 0;
}
.h_right {
    position: absolute;
}
.logo {
    width: 70px;
}
.h_search_form {
    position: relative;
    width: 100%;
    display: block;
}
	.h_search {
    margin: 0 0 30px;
}
	.h_search_ttl {
		display: none;
	}
.gnavi {
    display: block;
}
.gnavi>li>a {
    background: var(--primary-color);
    color: #fff!important;
    padding: 15px 20px;
    border-bottom: 1px solid #fff;
    text-align: center;
    font-size: 14px;
}
	.gnavi>li>a:before, .gnavi>li>a:after {
		display: none;
	}
	.gnavi>li {
		padding: 0;
	}
.submenu {
    position: relative;
    margin: 0;
    width: 100%;
}
.submenu a {
    margin: 0;
    border-bottom: 1px solid #fff;
    background: var(--scolor);
    padding: 15px 20px;
    font-size: 14px;
}

.slider_Content_Home{

}
.idx_h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.box01, .box02, .box03, .box04 {
    padding: 40px 0 60px;
    background-size: cover;
    min-height: auto;
}
.b01_list {
    flex-wrap: wrap;
}
.box01{
  background: none;
}
.b01_item {
    width: 48%;
    margin-bottom: 30px;
    height: auto;
    padding: 30px 20px;
    border-radius: 15px;
}
.b01_itm_main:before {
    width: 50px;
    height: 50px;
    background-size: 100% auto;
    margin-bottom: 15px;
}
.b01_itm_ttl {
    font-size: 16px;
    height: 40px;
    margin-bottom: 15px;
}
.b01_itm_main {
  display: grid;
  grid-template-columns: 60px auto; /* cột icon + cột nội dung */
  grid-column-gap: 15px;
  align-items: start;
  position: relative;
}

.b01_itm_main::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  grid-column: 1;  /* chiếm cột 1 */
  grid-row: 1 / span 2; /* chiếm 2 hàng (cho h3 và p) */
}

.b01_itm_ttl {
  grid-column: 2;
  grid-row: 1;
}

.b01_itm_txt {
  
  grid-column: 2;
  grid-row: 2;
}


.box02_product{
  margin-bottom: 20px;
    padding: 40px 0 10px !important;
}
.b02_list_product{
  grid-template-columns: repeat(2, 1fr) !important; 
  gap: 10px;
  /* padding: 0 10% !important; */
}
.b02_info {
    display: block;
}
.b02_main {
    width: 100%;
    margin-bottom: 30px;
}
.b02_itm_ttl {
    font-size: 18px;
}
.idx_btn {
    text-align: center;
}
.b02_img {
    width: 100%;
}
.b03_item {
    width: 100%;
    margin: 0 0 20px;
}
.b03_itm_ttl {
    font-size: 18px;
}
.b03_itm_img {
    max-width: 150px ;
    height: 150px;
}
.b03_itm_main {
    width: 100%;
    padding: 0 30px;
}
.b04_list {
    display: block;
}
.b04_item {
    width: 100%;
    margin-bottom: 30px;
}
.b04_itm_main {
    padding: 20px;
}
.b04_itm_ttl {
    font-size: 18px;
}
.b04_itm_txt {
    font-size: 14px;
}

#footer {
    background: #ebebeb;
    padding: 40px 0;
}
.f_main {
    display: block;
}
.f_left {
    width: 100%;
    margin: 0 0 40px;
}
.f_ttl {
    text-align: center;
    font-size: 32px;
}
.f_info {
    font-size: 14px;
    height: 120px;
    margin-bottom: 10px;
	padding-left: 60px;
}
.f_info .ttl {
    font-size: 18px;
}
.f_info:before {
    background-size: contain;
    width: 40px;
    height: 40px;
    left: 10px;
}
.f_right {
    width: 100%;
}
.f_form input {
    font-size: 14px;
    padding: 13px 20px;
    line-height: 1.5em;
    margin-bottom: 10px;
}
.f_form_row {
    display: block;
}
.f_form_row input:last-child {
    width: 100%;
}
.f_form textarea {
    padding: 15px 20px;
    font-size: 14px;
    height: 130px;
}
.f_com .name {
    font-size: 18px;
}
.copyright {
    font-size: 12px;
    margin-top: 20px;
}
.f_com {
    padding-top: 30px;
}
.f_content{
  flex-direction: column;
}
.f_content_1, .f_content_2, .f_content_3{
  width: 100%;
}
.f_content_2, .f_content_3{
  margin: 0 0 20px 0;
}
}
@media screen and (max-width: 480px) {
.b01_item {
    width: 100%;
    margin-bottom: 20px;
	background: #56b6e95c;
}
.b01_itm_ttl{font-size: 14px;
        height: auto;
        padding: 10px 5px;}
		.b02-pro-itm-info{padding:10px;}
		.b02-pro-itm-price{font-size:14px;}
.idx_h2 .lager {
    font-size: 160%;
}
.idx_h2 {
    font-size: 24px;
}
.b03_itm_txt {
    display: none;
}
.b03_itm_ttl {
    font-size: 16px;
    margin: 0;
}
.b03_itm_main {
    padding: 0 3%;
}
}
@media screen and (max-width: 430px) {
	.b01_itm_ttl{        font-size: 12px;}
	
}