:root {
  --cl-x: #307c24;
  --cl-y: #d7d7d5;
  --cl-gray: #f5f5f5;
  --fs-12: 12px;
  --fs-14: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  --fs-18: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  --fs-20: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
  --fs-24: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  --fs-28: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
  --fs-36: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
  --fs-title: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);

  --px-content: 10%;
  --py-content: 50px;
}

@font-face {
  font-family: "HY-Rosore";
  src: url("../fonts/HY-Rosore.woff") format("woff");
  font-weight: 700;
}

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1366px;
  margin: 0 auto;
}

p:last-of-type {
  margin-bottom: 0;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.fs-12 {
  font-size: var(--fs-12) !important;
}

.fs-14 {
  font-size: var(--fs-14) !important;
}

.fs-18 {
  font-size: var(--fs-18) !important;
}

.fs-20 {
  font-size: var(--fs-20) !important;
}

.fs-24 {
  font-size: var(--fs-24) !important;
}

.fs-28 {
  font-size: var(--fs-28) !important;
}

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

.text-x {
  color: var(--cl-x) !important;
}

.text-y {
  color: var(--cl-y) !important;
}

/*background*/
.bg-x {
  background-color: var(--cl-x) !important;
}

.bg-y {
  background-color: var(--cl-y) !important;
}

.btn-custom {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 50rem;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
}

.btn-custom:hover {
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.btn-x {
  background-color: var(--cl-x);
  color: #fff;
  border: 1px solid var(--cl-x);
}

.btn-x:hover {
  color: #fff;
}

.btn-y {
  background-color: var(--cl-y);
  color: #fff;
  border: 1px solid var(--cl-y);
}

.btn-y:hover {
  color: #fff;
}

.btn-outline-x {
  border: 1px solid var(--cl-x);
  background-color: transparent;
  color: var(--cl-x);
}

.btn-outline-x:hover {
  background-color: var(--cl-x);
  color: #fff;
}

.btn-outline-y {
  border: 1px solid var(--cl-y);
  background-color: transparent;
  color: var(--cl-y);
}

.btn-outline-y:hover {
  background-color: var(--cl-y);
  color: #fff;
}

.btn-custom.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.125rem 0.125rem 0.125rem 1rem;
}

.btn-custom.btn-icon .icon {
  --img-icon: url("/templates/images/icon-btn-x.svg");
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  background-color: #fff;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80%;
  position: relative;
  overflow: hidden;
}

.btn-custom.btn-icon.btn-icon-sm {
  font-size: 0.875rem;
}

.btn-custom.btn-icon.btn-icon-sm .icon {
  width: 2rem;
  height: 2rem;
}

.btn-custom.btn-y .icon {
  --img-icon: url("/templates/images/icon-btn-y.svg");
}

.btn-custom.btn-icon .icon:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  background-image: var(--img-icon);
}

.btn-custom.btn-icon .icon:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  background-image: var(--img-icon);
  transform: translateX(-100%);
}

.btn-custom.btn-icon:hover .icon:before {
  animation: icon-before-animate 0.3s linear infinite;
}

.btn-custom.btn-icon:hover .icon:after {
  animation: icon-after-animate 0.3s linear infinite;
}

@keyframes icon-before-animate {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes icon-after-animate {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.block {
  position: relative;
  padding: var(--py-content) var(--px-content);
}

.bg-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg-cover.has-gradient:before,
.bg-cover.has-gradient:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
}

.bg-cover.has-gradient:before {
  top: 0;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 50%);
}

.bg-cover.has-gradient:after {
  bottom: 0;
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 50%);
}

.main-title {
  margin-bottom: 0;
  font-weight: 700;
  font-size: var(--fs-title);
  text-transform: uppercase;
  position: relative;
}

.menu {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-bottom: 0px;
}

.menu li {
  position: relative;
}

.menu li a {
  display: flex;
  padding: 0.75rem 8px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 13px;
}

.menu li a {
  color: #fff;
}

.menu li:hover > ul {
  display: block;
}

.menu li a:hover,.menu li a.active {
  color: yellow;
}

.menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--cl-x);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  z-index: 9999;
  list-style: none;
  padding: 0;
}

.menu_mb {
  display: none;
}

.menu li.hasChildrent a i{
    margin-left: 3px;
}

.header {
  background: var(--cl-x);
  position: relative;
  z-index: 999;
}

.header_mb {
  display: none;
}

.header__bottom {
  position: relative;
  z-index: 1;
}

.header__bottom:after {
  content: "";
  position: absolute;
  left: 0;
  width: 150%;
  background-color: var(--cl-x);
  height: 100%;
  bottom: 0;
  border-radius: 99px;
  z-index: -1;
  border: 1px solid #fff;
}

.gtranslate_wrapper {
  display: flex;
}

.gtranslate_wrapper img {
  height: 15px !important;
  margin-right: 0px;
}

@keyframes animate {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}

.navbar-fixed.navbar {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.navbar-nav {
  width: 100%;
  align-items: center;
}

.navbar-nav .nav-item .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 10px;
}

.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .nav-link a {
  color: #fff;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a {
  color: yellow;
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a {
  color: yellow;
}

/*===*/
.navbar-nav .dropdown-menu .dropdown-item {
  padding: 0.375rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-nav .dropdown-menu .dropdown-item:active {
  background-color: var(--cl-y);
}

.navbar-nav .toggle-menu {
  margin-left: 0.5rem;
}

.navbar-brand {
  margin: 0;
  padding: 0;
}

.logo {
  transition: all 0.3s ease-in-out;
  max-height: 80px;
}

.name-company-header {
  text-align: center;
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  font-weight: 700;
  color: var(--cl-x);
}

.navbar-toggler {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  margin-left: 0;
  align-items: center;
  border: 2px solid var(--cl-x);
  box-shadow: none !important;
  color: var(--cl-x);
}

.box-search-header {
  display: flex;
  width: 100%;
  padding: 0.4rem;
  border: 2px solid #dddddd;
  border-radius: 50rem;
  overflow: hidden;
  background-color: #fff;
}

.box-search-header input {
  flex: 1;
  width: 100%;
  padding: 0.25rem 1rem;
  border: none !important;
  outline: none;
  background-color: transparent;
  font-size: var(--fs-14);
  box-shadow: none !important;
}

.box-search-header button {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem;
  border: none;
  border-radius: 50%;
  font-size: var(--fs-14);
}

.btn-popup-search {
  padding: 0;
  border: 0;
  box-shadow: none !important;
  background-color: transparent;
  color: #fff;
}

.btn-popup-search svg {
  fill: var(--cl-x);
}

.cart-shopping {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  color: var(--cl-x);
  font-size: var(--fs-18);
  position: relative;
}

.label-quantity {
  position: absolute;
  top: -6px;
  right: -10px;
  width: 1rem;
  height: 1rem;
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--cl-y);
}

.translate .lang-item {
  filter: brightness(0.7);
}

.translate .lang-item.active {
  filter: brightness(1);
}

/*============*/
.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

/*banenr-page*/
.banner-page {
  min-height: clamp(11rem, 10rem + 5vw, 16rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.banner-page .title {
  display: block;
  margin-bottom: 0;
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  text-align: center;
  text-transform: uppercase;
  position: relative;
}

.banner-page .breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}

.banner-page .breadcrumb .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.banner-page .breadcrumb .breadcrumb-item.active {
  color: #fff;
}

/*===*/
.box-hover-zoom .box-thumbnail,
.box-hover-zoom-long .box-thumbnail {
  overflow: hidden;
}

.box-hover-zoom .box-thumbnail img {
  transition: all 0.3s ease-in-out;
}

.box-hover-zoom:hover .box-thumbnail img,
.box-hover-zoom-long:hover .box-thumbnail img {
  transform: scale(1.1);
}

.box-hover-zoom-long .box-thumbnail img {
  transition: all 1s ease-in-out;
}

.wrapper-slide {
  position: relative;
}

.wrapper-slide .swiper-button-next,
.wrapper-slide .swiper-button-prev {
  width: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
  height: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
  background-color: #fff;
  border-radius: 50%;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
  color: var(--cl-x);
  transition: all 0.3s ease-in-out;
  pointer-events: all;
}

.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  font-weight: 700;
}

.wrapper-slide-button-auto-hide .swiper-button-next,
.wrapper-slide-button-auto-hide .swiper-button-prev {
  opacity: 0;
}

.wrapper-slide-button-auto-hide .swiper-button-next {
  right: -3rem;
}

.wrapper-slide-button-auto-hide .swiper-button-prev {
  left: -3rem;
}

.wrapper-slide-button-auto-hide:hover .swiper-button-next {
  right: 0;
  opacity: 1;
}
.wrapper-slide-button-auto-hide:hover .swiper-button-prev {
  left: 0;
  opacity: 1;
}

.wrapper-slide-button-auto-hide:hover .swiper-button-disabled {
  opacity: 0.5;
}

/* Home ============*/
.main-slide {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
}

.main-slide .swiper-slide {
  position: relative;
}

.main-slide-pagination.swiper-pagination-bullets {
  bottom: -2.5rem;
}

.main-slide-pagination .swiper-pagination-bullet {
  width: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  height: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  opacity: 1;
  background-color: transparent;
  background-image: url("/templates/images/bullet-icon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(535%)
    hue-rotate(241deg) brightness(109%) contrast(84%);
}

.main-slide-pagination .swiper-pagination-bullet-active {
  filter: unset;
}

.main-slide .swiper-slide .banner-slide {
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  transform: translate(-50%, -50%);
}

.main-slide .banner-slide h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
}

/*Home========================*/

.box-content-title h1,
.box-content-title h2 {
  position: relative;
  margin-bottom: 0.5rem;
  font-size: var(--fs-title);
  font-weight: 700;
}

.box-content-title h3 {
  font-family: "HY-Rosore";
  font-size: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
}

/*===*/
.form-booking .form-control {
  padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none !important;
}

.form-booking .form-control::placeholder {
  color: #fff;
}

.form-booking .g-recaptcha-contact {
  transform: scale(0.8);
  transform-origin: center center;
}

.form-booking .btn-custom {
  border-radius: 0.125rem 0.5rem;
  color: #000;
}

/*===*/
.box-technical {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
}

.box-technical .box-thumbnail {
  --h-thumbnail: 25rem;
  height: var(--h-thumbnail);
}

.box-technical .box-content {
  padding: 1rem;
  line-height: 1.2;
}

.box-technical .box-content .title {
  font-size: var(--fs-20);
}

.box-technical.box-technical-overlay .box-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, #307c244d 0%, rgba(0, 176, 240, 0) 100%);
  color: #fff;
}

.box-technical.box-technical-vertical {
  display: flex;
  background: linear-gradient(-90deg, #307c244d 0%, rgba(0, 176, 240, 0) 100%);
}

.box-technical.box-technical-vertical .box-thumbnail {
  width: 36%;
  height: calc(var(--h-thumbnail) / 2 - (1rem / 2));
  border-radius: 0.5rem;
  overflow: hidden;
}

.box-technical.box-technical-vertical .box-content {
  flex: 1;
}

/*===*/
.box-category .box-thumbnail {
  border-radius: 2rem 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.box-category .box-content {
  padding: 0.75rem;
}

.box-category .box-content .title {
  margin-bottom: 0;
  text-align: center;
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  font-weight: 700;
}

.box-product {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.box-product .box-thumbnail {
  position: relative;
}

.box-product .box-badge {
  position: absolute;
  left: 0;
  top: 1rem;
  padding: 0.25rem 0.5rem;
  background-color: var(--cl-x);
  font-size: var(--fs-18);
  color: #fff;
}

.box-product .box-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  text-align: center;
}

.box-product .title {
  margin-bottom: 0;
  font-size: var(--fs-18);
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.box-product .box-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 500;
}

.box-product .box-price .label-sale-price {
  color: #ec2424;
}

.box-product .box-price .label-regular-price {
  color: #939393;
  text-decoration: line-through;
  font-size: var(--fs-14);
}

.box-product .btn-custom {
  margin-top: auto;
}

.box-product:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.box-product:hover .title {
  color: var(--cl-x);
}

/*===*/
.box-blog .box-thumbnail {
  position: relative;
  border-radius: 0.75rem;
}

.box-blog .box-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 1rem;
  background-color: #307c24;
  padding: 0.125rem 1rem;
  font-size: 0.875rem;
  color: #fff;
}

.box-blog .box-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.box-blog .title {
  font-size: var(--fs-20);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.box-blog .btn-custom {
  margin-top: auto;
}

.box-blog .btn-custom .icon {
  border: 1px solid var(--cl-x);
}

.box-blog:hover .title {
  color: var(--cl-x);
}

/*===*/
.footer {
  position: relative;
  color: #fff;
}

.footer-bottom {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.footer .bg-cover {
  top: 10%;
}

.wrapper-info-footer {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  color: #000;
  margin-top: -2rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: var(--cl-y);
}

.footer p {
  margin-bottom: 0.625rem;
}

.logo-footer {
  width: 4rem;
}

.title-footer {
  position: relative;
  margin-bottom: 1rem;
  font-size: var(--fs-20);
  font-weight: bold;
}

.list-footer ul {
  list-style: none;
  list-style-position: inside;
  margin-bottom: 0;
  padding-left: 0px;
}

.list-footer ul li a {
  position: relative;
}

.list-footer ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: -4px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
}

.list-footer ul li a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.list-footer ul li {
  transition: transform 0.2s ease-in-out;
}

.list-footer ul li:hover {
  transform: translateX(5px);
}

.list-footer ul li + li {
  margin-top: 0.625rem;
}

.list-footer.map img {
  border-radius: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.social-contact {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-contact .item {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.2s ease-out;
}

.social-contact-footer .item:hover {
  animation: scale-icon 0.5s;
}

@keyframes scale-icon {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

.coppyright {
  font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
  font-weight: 300;
  text-align: center;
}

/*===*/
.box-iframe iframe {
  width: 100%;
  max-width: 100%;
}
.box-iframe-contact iframe {
  /*height: 100%;*/
}

.box-info-contact {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #eefaff;
  border-bottom: 0.25rem solid var(--cl-x);
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.box-info-contact .icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cl-x);
  border-radius: 50%;
  color: #fff;
}

#contact-form {
  border-radius: 0.75rem;
  padding: clamp(1rem, 0.8rem + 1vw, 2rem);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#contact-form .form-control {
  padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) 1rem;
  border: 1px solid #d7d7d7;
  border-radius: 0.5rem;
  box-shadow: none !important;
  font-size: inherit;
}

#contact-form .g-recaptcha-contact {
  transform: scale(0.8);
  transform-origin: left;
}

/*===*/
.wrapper-box-technical {
  padding: clamp(1rem, 0.8rem + 1vw, 2rem);
  background-color: #cceffc;
}

.wrapper-box-technical.even {
  background-color: #f2fbff;
}

.wrapper-box-technical .title {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
  font-weight: 700;
}
