:root {
  --primary-color: #2ecc71;
  --secondary-color: #27ae60;
  --text-color: #2c3e50;
  --light-color: #ffffff;
  --dark-color: #1a1a1a;
  --border-radius: 8px;
  --card-border-radius: 12px;
  --icon-size: 80px;
}



 /* CSS cho thanh thông báo Messenger - Phiên bản cải thiện */
 .messenger-notification-bar {
  /* Vị trí và kích thước - CẢI THIỆN */
  position: fixed;
  top: 15px;
  left: 10px;
  right: 10px;
  width: auto;
  z-index: 99999; /* Tăng z-index cao hơn */
  
  /* Giao diện */
  background-color: rgba(25, 25, 25, 0.95); /* Tăng độ đậm */
  color: white;
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4); /* Tăng shadow */
  backdrop-filter: blur(8px); /* Tăng blur */
  -webkit-backdrop-filter: blur(8px);
  
  /* Layout */
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  
  /* Animation Ẩn/Hiện - CẢI THIỆN */
  transform: translateY(-100px) scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  visibility: hidden;
  pointer-events: none;
  
  /* Thêm cho touch interaction */
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

/* Lớp .is-visible */
.messenger-notification-bar.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Hiệu ứng khi đang được kéo */
.messenger-notification-bar.dragging {
  transition: none;
}

/* Icon Wrapper */
.messenger-icon-wrapper {
  background-color: #fff;
  border-radius: 12px;
  padding: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.messenger-icon-wrapper img {
  width: 40px;
  height: 40px;
  display: block;
}

/* Text Content */
.messenger-text-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.messenger-text-line1 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

.messenger-text-line1 strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f5f5f5;
}

.messenger-text-line1 span {
  font-size: 0.85rem;
  color: #b0b3b8;
}

.messenger-text-line2 {
  font-size: 0.9rem;
  color: #e4e6eb;
}

/* Close button - THÊM MỚI */
.messenger-close-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.messenger-close-btn:hover {
  background: rgba(255,255,255,0.3);
}





    /* CSS cho các icon mạng xã hội */
    .social-icons {
      position: fixed; /* Ghim cố định trên trang */
      top: 50%; /* Canh giữa theo chiều dọc */
      right: 20px; /* Cách lề phải 20px */
      transform: translateY(-50%); /* Tinh chỉnh để icon nằm chính giữa */
      display: flex;
      flex-direction: column; /* Xếp các icon theo chiều dọc */
      gap: 15px; /* Khoảng cách giữa các icon */
      z-index: 1000; /* Đảm bảo icon luôn nổi lên trên */
  }

  .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 50%; /* Bo tròn thành hình tròn */
      color: white;
      font-size: 24px;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hiệu ứng mượt mà khi di chuột */
  }

  /* Hiệu ứng khi di chuột vào */
  .social-icon:hover {
      transform: scale(1.1) translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  /* Màu nền riêng cho từng icon */
  .facebook {
      background-color: #1877F2;
  }

  .zalo {
      background-color: #0068FF; /* Màu chính của Zalo */
  }

  /* Định nghĩa animation khi nhấn vào */
  @keyframes icon-click-animation {
      0% {
          transform: scale(1);
      }
      50% {
          transform: scale(1.3);
      }
      100% {
          transform: scale(1);
      }
  }

  /* Class được thêm vào khi nhấn, để kích hoạt animation */
  .social-icon.clicked {
      animation: icon-click-animation 0.4s ease-in-out;
  }




/* //menumobi */
/* menu */

/* Định dạng dropdown mở rộng */
.mega-dropdown {
  width: 30vw;
  /* Chiếm toàn bộ chiều rộng màn hình */
  left: 0;
  right: 0;
  padding: 20px;
  background: #fff;
  /* Đảm bảo màu nền */
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Căn chỉnh các cột trong dropdown */
.mega-dropdown .row {
  display: flex;
  flex-wrap: nowrap;
}

/* Định dạng từng cột */
.mega-dropdown .dropdown-column {
  /* padding: 10px; */
  border-right: 1px solid #ddd;
  /* Viền phân cách cột */
}
/* Xóa viền của cột cuối */
.mega-dropdown .dropdown-column:last-child {
  border-right: none;
}

/* Căn chỉnh tiêu đề chuyên khoa */
.mega-dropdown h6 {
  font-weight: bold;
  border-bottom: 2px solid #2f6d56;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #2f6d56;
}
/* Định dạng mục dropdown */
.mega-dropdown .dropdown-item {
  padding: 5px 0;
  color: #333;
  display: block;
}

.mega-dropdown .dropdown-item:hover {
  background: #2f6d56;
  color: white;
}
/* Tùy chỉnh Offcanvas */
.offcanvas {
  background: #e0fff4;
}

.offcanvas-title {
  font-size: 22px;
  font-weight: bold;
  /* color: #007bff; */
}
/* Style cho danh sách menu */
.offcanvas-body .nav-item {
  padding: 10px;
}

.offcanvas-body .nav-link {
  font-size: 15px;
  font-weight: bold;
  color: #026356;
  border-bottom: 1px solid #026356;
}

.offcanvas-body .nav-link:hover {
  /* color: #007bff; */
}
/* Nút đóng */
.btn-close {
  background: none;
  font-size: 20px;
}

/* Style cho hotline */
.hotline-box {
  background: red;
  color: white;
  padding: 0px;
  border-radius: 10px;
}

.hotline-title {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

.hotline-number {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
.nav-item {
  display: block;
}

.submenu {
  display: none;
  /* Ẩn menu con ban đầu */
  padding-left: 20px;
}

.submenu.show {
  display: block;
  /* Hiển thị khi có class .show */
}

.header-1 {
  background-color: #007c70;
  color: #ffd700;
  font-weight: bold;
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.header-1.show {
  width: 100%;
  position: fixed;
  transition: top 0.3s;
  z-index: 1000;
}
.menu-group-1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #026356;
  padding: 0 8px;
}

.menu-icon-1 {
  font-size: 38px;
  color: #ffffff;
}

.menu-text-1 {
  color: #ffd700;
  font-size: 14px;
}

.brand-group-1 {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.brand-logo-1 {
  width: 90px;
  height: 90px;
  margin-right: -20px;
}

.brand-text-1 {
  color: #ffd700;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

.brand-subtext-1 {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}

/* menu-mobi */
.brand-text-menu-1 {
  color: #ffd700;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}
/* Ẩn header khi cuộn xuống - có hiệu ứng mượt */
.fixed-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #e0fff4;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}
/* Menu */
/* Navbar chung */
.menu-nav {
  padding: 10px 0;
  height: 70px;
}
.nav-item {
  padding: 0 35px;
}
.menu-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 2rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}
.menu-nav .nav-link:hover,
.menu-nav .nav-link.active {
  color: #000;
}
.menu-nav .nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: -5px;
  left: 0;
}

/* Căn giữa menu dropdown */
.dropdown-menu {
  min-width: 800px; /* Kích thước menu dropdown lớn */
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
  padding: 15px;
  display: none;
}
/* Khi bấm vào menu con sẽ hiện ra */
.nav-item.dropdown.show .dropdown-menu {
  display: flex !important;
  flex-wrap: wrap;
}
.dropdown-column {
  flex: 1;
  min-width: 177px;
  padding: 10px 10px;
  margin: -15px -2px;
}
.dropdown-column h6 {
  font-size: 16px;
  color: #5bc863;
  border-bottom: 1px solid #6f6767; /* Gạch dưới */
  padding-bottom: 5px; /* Khoảng cách với nội dung bên dưới */
  margin-bottom: 10px; /* Tạo khoảng cách */
}
.dropdown-item {
  padding: 5px 0;
  color: #333;
  font-size: 14px;
}
.dropdown-item:hover {
  color: #007bff;
}

.dropdown-scroll .scrollable-list {
  max-height: 650px; /* Điều chỉnh chiều cao tối đa để hiển thị khoảng 27 mục */
  overflow-y: auto; /* Kích hoạt thanh cuộn nếu vượt quá chiều cao */
  padding-right: 10px; /* Để tránh nội dung che thanh cuộn */
}

/* endmenumobi */

/* header */

#header {
  position: relative;
}

#header:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100px;
  background: url(././public/img/thanh-dau-trang.png) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#hh1 .row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#hh1 {
  padding: 25px 0 20px;
}

.hd1 {
  width: 35%;
}

#hh1 .logo img {
  margin: -10px 0 0;
}

.tx-hd {
  text-align: center;
  position: relative;
}

.tx-hd:before {
  content: "";
  display: inline-block;
  width: 65px;
  height: 65px;
  background: url(././public/img/icon/sun.png) no-repeat;
  position: absolute;
  left: 20px;
  top: 5px;
}

.tx-hd:after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 55px;
  background: url(././public/img/icon/cloud.png) no-repeat;
  position: absolute;
  right: 22px;
  bottom: 0;
}

.tx-hd p {
  font-family: "svn-cintra";
  font-size: 36px;
  line-height: 1;
  color: #03a186;
  text-align: center;
}

.dv {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}

.dv span {
  display: inline-block;
  line-height: 1;
}

.logo {
  position: relative;
  z-index: 2;
  width: 33.3333%;
  text-align: center;
}

.hd3 {
  width: 33.33333%;
}
/* endheader */

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-invisible-blank-slide {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white
  .swiper-pagination-progressbar-fill {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black
  .swiper-pagination-progressbar-fill {
  background: #000;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}
#certify {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#certify img {
  width: 100%;
}

#certify .swiper-container {
  padding-bottom: 50px;
}
#certify .swiper-slide {
  width: 80%;
  background: #fff;
  box-shadow: 0 8px 30px #0000008a;
}
#certify .swiper-slide img {
  display: block;
}
#certify .swiper-slide p {
  line-height: 19px;
  padding-top: 0;
  color: rgba(59, 59, 59, 1);
  font-size: 13px;
  margin: 10px 0;
  text-indent: 0;
  text-align: center;
  font-weight: normal;
  padding: 0 15px;
}
#certify .p5 {
  color: #787878 !important;
  margin-bottom: 15px !important;
  text-align: justify !important;
  padding: 0 15px;
  font-weight: normal !important;
  line-height: 18px !important;
}
#certify .swiper-slide p a {
  color: #8d0004;
}
#certify .swiper-slide p span img {
  width: 11.1rem;
  margin-top: 1rem;
  margin-left: 0rem;
}
#certify .swiper-pagination {
  width: 100%;
  bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  border: 1px solid #53a776;
  background-color: transparent;
  width: 10px;
  height: 10px;
  opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #53a776;
}

#certify .swiper-button-prev {
  left: -30px;
  width: 45px;
  height: 45px;
  background: url(../images/wm_button_icon.png) no-repeat;
  background-position: 0 0;
  background-size: 100%;
}

#certify .swiper-button-prev:hover {
  background-position: 0 -46px;
  background-size: 100%;
}

#certify .swiper-button-next {
  right: -30px;
  width: 45px;
  height: 45px;
  background: url(../images/wm_button_icon.png) no-repeat;
  background-position: 0 -93px;
  background-size: 100%;
}

#certify .swiper-button-next:hover {
  background-position: 0 -139px;
  background-size: 100%;
}
#certify h3 {
  color: #006760;
  font-weight: bold;
  font-size: 16px;
  margin: 10px 0;
  text-align: center;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "?";
}
[dir="rtl"] .slick-prev:before {
  content: "?";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "?";
}
[dir="rtl"] .slick-next:before {
  content: "?";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.cb {
  clear: both;
}

.tac {
  text-align: center;
}

.cxs1,
.csm1,
.cmd1,
.clg1,
.cxs2,
.csm2,
.cmd2,
.clg2,
.cxs3,
.csm3,
.cmd3,
.clg3,
.cxs4,
.csm4,
.cmd4,
.clg4,
.cxs5,
.csm5,
.cmd5,
.clg5,
.cxs6,
.csm6,
.cmd6,
.clg6,
.cxs7,
.csm7,
.cmd7,
.clg7,
.cxs8,
.csm8,
.cmd8,
.clg8,
.cxs9,
.csm9,
.cmd9,
.clg9,
.cxs10,
.csm10,
.cmd10,
.clg10,
.cxs11,
.csm11,
.cmd11,
.clg11,
.cxs12,
.csm12,
.cmd12,
.clg12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.cxs1,
.cxs2,
.cxs3,
.cxs4,
.cxs5,
.cxs6,
.cxs7,
.cxs8,
.cxs9,
.cxs10,
.cxs11,
.cxs12 {
  float: left;
}

.cxs12 {
  width: 100%;
}

.cxs11 {
  width: 91.66666667%;
}

.cxs10 {
  width: 83.33333333%;
}

.cxs9 {
  width: 75%;
}

.cxs8 {
  width: 66.66666667%;
}

.cxs7 {
  width: 58.33333333%;
}

.cxs6 {
  width: 50%;
}

.cxs5 {
  width: 41.66666667%;
}

.cxs4 {
  width: 33.33333333%;
}

.cxs3 {
  width: 25%;
}

.cxs2 {
  width: 16.66666667%;
}

.cxs1 {
  width: 8.33333333%;
}

@media (min-width: 768px) {
  .csm1,
  .csm2,
  .csm3,
  .csm4,
  .csm5,
  .csm6,
  .csm7,
  .csm8,
  .csm9,
  .csm10,
  .csm11,
  .csm12 {
    float: left;
  }

  .csm12 {
    width: 100%;
  }

  .csm11 {
    width: 91.66666667%;
  }

  .csm10 {
    width: 83.33333333%;
  }

  .csm9 {
    width: 75%;
  }

  .csm8 {
    width: 66.66666667%;
  }

  .csm7 {
    width: 58.33333333%;
  }

  .csm6 {
    width: 50%;
  }

  .csm5 {
    width: 41.66666667%;
  }

  .csm4 {
    width: 33.33333333%;
  }

  .csm3 {
    width: 25%;
  }

  .csm2 {
    width: 16.66666667%;
  }

  .csm1 {
    width: 8.33333333%;
  }
}
@media (min-width: 992px) {
  .cmd1,
  .cmd2,
  .cmd3,
  .cmd4,
  .cmd5,
  .cmd6,
  .cmd7,
  .cmd8,
  .cmd9,
  .cmd10,
  .cmd11,
  .cmd12 {
    float: left;
  }

  .cmd12 {
    width: 100%;
  }

  .cmd11 {
    width: 91.66666667%;
  }

  .cmd10 {
    width: 83.33333333%;
  }

  .cmd9 {
    width: 75%;
  }

  .cmd8 {
    width: 66.66666667%;
  }

  .cmd7 {
    width: 58.33333333%;
  }

  .cmd6 {
    width: 50%;
  }

  .cmd5 {
    width: 41.66666667%;
  }

  .cmd4 {
    width: 33.33333333%;
  }

  .cmd3 {
    width: 25%;
  }

  .cmd2 {
    width: 16.66666667%;
  }

  .cmd1 {
    width: 8.33333333%;
  }
}
.csm25 {
  width: 20%;
}

.csm15 {
  width: 12.5%;
}

html,
body {
  overflow-x: hidden;
}

body,
div,
ul,
li,
ol,
dl,
dt,
dd,
input,
h1,
h2,
h3,
h4,
h5,
h6,
span,
strong,
img,
p {
  margin: 0;
  padding: 0;
  border: none;
  text-align: justify;
}

* {
  transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
}

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #ffd915;
}

a:hover,
a:focus {
  color: #ff8202;
}

.img-r {
  display: block;
  max-width: 100%;
  height: auto;
}

.ctn:before,
.ctn:after {
  content: " ";
  display: table;
}

.ctn:after {
  clear: both;
}

.row:before,
.row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.rel {
  position: relative;
}

.abs {
  position: absolute;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.cxs5s,
.csm5s,
.cmd5s,
.clg5s {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

.p-l {
  float: left !important;
}

.p-r {
  float: right !important;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

.ctn {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

@media (min-width: 768px) {
  .ctn {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .ctn {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .ctn {
    width: 1140px;
  }
}

body {
  font-family: Roboto;
  font-size: 16px;
  color: #282828;
}

#header {
  /*background: url(../i/bg-h.jpg);*/
  box-shadow: 0 0 13px 2px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

li {
  list-style: none;
  display: inline-block;
}

#hh1 .logo img {
  margin: 20px 0 35px 40px;
}
#hh1 .lh {
  text-align: right;
}
#hh1 .lh a {
  margin-left: 83px;
  font-family: utm-he;
  font-size: 26px;
  line-height: 26px;
  text-align: LEFT;
  margin-top: 20px;
  color: #282828;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
#hh1 .lh a span {
  font-size: 12px;
  color: #787878;
  font-family: Tahoma;
}
#hh1 .lh a:before {
  width: 50px;
  height: 50px;
  background: #53a776;
  border-radius: 50px;
  position: absolute;
  left: -62px;
  top: 50%;
  margin-top: -20px;
  display: inline-block;
  content: "";
}
#hh1 .lh a:after {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: -52px;
  content: "";
  display: inline-block;
  background: url(./a/i/icon.png) no-repeat 0px 0px;
  background-position: -16px -10px;
}

#hh1 .lh a:nth-child(2):after {
  background: url(./a/i/icon.png) no-repeat -30px 0px;
  background-position: -57px -12px;
}

.mainmn {
  background: #129447;
}
nav {
  height: auto;
  line-height: 60px;
  position: relative;
}
nav ul > li {
  /*float: left;*/
  display: inline-block;
  position: relative;
}

nav ul ul.sub-menu {
  display: none;
  position: absolute;
  top: 59px;
  left: 0;
  width: 300px;
  padding: 10px 0 0;
  /* border: 1px solid #e1e1e1; */
  /* border-radius: 6px; */
  z-index: 9999;
  background: #006760;
  line-height: 50px;
  max-width: 290px;
}

nav ul li:hover ul.sub-menu {
  display: block !important;
}

nav ul ul.sub-menu > li {
  width: 100%;
  float: left;
  border-right: 1px solid #e1e1e1;
}
nav ul ul.sub-menu > li:last-child {
  border: none;
}
nav ul ul.sub-menu a {
  text-transform: none;
  margin: 0;
  display: block;
  font-size: 15px;
  line-height: 50px;
  padding: 0 15px;
  font-weight: bold;
  border-bottom: 1px dashed #ccc;
}
nav ul ul.sub-menu li:last-child a {
  border-bottom: 0;
}
nav ul ul.sub-menu a span {
  color: #2a2a2a;
  font-size: 18px;
}
nav ul ul.sub-menu .sub-menu1 {
  padding: 0 12px;
}
nav ul ul.sub-menu .sub-menu1 li {
  border-top: 1px solid #e1e1e1;
  width: 100%;
}
nav ul ul.sub-menu .sub-menu1 li a {
  margin: 0;
}
nav ul ul.sub-menu .sub-menu1 li a:before {
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border-radius: 50%;
  border: 1px solid #5cac7e;
  margin-right: 14px;
  content: "";
  display: inline-block;
}
nav a {
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  margin: 0 40px;
  position: relative;
}

nav a:hover {
  color: #aced28;
}

nav .home {
  position: relative;
}
nav .home a {
  width: 30px;
  height: 30px;
  /*background: url(../a/i/i-c.png) no-repeat -60px 0px;*/
  display: inline-block;
  vertical-align: middle;
}
nav .home:after {
  height: 45px;
  content: "";
  display: inline-block;
  position: absolute;
  right: -10px;
  top: 50%;
  margin-top: -22px;
  border-right: 1px solid #81c89e;
}
nav .mt {
  position: relative;
}
nav .mt:after {
  width: 9px;
  height: 5px;
  /*background: url(../i/i-c.png) no-repeat -237px 0px;*/
  content: "";
  display: inline-block;
  position: absolute;
  right: -16px;
  top: 50%;
  margin: -2px;
}
nav .call {
  margin: 0;
  cursor: pointer;
  height: 45px;
  width: 80px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -22px;
  border-left: 1px solid #e1e1e1;
}
nav .call:before {
  width: 55px;
  height: 40px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 10px;
  background: url(./a/i/icon.png) no-repeat;
  background-position: -170px -8px;
}

nav ul li.bg {
  background: #53a776;
}
nav ul li a.home {
  width: 40px;
  height: 30px;
  background: url(./a/i/icon.png) no-repeat;
  display: inline-block;
  background-position: -100px -15px;
  vertical-align: middle;
  margin: 0 20px 0 15px;
}
nav ul li span.dm {
  margin: 0 30px 0 10px;
  padding-right: 30px;
  color: #fff;
  font-family: utm-he;
  font-size: 20px;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}
nav ul li span.dm:after {
  content: "";
  background: transparent url(./a/i/icon.png) no-repeat;
  width: 20px;
  height: 15px;
  background-position: -145px -25px;
  float: right;
  position: absolute;
  top: 5px;
  right: -10px;
}

#header {
  position: relative;
}

#header:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100px;
  background: url(../img/thanh-dau-trang.png) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#hh1 .row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#hh1 {
  padding: 25px 0 20px;
}

.hd1 {
  width: 35%;
}

#hh1 .logo img {
  margin: -10px 0 0;
}

.tx-hd {
  text-align: center;
  position: relative;
}

.tx-hd:before {
  content: "";
  display: inline-block;
  width: 65px;
  height: 65px;
  background: url(https://chuabenhxahoihn.vn/wp-content/themes/pc/img/sun.png)
    no-repeat;
  position: absolute;
  left: 20px;
  top: 5px;
}

.tx-hd:after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 55px;
  background: url(https://chuabenhxahoihn.vn/wp-content/themes/pc/img/cloud.png)
    no-repeat;
  position: absolute;
  right: 22px;
  bottom: 0;
}

.tx-hd p {
  font-family: "svn-cintra";
  font-size: 36px;
  line-height: 1;
  color: #03a186;
  text-align: center;
}

.dv {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}

.dv span {
  display: inline-block;
  line-height: 1;
}

.logo {
  position: relative;
  z-index: 2;
  width: 33.3333%;
  text-align: center;
}

.hd3 {
  width: 33.33333%;
}

#s1 {
  text-align: center;
  padding-top: 40px;
}
h3.htt {
  font-size: 30px;
  color: #106634;
  font-family: utm-he;
  font-weight: normal;
  text-align: center;
  margin-bottom: 30px;
}
.d {
  text-align: center;
  color: #282828;
  font-size: 18px;
  font-family: "UTM-Isadora";
  margin-bottom: 30px;
  line-height: 30px;
}
#s1 .cmd3 {
  text-align: center;
}
#s1 .cmd3 h4 {
  color: #29814e;
  font-size: 18px;
  text-align: center;
  font-weight: normal;
  margin: 15px 0;
}
#s1 .cmd3 p {
  text-align: center;
  line-height: 25px;
}

#s9 h2.htt {
  font-size: 30px;
  color: #fff;
  font-family: utm-he;
  font-weight: normal;
  text-align: center;
  margin-bottom: 15px;
}
.chat-pc {
  position: fixed;
  bottom: 10%;
  right: 20px;
  z-index: 99999;
}
.desxx p {
  margin-right: 20px;
}

.text_rung {
  animation: pulse 1s infinite linear;
  -webkit-animation: pulse 1s infinite linear;
  -moz-animation: pulse 1s infinite linear;
  display: inline-block;
}
.hdmd {
  position: relative;
}
.tow-a {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.tow-a a {
  display: inline-block;
  margin: 0 15px;
  animation: pulse 1s infinite linear;
  -webkit-animation: pulse 1s infinite linear;
  -moz-animation: pulse 1s infinite linear;
  cursor: pointer;
}
.btn-a {
  display: inline-block;
  height: 50px;
  width: 220px;
  position: absolute;
  bottom: -193px;
}
.btn-a a {
  display: block;
  height: 50px;
}
@-webkit-keyframes pulse {
  from,
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.12, 1.12, 1.12);
    transform: scale3d(1.12, 1.12, 1.12);
  }
}
@keyframes pulse {
  from,
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.12, 1.12, 1.12);
    transform: scale3d(1.12, 1.12, 1.12);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

#d-form-contact {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999999999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
#d-form-contact > .in {
  width: 500px;
  height: 400px;
  margin: 50px auto 0;
  background-color: #f0f0f0;
  border-radius: 5px;
  padding: 10px;
}
#d-form-contact > .in > .tit {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0;
  text-transform: uppercase;
}
#d-form-contact > .in > .form > label {
  width: 100px;
  text-align: right;
  font-weight: 700;
  font-size: 14px;
  font-family: arial;
  display: block;
  float: left;
  margin-right: 10px;
  line-height: 25px;
}
.hdmd {
  display: none !important;
}

#map {
  border-top: 22px solid #03a186;
}

footer {
  padding: 30px 0 0;
  background: #ececec;
  position: relative;
}

.box-ft {
  display: flex;
  padding-bottom: 30px;
}

.menu_f_1 {
  width: 45%;
  margin-right: 65px;
}

.menu_f_1 p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 15px;
}

.menu_f_1 p b {
  display: block;
  font-family: "utm-avoBold";
  font-size: 15px;
}

.menu_f_2 {
  width: 22%;
  margin-right: 40px;
  /* padding-right: 3%; */
}

.menu_f_3 {
  width: 35%;
  padding-left: 3%;
}

.menu_f_3 .mxh-ft {
  display: flex;
  margin-top: 20px;
}

.menu_f_3 .mxh-ft a:nth-child(2) {
  background-position: -71px 0;
}

.menu_f_3 .mxh-ft a:nth-child(3) {
  background-position: -138px 0;
}

.menu_f_1 h3 {
  font-size: 18px;
  line-height: 25px;
  font-family: "Montserrat-SemiBold";
  margin: 0 0 5px;
  padding-right: 65px;
  position: relative;
  text-transform: uppercase;
  text-align: left;
}

.menu_f_1 h3:after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../img/icon/icon-chuong.png) no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
}

#action-ft {
  position: fixed;
  bottom: 50px;
  left: 20px;
  z-index: 99999;
}

.button-zl {
  margin-bottom: 50px;
}

#action-ft .phone-vr {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}

.phone-vr-circle-fill {
  width: 80px;
  height: 80px;
  top: 12px;
  left: 0;
  position: absolute;
  box-shadow: 0 0 0 0 #c33737;
  background-color: rgb(221 53 53 / 56%);
  border-radius: 50%;
  border: 2px solid transparent;
  -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  transition: all 0.5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animuiion: zoom 1.3s infinite;
  animation: zoom 1.3s infinite;
}

.phone-vr-img-circle {
  /* background-color: #e60808; */
  width: 80px;
  height: 80px;
  line-height: 80px;
  top: 10px;
  left: 0;
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

@-webkit-keyframes phone-vr-circle-fill {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }

  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }

  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }

  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}

@-webkit-keyframes zoom {
  0% {
    transform: scale(0.9);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px transparent;
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 transparent;
  }
}

@keyframes zoom {
  0% {
    transform: scale(0.9);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px transparent;
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 transparent;
  }
}

footer .dh-ft {
  display: flex;
  height: 55px;
  background: #fff;
  border-radius: 30px;
  margin-bottom: 15px;
}

footer .dh-ft input {
  display: flex;
  width: 80%;
  padding: 0 25px;
  height: 55px;
  border-radius: 30px;
}

footer .dh-ft input::placeholder {
  font-family: "Montserrat-LightItalic";
  color: #03a186;
  font-size: 16px;
}

footer .dh-ft .d-send {
  border: 0;
  text-indent: -9999px;
  width: 163px;
  background: url(../img/icon/register-icon.png) no-repeat;
  background-size: auto;
  cursor: pointer;
}

.menu_f_1 .mxh-ft {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.menu_f_1 .mxh-ft h5 {
  font-size: 16px;
  line-height: 25px;
  font-family: utm-avobold;
  text-transform: uppercase;
  text-align: left;
  margin-right: 15px;
}

.menu_f_1 .mxh-ft div a {
  width: 35px;
  height: 35px;
  background: url(../img/icon/mxh.png) no-repeat;
  margin-left: 5px;
  display: inline-block;
}

.menu_f_1 .mxh-ft div a:nth-child(2) {
  background-position: -51px 0;
}

.menu_f_1 .mxh-ft div a:nth-child(3) {
  background-position: -102px 0;
}

.menu_f_1 .mxh-ft div a:nth-child(4) {
  background-position: -153px 0;
}

footer h5 {
  font-family: "Gilroy-bold";
  /* color: #fff; */
  text-align: center;
  font-size: 17px;
  line-height: 25px;
  margin: 5px 0;
}

.menu_f_1 h3 {
  font-size: 16px;
  line-height: 25px;
  font-family: Roboto;
  margin: 0 0 5px;
  padding-right: 65px;
  position: relative;
  text-transform: uppercase;
  text-align: left;
  font-weight: bold;
}

footer h4 {
  font-size: 16px;
  line-height: 25px;
  font-family: Roboto;
  text-transform: uppercase;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 2px solid #006f5c;
  font-weight: bold;
}

footer .box-ft li {
  font-size: 16px;
  line-height: 20px;
  position: relative;
  margin-bottom: 15px;
  display: block;
  padding-left: 20px;
}

footer .box-ft li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10a58c;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 50%;
}
.box-qr {
  display: flex;
  background: #03a186;
  padding: 5px 5px 5px 15px;
  color: #fff;
  border-radius: 12px;
  margin: 20px 0 0;
  align-items: center;
}

.box-qr b {
  color: #72ed28;
  font-family: utm-avobold;
  font-size: 16px;
}

.text-qr {
  width: 65%;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  flex: 1;
  margin-right: 25px;
}

.img-qr img {
  border-radius: 12px;
}

.bottom-ft {
  position: relative;
  background-image: linear-gradient(#02b7ab, #018f86);
  padding: 30px 0;
}

.bottom-ft .ctn {
  display: flex;
  align-items: center;
}

.box-ft-phone {
  display: flex;
  position: relative;
  width: 50%;
  margin-right: 25px;
}

.box-ft-phone:before {
  content: "";
  display: inline-block;
  width: 53px;
  height: 65px;
  background: url(../img/icon/icphone-1.png) no-repeat;
  position: absolute;
  left: 49%;
  transform: translateX(-50%);
  top: -22px;
}

.box-ft-phone a {
  font-size: 40px;
  font-family: "utm-he";
  color: #fff;
  margin-right: 90px;
}

.zltv {
  display: flex;
  width: 50%;
  height: 50px;
  background: url(../img/tv-zalo.png) no-repeat;
}

/* content */

#l1 {
  background-image: linear-gradient(#23cf61, #129447);
  padding: 20px 0;
}

.s1-2 {
  background: linear-gradient(#23cf61, #129447);
  padding: 20px 0;
}

.ctn-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  /* Sử dụng flexbox cho bố cục ngang */
  justify-content: space-around;
  /* Phân phối đều các mục */
}

.ctn-2 ul li {
  text-align: center;
  position: relative;
  padding-top: 130px;
  /* Tạo khoảng trống cho biểu tượng */
}

.ctn-2 ul li a {
  display: block;
  font-family: "Roboto", sans-serif;
  /* Đảm bảo font Roboto được import hoặc thay thế */
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.icon-wrapper-2 {
  width: 110px;
  height: 110px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  /* Khoảng cách giữa icon và text */
  font-size: 40px;
  /* Kích thước biểu tượng */
  color: #007bff;
  /* Màu biểu tượng */
}

.icon-2 {
  width: 66px;
  height: 72px;
  background-image: url("../img/icon/icon-db.png");
  /* Đường dẫn đến sprite image */
  background-repeat: no-repeat;
  background-position: 0 0;
  /* Vị trí mặc định cho icon đầu tiên */
  background-size: auto 72px;
  /* Đảm bảo chiều cao icon là 72px */
}

.ctn-2 ul li:nth-child(2) .icon-2 {
  background-position: -80px 0;
  width: 85px;
}

.ctn-2 ul li:nth-child(3) .icon-2 {
  background-position: -177px 0;
}

.ctn-2 ul li:nth-child(4) .icon-2 {
  background-position: -258px 0;
}

#l2 {
  background: url(../img/phonganh1.jpg) no-repeat;
  padding: 40px 0;
}

#l2 .boxl2 {
  display: flex;
}

.imgl2 {
  width: 45%;
  margin-right: 25px;
}

.rl2 {
  width: 55%;
}

#l2 h3 {
  font-family: "utm-he";
  color: #006760;
  font-size: 30px;
  line-height: 1.1;
  text-align: center;
  font-weight: normal;
  width: 65%;
  margin: 0 auto 10px;
}

#l2 h4 {
  font-family: "tdk";
  color: #fb4848;
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
}

#l2 ul {
  display: flex;
  margin-top: 15px;
}

#l2 ul li {
  width: 31.333333%;
  text-align: center;
  margin: 0 1%;
  position: relative;
}

.rl2 p {
  text-align: center;
}

#l3 {
  padding: 30px 0;
  background: #fff;
}

#l3 .slick-dots {
  display: flex;
  align-items: center;
  margin: 15px auto 0;
  justify-content: center;
}

#l3 .slick-dots li {
  display: inline-block;
  width: 15px;
  height: 8px;
  background: #c3c3c3;
  border-radius: 15px;
  margin: 0 3px;
}

#l3 li.slick-active {
  width: 25px;
  background: #fb487e;
}

#l3 .slick-dots li button {
  display: none;
}

#l5 {
  background: url(../img/phonganh2.jpg) no-repeat;
  padding: 40px 0;
}

#l5 h3 {
  font-family: "utm-he";
  color: #9cdba1;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  font-weight: normal;
  text-shadow: 2px 0 #006760, 2px 3px #006760, 0 3px #006760, -2px 4px #006760,
    0px 4px #006760, -2px -1px #006760, 0px -2px #006760, -2px 2px #006760;
  text-transform: uppercase;
  margin-bottom: 3px;
}

#l5 h5 {
  font-family: "lobster";
  color: #0d8fff;
  font-size: 48px;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff,
    -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

#l5 .desbs {
  text-align: center;
}

#l5 .desbs h4 {
  background-image: linear-gradient(#026a15, #25a73b);
  display: inline-block;
  color: #fff;
  font-family: "lobster";
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  padding: 6px 0 15px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-width: 303px;
  text-align: center;
}

.desbs p {
  color: #06726a;
  text-align: center;
  max-width: 250px;
  background: #fff;
  margin: -8px auto 0;
  border-top-left-radius: 17px;
  border-bottom-right-radius: 17px;
  box-shadow: 0 3px 5px #ccc;
  position: relative;
  padding: 5px 10px;
}

#l5 .slick-track {
  padding-bottom: 20px;
}

#l5 .desbs a {
  display: block;
  text-align: center;
}

#l5 .desbs a img {
  display: inline-block !important;
  margin: 12px 0 0;
}

#l5 .slick-slide {
  margin: 0 15px !important;
}

#l5 .slick-dots {
  display: flex;
  align-items: center;
  margin: 15px auto 0;
  justify-content: center;
}

#l5 .slick-dots li {
  display: inline-block;
  width: 15px;
  height: 8px;
  background: #c3c3c3;
  border-radius: 15px;
  margin: 0 3px;
}

#l5 li.slick-active {
  width: 25px;
  background: #fb487e;
}

#l5 .slick-dots li button {
  display: none;
}

#l6 {
  background: url(../img/phonganh3.jpg) no-repeat;
  padding: 50px 0 30px;
}

#l6 .boxph {
  display: flex;
}

#l6 .tit-l6 {
  position: relative;
  margin-bottom: 70px;
}

#l6 h3 {
  text-align: center;
}

#l6 h3 span {
  font-family: utm-he;
  font-size: 28px;
  display: inline-block;
  color: #fff;
  background-image: linear-gradient(#09e312, #1aa16f);
  padding: 15px 40px;
  position: relative;
  font-weight: normal;
  text-transform: uppercase;
  border: 2px solid #fff;
  border-radius: 30px;
}

#l6 h3 span:before {
  content: "";
  display: inline-block;
  width: 206px;
  height: 132px;
  background: url(../img/icon/chat.png) no-repeat;
  position: absolute;
  top: -30px;
  left: -179px;
}

#l6 h5 {
  font-family: "imogen";
  font-size: 90px;
  color: #fff;
  position: absolute;
  top: 56px;
  right: 120px;
  line-height: 1;
  font-weight: normal;
}

#l6 .boxph .imgph {
  width: 55%;
  position: relative;
}

#l6 .slick-track {
  padding-bottom: 30px;
}

#l6 .boxph .imgph:before {
  content: "";
  display: inline-block;
  width: 194px;
  height: 397px;
  background: url(../img/icon/love-like.png) no-repeat;
  position: absolute;
  top: 18px;
  left: 0;
}

#l6 .boxph .imgph:after {
  content: "";
  display: inline-block;
  width: 132px;
  height: 166px;
  background: url(../img/icon/icontask.png) no-repeat;
  position: absolute;
  bottom: 6px;
  right: -22px;
}

#l6 .boxph .ctph {
  width: 45%;
  position: relative;
}

#l6 .boxph .ctph:before {
  content: "";
  display: inline-block;
  width: 88px;
  height: 89px;
  background: url(../img/icon/iconlove.png) no-repeat;
  position: absolute;
  top: 40px;
  left: -31px;
}

#l6 .boxph .ctph:after {
  content: "";
  display: inline-block;
  width: 137px;
  height: 112px;
  background: url(../img/icon/iconstart.png) no-repeat;
  position: absolute;
  bottom: 40px;
  right: 0px;
}

.bx-ctph {
  background: url(../img/icon/iconcomment.png) no-repeat center;
  height: 300px;
  padding: 50px 70px;
  text-align: center;
}

.bx-ctph h4 {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-family: utm-he;
  font-weight: normal;
}

.bx-ctph h6 {
  text-align: center;
  color: #fff;
  font-weight: normal;
}

.bx-ctph p {
  color: #fff;
  text-align: center;
}

#l6 .slick-slide img {
  margin-left: auto;
}

#l6 .slick-dots {
  display: flex;
  align-items: center;
  margin: 15px auto 0;
  justify-content: center;
}

#l6 .slick-dots li {
  display: inline-block;
  width: 15px;
  height: 8px;
  background: #c3c3c3;
  border-radius: 15px;
  margin: 0 3px;
}

#l6 li.slick-active {
  width: 25px;
  background: #fb487e;
}

#l6 .slick-dots li button {
  display: none;
}

#tt {
  padding: 40px 0;
}

#tt {
  padding: 40px 0;
}

#tt h3 {
  font-family: "utm-he";
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  font-weight: normal;
  text-shadow: 2px 0 #080808, 2px 3px #006760, 0 3px #006760, -2px 4px #006760,
    0px 4px #006760, -2px -1px #006760, 0px -2px #006760, -2px 2px #006760;
  text-transform: uppercase;
  margin-bottom: 7px;
}

#tt h4 {
  text-align: center;
  font-weight: normal;
  font-style: italic;
}

#tt .post {
  display: flex;
  margin: 40px 0 0;
  flex-wrap: wrap; /* Thêm thuộc tính này để các box xuống hàng khi không đủ chỗ */
}

#tt .post .box {
  width: calc(
    33% - 20px
  ); /* Thay đổi chiều rộng để có 2 box trên 1 hàng và có khoảng cách */
  margin: 0 10px 20px; /* Thêm margin bottom để tạo khoảng cách giữa các hàng */
}

#tt .img-pt {
  /* border: 1px solid #006b64e3; */
  border-radius: 20px;
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
}

#tt .img-pt img {
  border-radius: 20px;
  height: 400px;
}

#tt span.date {
  position: absolute;
  top: -14px;
  left: 40px;
  z-index: 2;
  display: inline-block;
  background: #006b64;
  color: #fff;
  padding: 3px 25px;
  border-radius: 30px;
}

#tt .des-tt h4 {
  font-size: 16px;
  line-height: 25px;
  margin: 15px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
  font-weight: bold;
  font-family: "Roboto";
}

#tt .des-tt h4 a {
  color: #1b1b1b;
}

#tt .view-all {
  display: inline-block;
  float: right;
  font-weight: bold;
  font-family: "Roboto";
  font-size: 16px;
  position: relative;
  color: #ff0d13;
  padding: 5px 40px 5px 20px;
  background-image: linear-gradient(to right, #ffd4d5, #fedede);
  margin-top: 10px;
  border-radius: 30px;
}

#tt .view-all:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/icon/icon-muiten.png) no-repeat;
  position: absolute;
  right: 12px;
  bottom: 7px;
  background-size: 11px;
}

#tt .box p {
  font-style: italic;
  position: relative;
  color: #1b1b1b;
  text-align: left;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#tt .view-all:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/icon/icon-muiten.png) no-repeat;
  position: absolute;
  right: 0px;
  bottom: 12px;
  background-size: 11px;
}

.img-map {
  width: 100%;
  height: auto;
}

.map {
  width: 630px;
  height: 655px;
}

.imgbs img {
  width: 90%;
  height: 300px;
  /* object-fit: cover; */
  display: block;
  /* Thêm thuộc tính này */
  margin: 0 auto;
  /* Thêm thuộc tính này để căn giữa ngang */
}
/* end content */

/* co so y te */

.section {
  padding: 60px 0;
}

.section-title {
  margin-bottom: 40px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #129447;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
}

.article h3 {
  font-size: 1.8rem;
  color: #129447;
  margin-top: 30px;
  margin-bottom: 15px;
}

.article ul {
  list-style: none;
  padding-left: 20px;
  display: grid;
}

.article ul li {
  margin-bottom: 10px;
  position: relative;
}

.article ul li:before {
  content: "\f105";
  /* Font Awesome right arrow icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -20px;
  top: 5px;
  color: #129447;
}

.doctor-slideshow {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.slide img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.slide h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 5px;
}

.slide p {
  font-size: 1rem;
  color: #666;
}

.slideshow-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.slideshow-controls button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #129447;
  cursor: pointer;
  margin: 0 5px;
}

.service-list ul {
  list-style: none;
  padding: 0;
}

.service-list ul li {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.testimonial-list {
  margin-top: 30px;
}

.testimonial {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  border-left: 5px solid #129447;
}

.testimonial p.author {
  font-style: italic;
  text-align: right;
  color: #777;
  margin-top: 10px;
}

/* Doctors Section */
.doctor-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.doctor-card img {
  width: 70%;
  height: 300px;
  /* object-fit: cover; */
  display: block;
  /* Thêm thuộc tính này */
  margin: 0 auto;
  /* Thêm thuộc tính này để căn giữa ngang */
}

.doctor-info {
  padding: 1.5rem;
  text-align: center;
}

/* endcosoyte */

.content-viewpost{
  font-size: 20px;
}


.clinic-note {
  /* background: #f8f9fa; Màu nền xám nhạt */
  color: #999; /* Màu chữ xám nhạt */
  text-align: center;
  font-size: 16px;
  padding: 20px;
  font-style: italic;
}

 /* Modal Background */
 .modal-success {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content */
.modal-content-success {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
}

/* Modal Title */
.modal-content-success h3 {
  color: #28a745;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

/* Modal Text */
.modal-content-success p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* Close Button */
.btn-close-success {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.btn-close-success:hover {
  background-color: #218838;
}

.footer-menu {
  display: none;
 }

 .btn-chat-1 {
  background-color: #00695c;
}
.btn-chat-1:hover {
  background-color: #00695c;
}

.btn-commit-1 {
  background-color: #005ac8;
}
.btn-commit-1:hover {
  background-color: #005ac8;
}
.btn-hotline-1 {
  background-color: #a11b1b;
}
.btn-hotline-1:hover {
  background-color: #a11b1b;
}
 


#notificationContainer-1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: white;
  padding: 15px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: none; /* Ẩn ban đầu */
}

#message-1 {
  font-weight: 600;
  margin-bottom: 10px;
}

.button-link-1 {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 5px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.button-link-1:hover {
  text-decoration: none;
  cursor: pointer;
}

.accept-button-1 {
  background-color: orange;
}

.reject-button-1 {
  background-color: teal;
}




/* Container cho ảnh nhạy cảm */
.sensitive-image-container {
  position: relative; /* Quan trọng: để các phần tử con (overlay, text) định vị tuyệt đối theo nó */
  display: inline-block; /* Hoặc block, tùy layout mong muốn */
  overflow: hidden; /* Đảm bảo không có gì tràn ra ngoài container */
  /* Có thể đặt width/height nếu cần, hoặc để ảnh tự định kích thước */
}

/* Ảnh gốc */
.sensitive-image-container img {
  display: block; /* Loại bỏ khoảng trắng dưới ảnh */
  width: 100%; /* Ảnh lấp đầy chiều rộng của container */
  height: auto; /* Duy trì tỷ lệ khung hình */
}

/* Lớp phủ tối */
.sensitive-image-container .overlay {
  position: absolute; /* Định vị tuyệt đối */
  top: 0;
  left: 0;
    right: 0;
  bottom: 0; /* Lấp đầy toàn bộ container */
  background-color: rgba(0, 0, 0, 0.7); /* Màu đen với độ mờ 70% (có thể điều chỉnh 0.5 - 0.8 tùy ý) */
  z-index: 2; /* Đảm bảo nó nằm trên ảnh */
  transition: opacity 0.3s ease; /* Tạo hiệu ứng mờ dần khi hover */
}

/* Chữ cảnh báo */
.sensitive-image-container .warning-text {
  position: absolute; /* Định vị tuyệt đối */
  top: 50%; /* Đưa tâm chữ về giữa container theo chiều dọc */
  left: 50%; /* Đưa tâm chữ về giữa container theo chiều ngang */
  transform: translate(-50%, -50%); /* Dịch chuyển chữ ngược lại 50% chiều rộng và chiều cao của nó để căn giữa hoàn hảo */
  color: white; /* Màu chữ */
  font-size: 1.2em; /* Kích thước chữ */
  font-weight: bold;
  text-align: center;
  z-index: 3; /* Đảm bảo nó nằm trên lớp phủ */
  pointer-events: none; /* Quan trọng: cho phép click/hover xuyên qua lớp chữ để tương tác với container */
  transition: opacity 0.3s ease; /* Tạo hiệu ứng mờ dần khi hover */
}

/* Hiệu ứng khi hover vào container */
.sensitive-image-container:hover .overlay {
  opacity: 0; /* Lớp phủ trở nên trong suốt */
}

.sensitive-image-container:hover .warning-text {
  opacity: 0; /* Chữ cảnh báo trở nên trong suốt */
}

/* Tùy chọn: Ảnh cũng có thể có transition nếu muốn */
.sensitive-image-container:hover img {
  /* Ví dụ: có thể bỏ filter nếu bạn dùng filter thay cho overlay */
  /* filter: brightness(1); */
}
/* CSS cho khối cha */
.parent-container {
  text-align: center; /* Điều này sẽ căn giữa nội dung kiểu inline, inline-block, và text bên trong nó */
  /* Các thuộc tính khác của khối cha (ví dụ: padding, background, border...) */
}

/* Giữ nguyên các CSS đã có cho .sensitive-image-container và các phần tử bên trong */
.sensitive-image-container {
  position: relative;
  display: inline-block; /* GIỮ NGUYÊN thuộc tính này */
  overflow: hidden;
  /* ... các thuộc tính khác của container ... */
}


/* style.css */

.comment-slide-container {
  /* Đảm bảo các block comment chia đều không gian */
  justify-content: space-around; /* Phân bố không gian giữa các block */
  padding: 20px 0; /* Khoảng đệm trên dưới cho container */
}

.comment-block {
  background-color: #ffffff; /* Nền trắng cho bình luận */
  border: 1px solid #e0e0e0; /* Viền nhẹ */
  border-radius: 10px; /* Góc bo tròn */
  padding: 25px; /* Khoảng đệm bên trong */
  margin: 0 10px; /* Khoảng cách giữa các bình luận */
  text-align: center; /* Căn giữa nội dung */
  flex: 1; /* Cho phép flex item co giãn */
  min-width: 280px; /* Đảm bảo chiều rộng tối thiểu trước khi xuống dòng */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hiệu ứng đổ bóng nhẹ */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hiệu ứng chuyển động khi hover */
  display: flex; /* Sử dụng flexbox bên trong comment block */
  flex-direction: column; /* Xếp các phần tử theo cột */
  align-items: center; /* Căn giữa theo chiều ngang */
  
}

.comment-block:hover {
  transform: translateY(-5px); /* Nâng nhẹ block lên khi hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Bóng rõ hơn khi hover */
}

.comment-content {
  /* .comment-content chứa cả <p> nội dung và .comment-info */
  /* Cần đảm bảo các phần tử con bên trong nó cũng được định vị tốt */
  width: 100%; /* Choán hết chiều rộng của comment-block (đã căn giữa) */
}
.comment-avatar img {
  width: 60px; /* Kích thước avatar */
  height: 60px;
  border-radius: 50%; /* Bo tròn avatar */
  object-fit: cover; /* Đảm bảo ảnh không bị méo */
  margin-bottom: 15px; /* Khoảng cách dưới avatar */
  border: 2px solid #00515d; /* Viền màu cho avatar */
}

.comment-content p {
  font-style: italic; /* Chữ nghiêng cho nội dung */
  color: #555; /* Màu chữ xám */
  margin-bottom: 10px; /* Giảm khoảng cách dưới đoạn text bình luận */
}

/* CSS mới cho Thời gian và Địa chỉ */
.comment-info {
  font-size: 0.9em; /* Cỡ chữ nhỏ hơn */
  font-weight:700;
  margin-bottom: 10px; /* Khoảng cách dưới thông tin */
  /* Bạn có thể thêm font-weight, vv. nếu muốn */
}


.comment-author {
  font-weight: bold; /* Chữ in đậm cho tên tác giả */
  color: #333; /* Màu chữ đậm hơn */
  
}

/* Điều chỉnh cho màn hình nhỏ hơn (dưới md - 768px) */


/* Tùy chỉnh màu sắc và kích thước cho nút điều hướng Bootstrap */
.carousel-control-prev,
.carousel-control-next {
  width: 5%; /* Giảm chiều rộng của vùng bấm */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Nền màu đen mờ cho icon */
  border-radius: 50%; /* Bo tròn icon */
  padding: 15px; /* Tăng kích thước icon */
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
   background-color: rgba(0, 0, 0, 0.8); /* Nền màu đen đậm hơn khi hover */
}