/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
/*--------------------------------------------------------------
# ALL STYLE
--------------------------------------------------------------*/
html {
  background-color: #fff;
}
:root {
  --primary-color: #951315;
  --mytitle-color: #1E1E1E;
}
.b-title {
  color: var(--mytitle-color) !important;
  margin-bottom: 0px;
}
.w-title {
  color: #fff !important;
}
.no-padding-bottom {
  padding-bottom: 0px !important;
}
/*--------------------------------------------------------------
# BUTTON
--------------------------------------------------------------*/
.more-button {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: white;
  padding: 10px 35px;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.more-button .plus {
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.more-button:hover .plus {
  transform: rotate(90deg);
}
.more-button:hover {
  background-color: #fff;
  color: var(--primary-color);
}
/*--------------------------------------------------------------
# SECTION TITLE
--------------------------------------------------------------*/
.section-title {
  text-align: center !important;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
.logo-left .logo {
  margin-right: 50px;
}
@media (max-width: 850px) {
  .logo-left .logo {
    margin-right: 0px;
  }
}

.wdt-button-holder .wdt-button {
  color: #000;
  border-style: solid;
  border-color: var(--primary-color);
  font-size: 0.8em;
  font-weight: 600;
  padding: 0.97em 1.75em 0.92em;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: color 0.3s ease;
  font-size: 12px;
}

.wdt-button-holder .wdt-button .wdt-button-icon {
  color: var(--primary-color);
  transition: color 0.3s ease 0s; /* delay 0 để icon đổi màu trước */
}

.wdt-button-holder .wdt-button .wdt-button-text {
  transition: color 0.3s ease 0.15s; /* text đổi màu sau 0.15s tạo cảm giác lan truyền */
}

.wdt-button-holder .wdt-button:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.wdt-button-holder .wdt-button:hover .wdt-button-icon {
  color: #000;
}

.wdt-button-holder .wdt-button:hover .wdt-button-text {
  color: var(--primary-color);
}
.header-nav.nav-left {
  justify-content: center;
}
.home .page-header-excerpt {
  display: none;
}
/*--------------------------------------------------------------
# BLOG ARCHIVE
--------------------------------------------------------------*/
.nav-pagination > li > a,
.nav-pagination > li > span {
  border-radius: unset;
  border: 1px solid #dee2e6;
}
/*--------------------------------------------------------------
# BLOG SINGLE
--------------------------------------------------------------*/
.blog-wrapper ul {
  margin-left: 1.4rem;
}

.blog-wrapper .entry-image img {
  border-radius: 8px;
}
.blog-wrapper .entry-title {
  margin-bottom: 0px;
}
.theme_blog_details-left-meta {
  margin: 20px 0;
}
.theme_blog_details-left-meta ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 5px;
  flex-wrap: wrap;
}
.theme_blog_details-left-meta ul li {
  list-style: none;
  display: inline-block;
  font-size: 16px;
  color: #000;
}
.theme_blog_details-left-meta ul li a {
  transition: 0.4s;
}
.theme_blog_details-left-meta ul li i {
  margin-right: 8px;
  color: var(--primary-color);
}
.search-container {
  background-color: #ead3d3;
  padding: 20px 15px;
  border-radius: 12px;
  margin: 0 auto;
}

.search-form {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 0;
}

input[type="text"].search-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: box-shadow 0.2s ease;
  height: unset;
  margin-bottom: 0;
}
input[type="text"].search-input:focus {
  box-shadow: 0 0 0 1px #bf00002a;
}
button[type="submit"].search-button {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin: 0;
  letter-spacing: normal;
  line-height: unset;
}

button[type="submit"].search-button:hover {
  background-color: #d32d2d;
}

.search-button:active {
  transform: translateY(1px);
}

.custom-latest-feed {
  margin: 0 auto;
  background-color: #eeeeee;
  padding: 20px 15px;
  border-radius: 8px;
}

.custom-latest-feed h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  position: relative;
}

.custom-latest-feed h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #000;
}

.custom-posts-wrapper {
  margin-top: 25px;
}

.custom-article-card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.custom-article-card:last-child {
  margin-bottom: 0;
}

.custom-entry-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #6c757d;
}

.custom-author-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.custom-author-badge {
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: relative;
}

.custom-author-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.custom-author-handle {
  font-weight: 500;
  color: var(--primary-color);
}

.custom-comment-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.custom-entry-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.custom-entry-title a {
  color: #000;
}
.custom-entry-title:hover {
  color: var(--primary-color);
}

@media (max-width: 480px) {
  .custom-article-card {
    padding: 15px;
  }

  .custom-entry-title {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# BANNER SECTION
--------------------------------------------------------------*/
.banner-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.banner-image .overlay {
  position: absolute;
  inset: 0; /* tương đương top: 0; right: 0; bottom: 0; left: 0 */
  background: rgba(0, 0, 0, 0.2); /* Màu đen trong suốt */
  z-index: 1;
}
.banner-content {
  position: relative;
  padding: 130px 0px 130px 0px;
  z-index: 2;
}
.banner-content .banner-subtitle {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 26px;
  color: var(--primary-color);
  background: #eee;
  border-radius: 50px 50px 50px 50px;
  margin-bottom: 30px;
  display: inline-block;
  padding: 2px 16px;
  position: relative;
  z-index: 1;
}
.banner-content .banner-description {
  font-size: 20px;
}
.banner-content .banner-button {
  display: flex;
}
.banner-content .banner-button span {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  padding: 10px 35px 10px 35px;
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  cursor: pointer;
}
.banner-content .banner-button span svg {
  width: 20px;
  height: 20px;
}
.banner-content .banner-button span:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.banner-arrow {
  top: 85%;
  display: flex;
  justify-content: end;
  position: absolute;
  margin: 0 auto;
  padding: 0 12px;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  gap: 20px;
  cursor: pointer;
}
.banner-arrow .container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.banner-arrow-next i,
.banner-arrow-prev i {
  font-size: 22px;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  transition: 0.4s;
}
.text-container span {
  font-size: 3rem;
}
.text-container .line1 {
  color: #bf0001;
}
.text-container .black-dot {
  color: var(--mytitle-color);
}
.text-container .line2 {
  color: var(--mytitle-color);
}
.text-container .red-dot {
  color: var(--primary-color);
}
.banner-image .banner-image-shape-two {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform: translateX(100px); /* bắt đầu lệch phải */
  transition: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}
@media (max-width: 700px) {
  .banner-image .banner-image-shape-two {
    right: -50px;
  }
}
/*--------------------------------------------------------------
# INFO SECTION
--------------------------------------------------------------*/
.hib-company-profile {
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.hib-profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hib-profile-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hib-profile-image-wrapper {
  position: relative;
}

.hib-profile-company-image {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hib-profile-content-wrapper {
  padding: 20px 0;
}

.hib-profile-section-badge {
  background: #bf00011a;
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.hib-profile-description-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.hib-profile-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.hib-profile-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.hib-profile-feature-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.hib-profile-feature-icon img {
  width: 28px;
  height: 28px;
}

.hib-profile-feature-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.hib-profile-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.hib-profile-cta-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 35px 10px 35px;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--primary-color);
  cursor: pointer;
}
.hib-profile-cta-btn:hover {
  color: var(--primary-color);
  background-color: #fff;
  border: 1px solid var(--primary-color);
}
.hib-profile-cta-btn::after {
  content: "→";
  font-size: 18px;
}

.hib-profile-ceo-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hib-profile-ceo-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe7575, #dd7878);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
}
.hib-profile-ceo-avatar img {
  border-radius: 50%;
}

.hib-profile-ceo-details h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.hib-profile-ceo-details p {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .hib-profile-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hib-profile-company-title {
    font-size: 28px;
  }

  .hib-profile-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hib-profile-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hib-profile-decorative-circle-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #fd79a8, #e84393);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.hib-profile-decorative-circle-2 {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00b894, #00a085);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}
/*--------------------------------------------------------------
# SERVICE GROUP
--------------------------------------------------------------*/
.service-group-wrapper {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
}
.service-group .section-title {
  justify-content: flex-start;
}
@media (max-width: 600px) {
  .service-group .section-title {
    justify-content: center;
    font-size: 24px;
  }
}
.service-group-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4); /* màu trắng mờ */
  z-index: 1;
  pointer-events: none;
}
.service-group {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  border-radius: 20px;
  color: #1f2937; /* màu chữ nếu cần tăng độ tương phản */
}

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.service-header .number {
  background-color: #fff;
  color: var(--primary-color);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: normal;
  font-weight: bold;
  flex-shrink: 0;
}

.service-header .title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 0px;
}

.service-header .description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
  max-width: 900px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background-color: white;
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: #0000001a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon img {
  width: 24px;
  height: 24px;
  fill: #dc3545;
}

.service-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 768px) {
  .service-group {
    padding: 40px 20px;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .service-header .number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .service-header .title {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px;
  }
}
/*--------------------------------------------------------------
# QA SECTION
--------------------------------------------------------------*/
.qa-section {
  margin: 0 auto;
  background-color: #eeeeee;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 60px 50px;
}

.strength-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.strength-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 30px;
  right: 0;
  height: 1px;
  background-color: #ddd;
}

.arrow-icon {
  flex-shrink: 0;
  margin-right: 20px;
  margin-top: 5px;
}

.arrow-icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid var(--primary-color);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.strength-text {
  flex: 1;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 0px;
}

.strength-text strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .qa-section {
    padding: 40px 30px;
  }

  .strength-item {
    margin-bottom: 35px;
  }

  .arrow-icon {
    margin-right: 15px;
  }

  .strength-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .qa-section {
    padding: 30px 20px;
  }

  .strength-text {
    font-size: 15px;
  }
}
/*--------------------------------------------------------------
# NEWS SECTION
--------------------------------------------------------------*/
.news-section {
  background-color: #fff;
}

.news-swiper {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.news-swiper .swiper-wrapper {
  margin-top: 20px;
  margin-bottom: 50px;
}
.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.news-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: #0000001a;
}

.news-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
}

.news-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-meta {
  margin-bottom: 20px;
}

.news-date {
  color: #999;
  font-size: 0.9rem;
}

.news-link {
  color: #c41e3a;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  margin-top: auto;
}

.news-link:hover {
  color: #a01729;
}

.news-link .arrow {
  transition: transform 0.3s ease;
}

.news-link:hover .arrow {
  transform: translateX(5px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #c41e3a;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: -25px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #c41e3a;
  color: #fff;
}

.swiper-pagination {
  bottom: -40px;
}

.swiper-pagination-bullet {
  background: #c41e3a;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Section Button */
.section-button {
  text-align: center;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c41e3a;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.btn-more:hover {
  background: #a01729;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
  color: #fff;
}

.btn-more .plus {
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.btn-more:hover .plus {
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
  .news-content {
    padding: 20px;
  }

  .news-title {
    font-size: 1.1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 480px) {
  .news-content {
    padding: 15px;
  }
}
/*--------------------------------------------------------------
# PARTNER SECTION
--------------------------------------------------------------*/
.partner-section {
  width: 100%;
  margin: 0 auto;
}

.slider-container {
  overflow: hidden;
  position: relative;
  height: 130px;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.slider-track {
  display: flex;
  animation: scroll 40s linear infinite;
  width: calc(280px * 12); /* 6 logos x 2 để tạo loop */
}

.partner-logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  margin-right: 30px;
  transition: all 0.4s ease;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
	border: solid 1px rgba(151,151,151,.25);
	border-radius: 8px;
	padding: 10px;
}

.partner-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.partner-logo:hover::before {
  opacity: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 6 - 40px * 6));
  }
}

/* Pause animation khi hover vào container */
.slider-container:hover .slider-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-container {
    height: 70px;
  }

  .partner-logo {
    width: 200px;
    height: 100px;
    margin-right: 15px;
  }
  .slider-track {
    width: calc(200px * 12);
    animation: scrollMobile 35s linear infinite;
  }

  @keyframes scrollMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 6 - 30px * 6));
    }
  }
}

@media (max-width: 480px) {
  .partner-logo {
    width: 110px;
    height: 55px;
    margin-right: 15px;
  }
  .slider-track {
    width: calc(200px * 12);
    animation: scrollSmall 30s linear infinite;
  }

  @keyframes scrollSmall {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100px * 6 - 20px * 6));
    }
  }
}

/* Smooth fade in animation */
.partner-section {
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# CTA SECTION
--------------------------------------------------------------*/
.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) {
  .cta-container {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.left-section {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}

.image-container {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.image-container img {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-section {
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  color: white;
}

@media (max-width: 700px) {
  .cta-container {
    display: grid;
    grid-template-columns: 1fr;
  }
  .left-section {
    min-height: 250px;
  }
  .right-section {
    padding: 30px;
  }
}
.form-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 1px;
}

.form-container {
  width: 100%;
  max-width: 520px;
}

/* WPForms のスタイルをオーバーライド */
.wpforms-container {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0px !important;
}

.wpforms-form {
  background: transparent !important;
}

.wpforms-field-container {
  margin-bottom: 20px;
}

.wpforms-field-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.wpforms-field-row .wpforms-field {
  flex: 1;
  margin-bottom: 0 !important;
}

.wpforms-field-label {
  color: white !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
  font-size: 14px !important;
}

.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="tel"],
.wpforms-field textarea {
  width: 100% !important;
  padding: 12px 15px !important;
  border: none !important;
  border-radius: 6px !important;
  background: white !important;
  font-size: 14px !important;
  color: #333 !important;
  transition: all 0.3s ease !important;
}

.wpforms-field input[type="text"]:focus,
.wpforms-field input[type="email"]:focus,
.wpforms-field input[type="tel"]:focus,
.wpforms-field textarea:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
}
.wpforms-container-full button[type="submit"] {
  display: flex;
  align-items: center;
  padding: 10px 35px !important;
  color: var(--primary-color) !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
  border-radius: 50px !important;
}
.wpforms-container-full button[type="submit"]:focus:after {
  border: none !important;
}
.wpforms-field textarea {
  height: 120px !important;
  resize: vertical !important;
}

.wpforms-submit-container {
  text-align: center;
  margin-top: 30px;
}

.wpforms-submit {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  border: 2px solid white !important;
  padding: 12px 30px !important;
  border-radius: 25px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
}

.wpforms-submit:hover {
  background: white !important;
  color: #c62d42 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}
.cta-container .wpforms-container-full .wpforms-form em.wpforms-error {
  color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
  .form-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .wpforms-field-row {
    flex-direction: column;
    gap: 0;
  }

  .wpforms-field-row .wpforms-field {
    margin-bottom: 20px !important;
  }
}
/*--------------------------------------------------------------
# PROJECT SECTION
--------------------------------------------------------------*/

.project-tabs {
  display: flex;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  max-width: 400px;
  margin: auto;
}

.project-tab {
  flex: 1;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  margin: 0;
  background-color: #00000033;
  color: #000;
}

.project-tab:hover {
  background: #e0e0e0;
}

.project-tab.active {
  background-color: white;
  color: #333;
}

/* Container cho swiper với arrow bên ngoài */
.swiper-container-wrapper {
  position: relative;
  padding: 0 60px; /* Tạo không gian cho arrow */
  margin-top: 20px;
}

.project-swiper {
  overflow: hidden; /* Giữ slide trong container */
  position: relative;
}

.project-slide-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-slide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
  padding-top: 75%; /* Tỷ lệ 4:3 */
  position: relative;
  overflow: hidden;
  height: 0;
}

.image-wrapper img {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-wrapper:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.project-content {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 10px;
}
.project-content span {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.project-content span svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}

.project-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  margin: 0;
  line-height: 1.3;
}

/* Swiper pagination */
.project-swiper-pagination {
  position: relative !important;
  margin-top: 20px;
  text-align: center;
}

.project-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.project-swiper-pagination .swiper-pagination-bullet-active {
  background: #c41e3a;
  transform: scale(1.2);
}

/* Arrow buttons - Đặt bên ngoài swiper */
.project-swiper-button-prev,
.project-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20; /* Tăng z-index để đảm bảo hiện trên cùng */
  width: 50px;
  height: 50px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.project-swiper-button-prev:hover,
.project-swiper-button-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.project-swiper-button-prev {
  left: 5px; /* Đưa vào trong padding của container */
}

.project-swiper-button-next {
  right: 5px; /* Đưa vào trong padding của container */
}

.project-swiper-button-prev svg,
.project-swiper-button-next svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .swiper-container-wrapper {
    padding: 0px;
  }

  .project-swiper-button-prev,
  .project-swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .project-swiper-button-prev {
    left: 5px;
  }

  .project-swiper-button-next {
    right: 5px;
  }

  .project-swiper-button-prev svg,
  .project-swiper-button-next svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  /* Ẩn arrow buttons trên mobile */
  .project-swiper-button-prev,
  .project-swiper-button-next {
    display: none;
  }

  /* Hiện pagination trên mobile */
  .project-swiper-pagination {
    display: block;
  }

  .project-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Ẩn pagination trên desktop/tablet */
@media (min-width: 481px) {
  .project-swiper-pagination {
    display: none;
  }
}

/*--------------------------------------------------------------
# MOBILE MENU
--------------------------------------------------------------*/
.off-canvas-left .mfp-content {
  width: 100%;
  background-color: var(--primary-color);
}
.off-canvas-left .mfp-content .nav-vertical li > a {
  text-transform: none;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #fff;
}
.off-canvas-left .mfp-content .nav-vertical li i {
  color: #fff;
  opacity: 1;
}
.mfp-ready .mfp-close {
  opacity: 1;
  mix-blend-mode: normal;
}
.toggle {
  opacity: 1;
}
/*--------------------------------------------------------------
# CONTACT SECTION
--------------------------------------------------------------*/
.fs-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  min-height: 600px;
}

.fs-form-section {
  padding: 50px 40px;
  background: #e5e5e5;
}

.contact-info {
  padding: 50px 40px;
  background: linear-gradient(
    90deg,
    rgba(190, 2, 3, 1) 0%,
    rgba(214, 75, 75, 1) 50%,
    rgba(201, 99, 99, 1) 100%
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fs-header {
  margin-bottom: 30px;
}

.start-conversation {
  display: inline-flex;
  align-items: center;
  background: #fae8e7;
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.start-conversation::before {
  content: "●";
  margin-right: 8px;
  color: var(--primary-color);
}

.subtitle {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 24px;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-content {
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .fs-container {
    grid-template-columns: 1fr;
  }

  .fs-form-section,
  .contact-info {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    gap: 20px;
  }
}

/* Animation cho form load */
.form-section {
  animation: slideInLeft 0.8s ease-out;
}

.contact-info {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*--------------------------------------------------------------
# LANGUAGE SWITCHER
--------------------------------------------------------------*/
@media (max-width: 849px) {
  .header-main li.html.custom {
    display: block;
  }
}
@media (max-width: 700px) {
  .language-name {
    display: none;
  }
}
@media screen and (max-width: 849px) {
  .medium-logo-center .logo {
    margin: 0px;
    order: 2;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# SERVICE ICON BOX
--------------------------------------------------------------*/
.icon__box-item {
  align-items: center;
  position: relative;
  z-index: 8;
  top: 0;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.05);
}
.icon__box-item {
  display: block;
  text-align: left;
  background: #fff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #dde6e3;
  border-radius: 8px;
  padding: 35px 35px 35px 35px;
  transition: 0.4s;
}
.icon__box-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.icon__box-item-overlay {
  border-radius: 8px;
  opacity: 0;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  transition: 0.4s ease 0s, background-color 0.5s ease 0s,
    background-image 0.5s ease 0s;
}
.icon__box-item:hover .icon__box-item-overlay {
  opacity: 1;
}
.icon__box-item-overlay::before {
  background: #be020288;
  transition: 0.4s;
  z-index: 1;
}

.icon__box-item-overlay::before,
.icon__box-item-overlay::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.icon__box-item-icon {
  background: #f5e0e0;
  width: 80px;
  height: 80px;
  min-width: 80px;
  margin: 0px 0px 25px 0px;
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  transition: 0.4s;
  align-items: center;
  justify-content: center;
}
.icon__box-item-icon i {
  color: var(--primary-color);
  font-size: 45px;
}
.icon__box-item-content {
  display: flex;
  justify-content: left;
  flex-direction: column;
  gap: 3px;
}
.icon__box-item-content h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
.icon__box-item .icon__box-item-content h5 a {
  color: var(--mytitle-color);
}
.icon__box-item:hover .icon__box-item-content h5 a {
  color: #fff;
}
.icon__box-item-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--mytitle-color);
  margin: 12px 0px 26px 0px;
}
.icon__box-item:hover .icon__box-item-content p {
  color: #fff;
}
.flexitype-button {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--mytitle-color);
  background: #02010100;
  padding: 0px 0px 0px 0px;
  gap: 7px;
  transition: 0.4s;
}
.icon__box-item:hover .flexitype-button {
  color: #fff;
  opacity: 1;
}
.flexitype-button i {
  font-size: 12px;
  transition: 0.4s;
}
/*--------------------------------------------------------------
# SEARCH PAGE
--------------------------------------------------------------*/
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.product-title {
  font-size: 18px;
  font-weight: 600;
}
.product-price {
  color: #d52b1e;
  font-weight: bold;
  margin: 5px 0;
}
.search-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.tab-content .tab .search-results {
  display: none; /* Ẩn tất cả nội dung bài viết mặc định */
}

.tab-content .tab.active .search-results {
  display: block; /* Chỉ hiển thị nội dung bài viết của tab active */
}
.search-results-container {
  padding-top: 30px;
}
.search-title {
  margin-bottom: 0px;
}
.search-tabs {
  margin: 2em 0;
}

/* CSS để thêm vào file style.css của theme */
.search-tabs .tab-links {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap; /* Cho phép xuống dòng trên màn hình nhỏ nếu cần */
}

.search-tabs .tab-links li {
  margin: 0;
  padding: 0;
  flex: 1; /* Mỗi tab có độ rộng bằng nhau */
  text-align: center;
}

.search-tabs .tab-links a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap; /* Ngăn text xuống dòng trong tab */
  overflow: hidden;
  text-overflow: ellipsis; /* Thêm dấu ... khi text quá dài */
}

.search-tabs .tab-links li.active a {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/* Responsive styles */
@media screen and (max-width: 767px) {
  .search-tabs .tab-links {
    flex-direction: column; /* Tab xếp dọc trên mobile */
  }

  .search-tabs .tab-links li {
    flex: none;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .search-tabs .tab-links li:last-child {
    border-bottom: none;
  }

  .search-tabs .tab-links a {
    padding: 12px 10px;
    text-align: left;
  }

  .search-tabs .tab-links li.active a {
    border-bottom: none;
    border-left: 3px solid var(--primary-color);
    background-color: #f7f7f7;
  }
}

/* Phiên bản thay thế: Tab kiểu nút bấm trên mobile */
@media screen and (max-width: 767px) {
  .search-tabs .tab-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
  }

  .search-tabs .tab-links li {
    width: auto;
    border: none;
    margin-bottom: 8px;
  }

  .search-tabs .tab-links a {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9em;
    text-align: center;
  }

  .search-tabs .tab-links li.active a {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
  }
}

/* Phiên bản tab scroll ngang */
@media screen and (max-width: 767px) {
  .search-tabs .tab-links {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Làm mượt cuộn trên iOS */
    scrollbar-width: none; /* Ẩn thanh cuộn trên Firefox */
    -ms-overflow-style: none; /* Ẩn thanh cuộn trên IE/Edge */
    padding-bottom: 5px;
    justify-content: flex-start;
  }

  .search-tabs .tab-links::-webkit-scrollbar {
    display: none; /* Ẩn thanh cuộn trên Chrome/Safari */
  }

  .search-tabs .tab-links li {
    flex: 0 0 auto;
    width: auto;
    border: none;
  }

  .search-tabs .tab-links a {
    padding: 10px 15px;
    white-space: nowrap;
    text-align: center;
  }

  .search-tabs .tab-links li.active a {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
  }
}

.tab-links li.active a {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab {
  display: none;
  padding: 1.5em 0;
}

.tab.active {
  display: block;
}

.search-results {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-item {
  margin-bottom: 1.5em;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5em;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item .search-item-inner {
  display: flex;
  text-decoration: none;
  color: inherit;
  gap: 1em;
}

.search-thumbnail {
  flex: 0 0 150px;
}

.search-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.search-content {
  flex: 1;
}

.search-content h3 {
  margin: 0 0 0.5em;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.search-content p {
  margin: 0 0 0.5em;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.search-content .button-wrapper {
  justify-content: flex-start;
}
.search-content .button-wrapper .btn-pri,
.search-content .button-wrapper .btn-sec {
  max-width: 150px;
}
@media (max-width: 410px) {
  .search-content .button-wrapper {
    flex-direction: column;
  }
}
.post-date {
  font-size: 0.9em;
  color: #999;
}

.no-results {
  text-align: center;
  padding: 2em;
  background: #f8f8f8;
  border-radius: 4px;
}

.pagination-wrapper {
  margin-top: 2em;
  text-align: center;
}

.custom-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-top: 2em;
}

.custom-pagination a,
.custom-pagination span {
  padding: 0.5em 1em;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #666;
}

.custom-pagination a:hover {
  background-color: #f5f5f5;
}

.custom-pagination .current-page {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.custom-pagination .dots {
  border: none;
  padding: 0 0.5em;
}

.pagination-prev,
.pagination-next {
  font-weight: bold;
}
/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.absolute-footer {
  display: none;
}
#footer h3 {
  font-size: 25px;
}
.myicon-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.myicon-box-content {
  display: flex;
  flex-direction: column;
}
.myicon-box-content span:nth-child(2) {
  font-weight: 600;
}
.myicon-box .icon {
  width: 50px;
  height: 50px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.myicon-box .icon img {
  width: 20px;
  height: 20px;
}
#footer ul li {
  list-style: none;
  margin-left: 0px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#footer ul li a {
  color: #000;
}
#footer ul li::before {
  content: "≫";
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}
#footer ul li:hover {
  background: rgba(255, 156, 156, 0.1);
  transform: translateX(5px);
  border-radius: 3px;
  padding-left: 15px;
}
#footer ul li:hover::before {
  transform: translateX(3px);
}
.social-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}
.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.page-sign p {
  margin-bottom: 0px;
}