:root {
  --cl-x: #002060;

  --cl-y: #0039aa;

  --cl-gray: #f4f4f4;

  --cl-green: rgba(76, 184, 72, 0.17);

  --cl-grd: linear-gradient(93deg, #002060 3.49%, #0039aa 95.9%);

  --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.5rem, 1.4rem + 0.5vw, 2rem);

  --px-content: 8%;

  --py-content: 40px;
}

body {
  font-family: "Inter", sans-serif;

  overflow-x: hidden;
}

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

a {
  color: #000;

  text-decoration: none;
}

img {
  max-width: 100%;

  height: auto;
}

.fs-12 {
  font-size: 12px;
}

.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;
}

.text-gray {
  color: var(--cl-gray);
}

.text-grd {
  background: var(--1, linear-gradient(93deg, #0065b3 3.49%, #4cb848 95.9%));

  background-clip: text;

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  line-height: 1.5;
}

/*background*/

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

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

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

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

.btn-custom {
  display: inline-block;

  padding: 0.5rem 1rem;

  line-height: 1.5;

  border: 1px solid transparent;

  border-radius: 0.5rem;

  transition: all 0.3s ease-in-out;

  font-weight: 600;

  text-decoration: none;

  position: relative;

  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: 2px 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: 2px solid var(--cl-y);

  background-color: transparent;

  color: var(--cl-y);
}

.btn-outline-x:hover {
  background-color: var(--cl-y);

  color: #fff;
}

.btn-grd {
  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  color: #fff;

  background: var(--cl-grd);

  border: 0;
}

.btn-grd.has-icon span {
  width: 1.75rem;

  height: 1.75rem;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 0.25rem;

  border-radius: 50%;

  background-color: #fff;

  color: var(--cl-x);
}

.image-cover {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.image-contain {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

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

.bg-cover {
  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  z-index: -1;
}

.main-title {
  margin-bottom: 0;

  font-weight: 900;

  font-size: var(--fs-title);

  text-transform: uppercase;

  position: relative;
}

.main-title-underline:before {
  content: "";

  position: absolute;

  left: 0;

  bottom: calc((-1) * (clamp(0.5rem, 0.4rem + 0.5vw, 1rem) + 2px));

  width: 70px;

  height: 7px;

  background-color: var(--cl-x);
}

.main-title-underline:after {
  content: "";

  position: absolute;

  left: 0;

  bottom: calc((-1) * clamp(0.5rem, 0.4rem + 0.5vw, 1rem));

  width: 100%;

  height: 1px;

  background-color: var(--cl-x);
}

.main-title-underline.text-white:after {
  background-color: #fff;
}

.sub-title {
  margin-bottom: 0;

  font-weight: bold;

  font-size: 32px;
}

.text-marquee {
  color: black;

  -webkit-text-fill-color: white; /* Will override color (regardless of order) */

  -webkit-text-stroke-width: 1px;

  -webkit-text-stroke-color: #ddf1e0;

  font-family: "Barlow Semi Condensed";

  font-size: 177px;

  font-weight: 700;

  line-height: 1;
}

/*nav menu*/

.navbar {
  display: flex;

  flex-direction: column;

  padding-top: 0;

  padding-bottom: 0;

  background-color: #fff;

  z-index: 10;
}

.navbar > * {
  width: 100%;

  max-width: 100%;
}

.navbar-main {
  padding-top: 0rem;

  padding-bottom: 0rem;
}

.navbar-center-top {
  padding: 0.5rem 7rem;

  border-bottom-left-radius: 50rem;

  border-bottom-right-radius: 50rem;

  background: #26689c;

}

.navbar-fixed {
  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  animation: animate 1s;

  transition: all 2s ease-in-out;

  z-index: 30;
}

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

  100% {
    transform: translateY(0px);
  }
}

.navbar-brand {
  margin: 0;

  padding: 0;
}

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

.navbar-fixed .logo {
}

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

.navbar-nav {
  width: 100%;

  justify-content: center;

  align-items: center;

  gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
  display: flex;

  justify-content: center;

  align-items: center;

  padding: 1rem 0rem;

  font-weight: 600;

  white-space: nowrap;

  text-transform: uppercase;

  position: relative;
}

.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .nav-link a {
  color: var(--cl-x);
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a {
  color: var(--cl-x);
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a {
  color: var(--cl-y);
}

/*===*/

.navbar-nav .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;

  display: flex;

  justify-content: space-between;

  align-items: center;

  white-space: normal;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: var(--cl-x);

  color: #fff;
}

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

.navbar-nav .nav-item.dropdown .dropdown-menu {
  animation: menu 0.3s;
}

.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
}

.navbar-nav .dropdown .dropdown-menu .dropdown .dropdown-menu {
  top: 0;

  left: 98%;
}

@keyframes menu {
  0% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.box-search-header {
  display: inline-flex;

  padding: 0.25rem;

  border-bottom: 2px solid #ffff;

  overflow: hidden;

  background-color: transparent;

  font-size: 16px;
}

.box-search-header input {
  flex: 1;

  width: 100%;

  width: 300px;

  padding: 0;

  border: none !important;

  outline: none;

  background-color: transparent;

  font-size: 14px;

  color: #fff;
}

.box-search-header input::placeholder {
  color: #fff;
}

.box-search-header button {
  padding: 0;

  border: none;

  width: 40px;

  height: 40px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background-color: transparent;

  color: #fff;
}

.navbar-toggler {
  width: 2rem;

  height: 2rem;

  display: flex;

  justify-content: center;

  align-items: center;

  border: 2px solid var(--cl-x);

  box-shadow: none !important;

  color: var(--cl-x);
}

.btn-popup-search {
  border: 0;

  padding: 0;

  color: #fff;

  box-shadow: none !important;

  background-color: transparent;
}

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

.cart-shopping {
  display: flex;

  align-items: center;

  gap: 6px;

  border-radius: 8px;

  color: var(--cl-x);

  text-decoration: none;

  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-x);
}

.translate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.translate .lang-item {
  display: inline-block;

  width: 2.25rem;

  height: 2.25rem;

  border: 2px solid #fff;

  border-radius: 50rem;

  overflow: hidden;
}

/*============*/

.swiper {
  width: 100%;

  height: 100%;

  margin-left: auto;

  margin-right: auto;
}

/*banenr-page*/

.banner-page {
  min-height: 250px;

  display: flex;

  align-items: center;

  position: relative;

  overflow: hidden;
}

.banner-page .bg-cover {
}

.banner-page .title {
  display: inline-block;

  margin-bottom: 0;

  font-weight: 700;

  color: #000;

  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);

  text-transform: uppercase;
}

.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 {
  font-weight: 500;
}

.banner-page .breadcrumb .breadcrumb-item.active {
  color: var(--cl-y);
}

.simple-breadcrumb {
  padding-top: 0rem;

  padding-bottom: 0rem;
}

.simple-breadcrumb .breadcrumb .breadcrumb-item,
.simple-breadcrumb .breadcrumb .breadcrumb-item a,
.simple-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #000;

  font-weight: 400;

  text-decoration: none;

  font-size: 14px;
}

.simple-breadcrumb .breadcrumb-item.active {
  color: var(--cl-x);
}

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

.banner {
  height: 800px;

  overflow: hidden;

  position: relative;
}

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

.banner .swiper-slide .banner-slide {
  position: absolute;

  top: 50%;

  left: 10%;

  right: 10%;

  transform: translateY(-50%);

  width: 40%;

  padding: 3%;

  border-radius: 22px;

  border: 2px solid #fff;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5) 0.01%,
    rgba(255, 255, 255, 0.25) 1.65%,
    rgba(255, 255, 255, 0.2) 52.49%,
    rgba(255, 255, 255, 0.25) 97.79%,
    rgba(255, 255, 255, 0.45) 100%
  );

  /*    filter: blur(2px);*/

  color: #fff;
}

.banner-slide h2 {
  font-size: clamp(1.75rem, 1.475rem + 1.375vw, 3.125rem);
}

.banner .swiper-pagination-bullets {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 6px;
}

.banner .swiper-pagination-bullet {
  width: 12px;

  height: 12px;

  margin: 0 !important;

  display: flex;

  justify-content: center;

  align-items: center;

  background-color: #d9d9d9;

  opacity: 1;

  transition: 0.3s ease-in;
}

.banner .swiper-pagination-bullet-active {
}

.banner-next,
.banner-prev {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);

  color: #fff;
}

.banner-next:after,
.banner-prev:after {
  content: "";
}

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

.box-content-introduce h2 {
  position: relative;

  margin-bottom: calc((-1) * clamp(2rem, 1.8rem + 1vw, 3rem));

  font-size: clamp(3rem, 2.8rem + 1vw, 4rem);

  background: -webkit-linear-gradient(
    -86deg,
    var(--cl-y) 5%,
    var(--cl-x) 53%,
    var(--cl-x) 91%
  );

  -webkit-background-clip: text;

  -webkit-text-stroke: 4px transparent;

  color: #fff;

  line-height: 1.5;

  z-index: -1;
}

.box-content-introduce h2:before {
  content: "";

  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  height: 50%;

  background: linear-gradient(0deg, #ffffff 60%, rgba(255, 255, 255, 0) 110%);

  pointer-events: none;
}

.box-content-introduce h3 {
  font-size: var(--fs-title);
}

/**/

.icon-box {
  display: flex;

  align-items: center;

  gap: 0.5rem;

  padding: 0.5rem;

  transition: all 0.3s ease-in-out;

  cursor: pointer;
}

.icon-box .icon {
  width: 60px;

  height: 60px;
}

.icon-box .content {
  flex: 1;
}

.icon-box .title {
  margin-bottom: 0;

  font-size: var(--fs-18);

  font-weight: 700;
}

.block-about .icon-box {
  border-radius: 0.5rem;

  background: var(--cl-grd);

  color: #fff;

  transition: all 0.3s ease-in-out;
}

.block-about .icon-box:hover {
  transform: translateY(-0.125rem);

  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

#tab-product {
  justify-content: center;

  gap: 1.5rem;

  margin-bottom: 1rem;

  border-bottom: 0;
}

#tab-product .nav-link {
  position: relative;

  border: 0;

  border-radius: 0;

  background-color: #fff;

  font-weight: 700;

  font-size: var(--fs-20);

  color: #000;
}

#tab-product .nav-link:before {
  content: "";

  position: absolute;

  inset: -2px;

  z-index: -1;

  background: var(--cl-grd);
}

#tab-product .nav-link,
#tab-product .nav-link:before {
  border-radius: 1rem 0;

  transition: all 0.2s ease-in-out;
}

#tab-product .nav-link.active,
#tab-product .nav-link:hover {
  color: #fff;

  background: var(--cl-grd);
}

/*===*/

.box-image-client {
  display: flex;

  justify-content: center;

  align-items: center;

  padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);

  transition: all 0.3s ease-in-out;

  cursor: pointer;
}

.box-image-client:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/*===*/

.form-booking .form-control {
  padding: 1rem;

  border-radius: 0.25rem;

  border: 1px solid #e5e3e3;

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(50px);

  box-shadow: none !important;

  color: #fff;
}

.form-booking .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/*===*/

.card-hover-circle .thumbnail:before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  transform: translate(-100%, -100%);

  width: 100px;

  height: 100px;

  background-color: rgba(255 255 255 / 0.3);

  border-radius: 50%;

  transition: all 0.5s ease-in-out;

  pointer-events: none;

  z-index: 1;
}

.card-hover-circle .thumbnail:after {
  content: "";

  position: absolute;

  bottom: 0;

  right: 0;

  transform: translate(100%, 100%);

  width: 100px;

  height: 100px;

  background-color: rgba(255 255 255 / 0.3);

  border-radius: 50%;

  transition: all 0.5s ease-in-out;

  pointer-events: none;

  z-index: 1;
}

.card-hover-circle:hover .thumbnail:before,
.card-hover-circle:hover .thumbnail:after {
  transform: scale(7);

  opacity: 0;
}

.card-hover-zoom .thumbnail,
.card-hover-zoom-long .thumbnail {
  overflow: hidden;
}

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

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

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

.swiper-button-circle .swiper-button-next,
.swiper-button-circle .swiper-button-prev {
  width: 40px;

  height: 40px;

  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);

  opacity: 1;

  transition: all 0.3s ease-in-out;

  pointer-events: all;
}

.swiper-button-circle .swiper-button-next:after,
.swiper-button-circle .swiper-button-prev:after {
  content: "";
}

.swiper-button-circle.hover-show-button .swiper-button-next,
.swiper-button-circle.hover-show-button .swiper-button-prev {
  opacity: 0;
}

.swiper-button-circle.hover-show-button:hover .swiper-button-next,
.swiper-button-circle.hover-show-button:hover .swiper-button-prev {
  opacity: 1;
}

.swiper-button-circle.hover-show-button:hover .swiper-button-disabled {
  opacity: 0.5;
}

/*===*/

.card-category {
  position: relative;

  padding-right: 4rem;

  background-image: url("../images/bg-category.png");

  background-repeat: no-repeat;

  background-position: right center;

  background-size: contain;
}

.card-category .thumbnail {
  filter: brightness(0.5);
}

.card-category .title {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  margin-bottom: 0;

  color: #fff;
  text-align: center;
  font-size: var(--fs-24);
  font-weight: bold;
}

.card-category .view-more {
  position: absolute;

  top: 50%;

  right: 0;

  transform: translateY(-50%);

  display: flex;

  align-items: center;

  gap: 1rem;

  padding: 0.5rem 0.75rem;

  border-top-left-radius: 50rem;

  border-bottom-left-radius: 50rem;

  background-image: url("../images/bg-category.png");

  background-repeat: no-repeat;

  background-position: right center;

  background-size: cover;
}

.card-category .view-more .icon {
  width: 40px;

  height: 40px;

  display: flex;

  justify-content: center;

  align-items: center;

  background-color: #fff;

  border-radius: 50%;

  outline: 1px solid #fff;

  outline-offset: 0.25rem;
}

.card-category .view-more .label {
  max-width: 60px;

  color: #fff;

  font-size: var(--fs-20);
}

/**/

.card-product .content {
  padding: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);

  display: flex;

  flex-direction: column;

  gap: clamp(0.375rem, 0.3rem + 0.375vw, 0.75rem);

  background-color: #fff;
}

.card-product .description {
  font-size: clamp(0.75rem, 0.7125rem + 0.1875vw, 0.9375rem);

  display: -webkit-box;

  -webkit-line-clamp: 4;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.card-product .title {
  margin-bottom: 0rem;

  /*height: 40px;*/

  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);

  color: #000;

  font-weight: 700;

  text-align: center;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  transition: all 0.3s ease-in-out;
}

.card-price {
  width: 100%;

  flex: 1;

  display: flex;

  flex-direction: column;

  justify-content: center;

  font-weight: 700;
}

.card-price .label-sale-price {
  color: #000;
}

.card-price .label-regular-price {
  color: #939393;

  text-decoration: line-through;
}

.card-product .view-more {
  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  position: relative;

  padding: 0.25rem 0.5rem;

  background-color: #fff;

  font-weight: 600;

  font-size: var(--fs-14);
}

.card-product .view-more:after {
  content: "";

  position: absolute;

  inset: -2px;

  background: var(--cl-grd);

  z-index: -1;
}

.card-product .view-more,
.card-product .view-more:after {
  border-radius: 20rem;
}

.card-product .view-more span {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  width: 1.5rem;

  height: 1.5rem;

  padding: 0.25rem;

  border-radius: 50%;

  background: var(--cl-grd);

  color: #fff;

  font-size: 0.75rem;
}

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

/**/

.card-blog .thumbnail {
  overflow: hidden;
}

.card-blog .content {
  padding-top: 0.5rem;

  position: relative;
}

.card-blog .box-date {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.35rem;

  padding: 0.5rem 0.75rem;

  background: var(--cl-grd);

  color: #fff;

  font-size: 14px;

  line-height: 1;

  position: absolute;

  top: 0;

  right: 0;

  transform: translateY(-100%);
}

.card-blog .box-date .month {
  padding-top: 2px;

  border-top: 1px solid #fff;
}

.card-blog .title {
  margin-bottom: 0.5rem;

  height: clamp(2.4375rem, 2.4rem + 0.1875vw, 2.625rem);

  font-size: var(--fs-18);

  font-weight: 700;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  transition: all 0.3s ease-in-out;
}

.card-blog .description {
  font-size: 15px;

  text-align: justify;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.card-blog .view-more {
  margin-top: 0.5rem;

  text-align: right;

  color: var(--cl-x);

  font-weight: 500;
}

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

.card-blog-vertical {
  display: flex;

  gap: 1rem;
}

.card-blog-vertical .thumbnail {
  width: clamp(8.125rem, 7.75rem + 1.875vw, 10rem);

  height: inherit;
}

.card-blog-vertical .content {
  flex: 1;

  padding: 0rem;
}

.card-blog-vertical .title {
  margin-bottom: 6px;

  font-size: 1rem;

  height: 38px;
}

.card-blog-vertical .description {
  font-size: 14px;

  text-align: justify;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.list-post-vertical {
  display: flex;

  flex-direction: column;

  /*gap: 1rem;*/

  border: 1px solid #ccc;
}

.list-post-vertical .card-blog-vertical {
  padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}

.list-post-vertical a + a .card-blog-vertical {
  border-top: 1px solid #ccc;
}

/**/

.footer {
  position: relative;

  padding-top: 1.5rem;

  color: var(--cl-x);

  font-size: 15px;
}

.footer .img-cover-1 {
  position: absolute;

  top: -20%;

  left: 0;

  z-index: 1;

  width: 10rem;

  pointer-events: none;
}

.footer .img-cover-2 {
  position: absolute;

  top: -12%;

  right: 0;

  z-index: 1;

  width: 10rem;

  pointer-events: none;
}

.footer:after {
  content: "";

  position: absolute;

  left: 0;

  right: 0;

  top: 0;

  height: 0.5rem;

  background-image: url("../images/bg-header-cover.png");

  background-repeat: no-repeat;

  background-position: right center;

  background-size: cover;
}

.footer-bottom {
  padding-top: 1rem;

  padding-bottom: 1rem;

  border-top-left-radius: 50rem;

  border-top-right-radius: 50rem;

  background: #26689c;
}

.footer a {
  color: #fff;

  text-decoration: none;
}

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

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

.logo-footer {
}

.title-footer {
  position: relative;

  margin-bottom: 1.5rem;

  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: var(--cl-x);

  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.7rem;
}

.list-footer ul li i {
  margin-right: 6px;

  color: var(--cl-x);
}

.social-contact {
  margin-bottom: 0;

  padding-left: 0;

  list-style: none;

  display: flex;

  align-items: center;

  gap: 0.5rem;
}

.social-contact .item {
  width: 2.5rem;

  height: 2.5rem;

  padding: 4px;

  border: 1px solid #fff;

  border-radius: 50%;

  background-color: #transparent;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 20px;

  transition: all 0.2s ease-out;
}

.social-contact .item.item-zalo {
  font-size: 12px;

  font-weight: 900;

  color: #fff;
}

.social-contact-footer .item {
  color: var(--cl-y);

  background-color: #fff;
}

.social-contact-footer .item.item-zalo {
  color: var(--cl-y);
}

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

  background-color: #fff;

  color: var(--cl-x);
}

@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;

  color: #fff;
}

.coppyright a {
  color: #fff;
}

/**/

.form-booking-footer {
  display: flex;

  background-color: #fff;

  border-radius: 0.5rem;
}

.form-booking-footer .form-control {
  padding: 1rem;

  border: 0;

  box-shadow: none !important;

  font-size: var(--fs-18);
}

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

.form-booking-footer button {
  font-size: var(--fs-20);

  white-space: nowrap;
}

.box-iframe iframe {
  width: 100%;

  max-width: 100%;
}

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

.contact-information {
  padding: 5% 20%;

  background-color: var(--cl-x);
}

.contact-information li {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.5rem;

  color: #fff;
}

.contact-information li + li {
  margin-top: 2rem;
}

.contact-information li span {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  width: 46px;

  height: 46px;

  border: 2px solid #fff;

  border-radius: 50%;
}

/*===*/

.box-business {
  padding: 1rem;

  border-radius: 1rem;

  background-color: var(--cl-x);

  color: #fff;
}

.box-business-1 {
  background-color: #004394;
}

.box-business-2 {
  background-color: #4cb848;
}

/*===*/

.card-staff .content {
  position: relative;

  padding: 0.75rem;

  color: #44240d;
}

.card-staff .thumbnail {
  border-radius: 1rem;

  overflow: hidden;
}

.card-staff .title {
  position: absolute;

  left: 0;

  right: 1rem;

  top: 0;

  transform: translateY(-120%);

  margin-bottom: 0;

  padding: 0.5rem;

  background-color: #389286;

  border-top-right-radius: 50rem;

  border-bottom-right-radius: 50rem;

  color: #44240d;

  font-size: var(--fs-18);
}

.list-footer {
  color: #fff;
}

.list-footer ul li {
  color: #fff;
}

.img-container {
  padding-bottom: 66%;
  overflow: hidden;
  height: auto;
  display: block;
  position: relative;
}
.img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tintuc__item {
  background-color: #fff;
  position: relative;
}

.tintuc__innerbig {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px 8px 8px;
  background: linear-gradient(180deg, transparent 0, #0039AA 100%);/* W3C */
  color: #fff;
  width: 100%;
}

.tintuc__imgbig {
  padding-bottom: 70%;
}

.tintuc__titlebig {
    font-size: 20px;
}

.tintuc__title {
    font-size: 18px;
}