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

html,
body {
  max-width: 100%;
	overflow-x: hidden;
}
 .single-post {
  overflow: visible;
}

.ez-toc-counter nav ul li a::before {
	color: #000000 !important;
}

.custom-ul ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.custom-ul ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.custom-ul li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.custom-ul li p {
  font-weight: normal;
}

.custom-ul li p strong {
  font-weight: bold;
}

.language-switcher a {
  transition: opacity 0.3s;
}

.language-switcher a:hover {
  opacity: 1;
}

/* contact form */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #eae7e7;
  border-radius: 6px;
  transition: 0.3s ease;
  background-color: #fff;
  color: #6c757d;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  border-color: var(--background-green);
  outline: #282d31;
}

.wpcf7 textarea {
  height: 114px;
}

.wpcf7-submit {
  background-color: var(--background-green);
  color: white;
  padding: 12px 24px;
  border: 1px solid white;
  border-radius: 56px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
}

.contact-row {
  display: flex;
  gap: 8px;
  flex-direction: row;
}

.contact-row-child {
  width: 100%;
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
  }

  .contact-row-child {
    width: 100%;
  }
}

@keyframes bounce {

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

  50% {
    transform: translateY(-10px);
  }
}

.wpcf7-submit:hover {
  background-color: white;
  color: var(--text-green);
  border: 1px solid var(--background-green);
  animation: bounce 1s infinite;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.news-card {
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.swiper-pagination {
  bottom: -5px !important;
}

/*  css  main menu */
.main-nav .nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav .nav-menu li {
  padding-right: 20px;
  font-size: 18px;
}

.main-nav .nav-menu li a:hover {
  text-decoration: none;
  color: var(--text-green-light);
  font-weight: bold;
}

.main-nav .nav-menu li.current-menu-item a {
  text-decoration: none;
  color: #e61810;
  font-weight: bold;
}

.main-nav .nav-menu li:last-child {
  border: none;
  margin-right: 0;
  padding-right: 0;
}

.main-nav .nav-menu li a {
  color: #473f3f;
  text-decoration: none;
  font-weight: bold;
}

/* slide partner */

.animate-slide {
  display: flex;
  width: max-content;
  animation: slide 60s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.flip-card {
  perspective: 1000px;
  width: 100%;
  height: 380px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flip-card-front {
  background: #ffffff;
  color: #000;
}

.flip-card-back {
  background: #ffffff;
  color: #000;
  transform: rotateY(180deg);
  padding: 16px;
}

.news-prev,
.news-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 50;
}

/* Đẩy TỰ DO */
.news-prev {
  left: -60px;
}

.news-next {
  right: -60px;
}

/* Icon */
.news-prev::after,
.news-next::after {
  font-size: 14px;
  color: #f97316;
  font-family: swiper-icons;
}

.swiper-pagination-bullet-active {
  background: var(--text-green-light) !important;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--text-title);
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.footer-column ul li a:hover {
  color: var(--text-green-light);
}

.menu-language .pll-parent-menu-item>a {
  display: none;
}

.menu-language li .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-language li .sub-menu li a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 6px;
}