@charset "UTF-8";
/** $string - svg */
/** add unique id image url */
/** https://webdesign.tutsplus.com/tutorials/an-introduction-to-error-handling-in-sass--cms-19996 */
/** get breakpoint */
/** font size */
.section-form-home .wpcf7-response-output {
  color: #fff;
}
.section-form-home .contact-form {
  position: relative;
  width: 100%;
}
.section-form-home .contact-form .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
  z-index: 2;
}
.section-form-home .contact-form .bg-cta {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.section-form-home .contact-form .bg-cta img {
  width: 100%;
  height: 100%;
}
.section-form-home .contact-form .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 125px 40px;
  position: relative;
  z-index: 99;
}
@media only screen and (max-width: 47.99875rem) {
  .section-form-home .contact-form .inner {
    padding: 60px 20px;
  }
}
.section-form-home .contact-form .heading-title {
  color: #1e78c2 !important;
  filter: drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff) drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff);
  font-weight: 900;
  text-align: center;
}
.section-form-home .contact-form .heading-title {
  font-size: clamp(1.625rem, 0.625rem + 2.5vw, 2.875rem);
  line-height: clamp(2.1125rem, 0.8125rem + 3.25vw, 3.7375rem);
}
.section-form-home .contact-form .form-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}
.section-form-home .contact-form .form-wrapper input {
  border: 1px solid #ccc;
  border-radius: 30px;
  height: 50px;
  padding: 0 20px;
  font-size: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 47.99875rem) {
  .section-form-home .contact-form .form-wrapper input {
    height: 42px;
    width: 100%;
  }
}
.section-form-home .contact-form .form-wrapper input:focus {
  border: 1px solid #1e78c2;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 6px;
  outline: none;
}
.section-form-home .contact-form .form-wrapper .sm_home {
  background: #1e78c2;
  color: #fff;
  font-size: 18px;
  display: table;
  margin: 0 auto;
  transition: 0.3s;
}
.section-form-home .contact-form .form-wrapper .sm_home:hover {
  background: #FE7C3A;
}
.section-form-home .contact-form .form-wrapper .wpcf7-spinner {
  position: absolute;
}

.process-section {
  /* Sử dụng màu cam từ ảnh bạn cung cấp */
  padding: 80px 20px;
  color: #000;
  /* Thẻ "Kính Mờ" (Glassmorphism) */
  /* --- Responsive cho Di Động --- */
}
.process-section .section-title {
  text-align: center;
  font-weight: 800;
  color: #1e78c2;
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
}
.process-section .section-title {
  font-size: clamp(1.75rem, 1.55rem + 0.5vw, 2rem);
  line-height: clamp(2.8315rem, 2.5079rem + 0.809vw, 3.236rem);
}
.process-section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #1e78c2;
  margin: 12px auto 0;
  border-radius: 2px;
}
.process-section .process-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* Tự động xuống hàng khi không đủ chỗ */
}
.process-section .process-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* Hỗ trợ Safari */
  padding: 32px;
  border-radius: 12px; /* bo góc 12px */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex-basis: 300px; /* Chiều rộng cơ sở cho mỗi thẻ */
  /* Hiệu ứng khi hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-section .process-card:hover {
  transform: translateY(-8px); /* Nhấc thẻ lên 8px */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.process-section .process-card svg {
  font-size: 3rem; /* 48px */
  margin-bottom: 15px;
  fill: #1e78c2;
  width: 48px;
}
.process-section .process-card h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  margin-bottom: 8px;
}
.process-section .process-card p {
  font-size: 1rem; /* 16px */
  opacity: 0.9;
}
@media (max-width: 768px) {
  .process-section .section-title {
    font-size: 2rem; /* Giảm cỡ chữ tiêu đề */
  }
  .process-section .process-grid {
    flex-direction: column; /* Xếp chồng các thẻ */
    align-items: center; /* Căn giữa các thẻ */
    gap: 20px;
  }
  .process-section .process-card {
    width: 100%; /* Chiếm toàn bộ chiều rộng (trừ padding của section) */
    max-width: 350px; /* Giới hạn chiều rộng tối đa */
    flex-basis: auto; /* Bỏ chiều rộng cơ sở */
  }
}

/* Gạch chân trắng cho tiêu đề */
.cohoifaq-section {
  padding: 40px 0;
}
.cohoifaq-section .heading-title {
  color: #1e78c2;
  text-align: center;
}
.cohoifaq-section .faq-list {
  width: 65%;
  margin: 0 auto;
}
@media only screen and (max-width: 47.99875rem) {
  .cohoifaq-section .faq-list {
    width: 100%;
  }
}
.cohoifaq-section .faq-list .faq-question {
  font-weight: 800;
}

.hero {
  position: relative;
  width: 100%;
  padding: 6rem 0 8rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(30, 58, 138, 0.8), rgba(23, 37, 84, 0.9));
}
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}
.hero__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #93C5FD;
  text-transform: uppercase;
}
.hero__title {
  margin-top: 1rem;
  font-size: 2.25rem;
  font-weight: 700;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
.hero__description {
  margin: 1.5rem auto 0;
  font-size: 1.125rem;
  max-width: 48rem;
}
.hero__description--sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: #DBEAFE;
}
.hero .gallery-grid {
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  max-width: 64rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
}
@media (min-width: 768px) {
  .hero .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.hero .gallery-grid__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hero .gallery-grid__image:hover {
  transform: scale(1.05);
}

.features-container {
  padding-top: 4rem;
  padding-bottom: 0;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .features-container {
    padding: 0 1.5rem;
  }
}
.features-container .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) {
  .features-container .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .features-container .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.features-container .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.features-container .feature-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.5rem);
}
.features-container .feature-item__icon {
  width: 3rem;
  height: 3rem;
  color: #93C5FD;
}
.features-container .feature-item__title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.features-container .feature-item__description {
  font-size: 0.875rem;
  color: #93C5FD;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-section {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
  margin-top: -4rem;
}
.logo-section__background {
  background-color: white;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid white;
}
.logo-section__inner {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom right, #DBEAFE, #BFDBFE);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-section__svg {
  width: 4rem;
  height: 4rem;
  color: #1E40AF;
}