/* Fonts */
:root {
  --default-font: "Montserrat", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
  --bold-font: "Montserrat Bold", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #151515;
  --accent-color: #fe6b00;
  --surface-color: #ffffff;
  --contrast-color: #312f2f;
}

:root {
  --nav-color: rgba(255, 255, 255, 0.905);
  --nav-hover-color: #ffc451;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #ffc451;
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h2,
.h2 {
  font-weight: 700;
}

.h4,
h4 {
  /* font-size: 1.3rem; */
  font-size: 26px;
}

.container {
  max-width: 1170px;
}

.margin-left-0 {
  margin-left: -15px;
}

.margin-right-0 {
  margin-right: -20px !important;
}

p {
  text-align: justify;
}

img {
  max-width: 100%;
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 16px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 64px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

.bg-theme-colored {
  background-color: #1d2945 !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    width: 100%;
    position: relative;
    background: transparent none repeat scroll 0 0;
    display: inline-block;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
  }

  .navmenu ul li {
    padding: 18px 0;
    display: inline-block;
    float: left;
    line-height: 2;
  }

  .navmenu ul li a {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    padding: 8px 14.5px;
    border-radius: 30px;
  }

  .navmenu .activate {
    background: #fff none repeat scroll 0 0;
    color: #202C45;
  }

  .navmenu ul li:hover a {
    background: #fff none repeat scroll 0 0;
    color: #202C45;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
  background: #1d2945;
}

.footer.divider {
  background-repeat: repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.footer .footer-top {
  padding-top: 70px;
  padding-bottom: 70px;
}

.menuzord-brand {
  color: #666;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
}

.menuzord-brand img {
  max-height: 65px;
}

.menuzord-brand img.mt-5 {
  margin-top: 5px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.footer .widget-title {
  margin-top: 0px;
  color: #fff;
  margin-bottom: 15px;
}

.text-gray {
  color: #808080 !important;
}

.footer .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

p.text-grey {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  /* padding-left: 15px; */
  line-height: 1.5;
}

.list-border ul li {
  border-bottom: 1px dashed #404040;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer .footer-top {
    padding-left: 12px;
    padding-right: 150px;
  }

  .footer .footer-links ul li {
    padding-left: 0;
    padding-top: 0px !important;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  background: rgba(0, 0, 0, 0.1);
  bottom: 15px;
  display: none;
  height: 50px;
  padding: 2px;
  position: fixed;
  right: 15px;
  text-align: center;
  text-decoration: none;
  width: 50px;
  z-index: 99999;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 45px 0px;
  scroll-margin-top: 80px;
  overflow: clip;
}

section.gpsmc {
  padding: 0;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 24px;
    padding: 24px 0px;
    overflow: visible;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  margin-bottom: 40px;
  position: relative;
}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 0px;
  }
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-45 {
  margin-bottom: 40px !important;
}

.font-50 {
  font-size: 33px;
  text-transform: uppercase;
}

.section-title h2 span,
.text-theme-color-2 {
  color: #fe6b00;
}

.line-bottom-centered:after {
  background: #fe6b00 none repeat scroll 0 0;
  bottom: 0px;
  content: "";
  height: 2px;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  position: absolute;
  right: 0;
  width: 50px;
}

.line-bottom-left:after {
  background: #fe6b00 none repeat scroll 0 0;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  margin-top: 0;
  position: absolute;
  right: 0;
  width: 50px;
}

@media (max-width: 768px) {
  .line-bottom-centered::after {
    left: 0px;
    bottom: 0px;
    right: auto;
    margin-left: 15px;
    margin-right: 0;
    width: 60px;
  }
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 90px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 80%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  display: flex;
  padding: 90px 0 45px 0;
  flex-direction: column;
  /* gap: 40px; */
  align-self: stretch;
}

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about {
    padding: 24px 15px 40px 15px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }

  .image-section img {
    display: none;
  }

  .list1,
  .list2,
  .list3,
  .list4 {
    position: unset !important;
  }

  .row_listd .p-4 {
    padding: 0 !important;
    background-color: #fff;
  }

  .row_listd .numbered-list {
    font-size: 20px;
  }

  .ttghs .box_ttghs h2 {
    font-size: 33px;
  }

  .ttghs {
    padding: 0 !important;
  }

  #ncdnlds .data_ncha img {
    height: 280px !important;
  }

  .rownch .icon-box a {
    font-size: 13px !important;
  }

  /* .box_ds .box_teeds {
    padding: 20px;
  } */

  .vls2 {
    padding-left: 12px !important;
  }

  .vls {
    padding-right: 12px !important;
  }

  .div_hdmbs .logo_box a {
    justify-content: center;
  }

  .box_contatcs {
    flex-direction: column;
    align-items: center;
  }

  .div_hdmbs .list-inline i {
    font-size: 10px;
  }

  .div_hdmbs {
    gap: 15px;
  }

  .header_bot {
    padding: 10px;
    text-align: right;
  }

  .header_bot i {
    margin-right: 0;
  }

  .hd_tops .row {
    position: relative;
  }

  .hd_tops .row .folws {
    position: absolute;
    top: 0;
    right: 10px;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

#hero h1 {
  font-family: "Titillium Web", sans-serif;
  font-size: 34px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 0;
}

#hero h1 span {
  color: #fe6b00;
}



.tt_gt h3 span,
.tt_gt h2 span {
  color: #fe6b00;
}

.box_count span.purecounter {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  text-shadow: -1px -1px 0 #f07609, 1px -1px 0 #f07609, -1px 1px 0 #f07609, 1px 1px 0 #f07609;
  color: #f07609;
}

.box_count {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 10px 35px 4px rgba(51, 51, 51, 0.1);
  box-shadow: 0px 10px 35px 4px rgba(51, 51, 51, 0.1);
  padding: 30px;
  margin: 0 0 20px 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  border-radius: 5px;
}

.box_count .d-flex {
  gap: 20px;
  color: #000;
}

.box_count p {
  margin-bottom: 0;
}

.des {
  margin-top: 30px;
  margin-bottom: 0px;
  color: #000;
}

.des p {
  margin-bottom: 0;
}

.dnc {
  align-items: center;
}

.nls img {
  width: 100%;
}

.gt_sc {
  margin-left: 15px;
}

.gt_sc p {
  color: #000;
  font-size: 16px;
}

.des p {
  font-size: 16px;
}

.about .content h3 {
  margin-bottom: 35px;
  line-height: 40px;
}

.bg-after {
  width: 100%;
}

.bg-after {
  width: 100%;
  padding-top: 90px;
}

.tt-htcls h2 span {
  color: #fe6b00;
}

.box_des p {
  margin-top: 25px;
  color: #000;
}

.box_des {
  margin-bottom: 80px;
}

.box_icons {
  background: #FFF;
  box-shadow: 0 4px 18.9px 0 rgba(0, 0, 0, 0.25);
  padding: 12px;
  cursor: pointer;
  /* height: 360px; */
  /* border-bottom: 10px solid #fe6c00; */
}

.box_title h4 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.box_title h4 span {
  color: #fe6b00;
  line-height: 145%;
  font-size: 25px;
  font-style: normal;
  padding: 5px;
}

.box_icons .cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center !important;
  margin: 12px 0px;
}

.cta a {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
  background: #FE6B00;
  padding: 0px 10px;
}

.cta a:hover {
  background: var(--Sub-dominant, #1E2945);
}

.box_icons img {
  height: 190px;
  align-self: stretch;
}

.ings {
  text-align: center;
  margin-bottom: 10px;
}

/* .box_icons:hover {
  -webkit-box-shadow: 0px 20px 35px 0px rgba(51, 51, 51, 0.15);
  box-shadow: 0px 20px 35px 0px rgba(51, 51, 51, 0.15);
  transform: translateY(-15px) !important;
  -webkit-transform: translateY(-15px) !important;
  -moz-transform: translateY(-15px) !important;
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
} */

.box_icons .btn-read-more {
  color: #444;
  text-align: justify;
}

.cts {
  padding-top: 0;
}

.cts p {
  margin: 0;
  text-align: justify;
}

.htcls {
  background: url(../images/source_bg_2_1.jpg) top/cover no-repeat;
  position: relative;
  padding: 90px 0;
}

.htcls::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.htcls>.section-title,
.htcls .row,
.htcls p,
.htcls .mcj {
  position: relative;
  z-index: 2;
  color: var(--grey-1, #444);
  text-align: justify;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
}

@media (max-width: 768px) {
  .htcls {
    padding: 24px 15px;
  }
}

.box_datattghs ul li {
  list-style: none;
  position: relative;
}

.box_datattghs {
  overflow: hidden;
  background-color: #fff;
  box-shadow: rgb(0 0 0 / 4%) 0px 3px 5px;
  cursor: pointer;
}

.box_datattghs .icon {
  margin-left: -10px;
  font-size: 60px;
  font-weight: 800;
  line-height: 158px;
  color: #134a96;
}

.box_datattghs .icon span {
  color: #fe6b00;
}

.box_datattghs .text {
  padding-left: 20px;
  padding-right: 20px;
  color: black;
  height: 95px;
}

.box_datattghs img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.box_datattghs:hover {
  cursor: pointer;
  background: linear-gradient(to right, #134a96, #134a96c7);
}

.box_datattghs:hover .icon {
  color: #fff;
}

.box_datattghs:hover .text {
  color: #fff;
}

.box_datattghs:hover img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.box_ttghs {
  margin-bottom: 50px;
}

.data_ncha img {
  width: 100%;
  height: 250px;
}

.data_ncha {
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  padding: 0;
}

.msd {
  padding: 20px;
  color: #000;
  font-size: 17px;
  text-align: justify;
  line-height: 35px;
  height: 235px;
}

.rowcnsd .col_cust {
  padding: 20px;
}

.rowcnsd .col_cust .data_ncha {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

#about {
  position: relative;
  background: url(../images/about1.png) top/cover no-repeat;
  overflow: hidden;
}

/* Lớp phủ mờ bên phải (như Figma) */
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: rgba(255, 255, 255, 0.8); */
  pointer-events: none;
}

#about>.section-title,
#about .row,
#about p,
#about .mcj {
  position: relative;
  z-index: 2;
  color: var(--grey-1, #444);
  text-align: justify;
  /* TextStyle (Fl WebGốc)/Body text */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 0px;
  /* 175% */
}

.section h2 {
  text-align: center !important;
  margin-bottom: 16px !important;
}

#ap {
  margin-bottom: 45px;
}

#about .row>* {
  margin-top: 0px !important;
}

@media (max-width: 768px) {
  #about .mcj {
    margin: 24px 0;
  }

  .hero {
    width: 100%;
    position: relative;
    padding: 80px 15px 60px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section h2 {
    font-size: 28px;
    text-align: left !important;
    padding: 16px 0px;
    margin-bottom: 0px !important;
    line-height: 150%;
  }

  .ctabound {
    align-items: center;
    justify-items: center;
    width: 100%;
  }

  #ap {
    margin-bottom: 16px;
  }
}

#ncdnlds .data_ncha img {
  height: 410px;
}

.img_box {
  background-color: #fff;
  padding: 10px;
}

.img_box h4 {
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #000;
  font-weight: bold;
  font-size: 17px;
}

.msd h5 {
  text-transform: uppercase;
  color: #000;
  font-size: 17px;
  margin-bottom: 10px;
}

#ncdnlds {
  margin-top: 45px;
}

#ncdnlds .data_ncha .msd {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border: 1px solid #fff;
  margin-top: 10px;
  border-radius: 5px;
  background-color: #fff;
}


/*--------------------------------- Section Giải pháp đào tạo -----------------------------*/
.gpdt {
  margin-top: 64px;
  margin-bottom: 64px;
}

.containergpdt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 72px;
  margin: 0px !important;
}

.box_gpdt {
  background-color: #fff;
  box-shadow: 0 4px 18.9px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  text-align: center;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}

.box_gpdt:hover {
  -webkit-box-shadow: 0px 20px 35px 0px rgba(51, 51, 51, 0.15);
  box-shadow: 0px 20px 35px 0px rgba(51, 51, 51, 0.15);
  transform: translateY(-15px) !important;
  -webkit-transform: translateY(-15px) !important;
  -moz-transform: translateY(-15px) !important;
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
}

.box_gpdt h4 {
  width: 100%;
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
  padding: 10px;
  margin-bottom: 0px;
}

.box_gpdt p {
  padding: 0 20px;
  margin-bottom: 0px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.box_gpdt .cta {
  text-align: center !important;
  align-items: center;
  width: 100%;
}

.box_gpdt .course {
  padding: 0 0px;
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ncdn {
  padding-top: 0px !important;
}

.course-box {
  flex-direction: column;
  display: flex;
  gap: 5px;
  align-items: center;
  flex: 0 1 calc(33.333% - 24px);
}

.bg-orange {
  background-color: #fe6b00;
}

.btn-orange {
  background-color: #fe6b00;
  border: none;
}

.btn-orange:hover {
  background-color: #e55e00;
}

.course-title {
  color: #fe6b00;
  text-transform: uppercase;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.course-box img {
  transition: transform 0.3s ease;
}

.course-box:hover img {
  transform: scale(1.03);
}

#ncdnlds .blended-img {
  background-image: url('../images/blended_training_2_resize.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  margin-left: 70px;
  /* ✅ đảm bảo hiển thị được hình */
}

#ncdnlds .blended-img-1 {
  background-image: url('../images/blended_training_1_resize.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 340px;
  /* ✅ đảm bảo hiển thị được hình */
}

.blended-img-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 420px;
}

.process-section {
  overflow: hidden;
  position: relative;
}

/* --- Đường line --- */
.arrow-flow {
  position: absolute;
  top: 54px;
  left: 10px;
  right: 0;
  height: 10px;
  border-radius: 9999px;
  background: rgba(254, 107, 0, 0.20);
  /* transform: translateY(-50%); */
  z-index: 0;
}

/* --- Mũi tên SVG --- */
.arrow-flow .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: auto;
}

/* Vị trí 4 mũi tên */
.arrow-1 {
  left: -10px;
}

/* đầu line */
.arrow-2 {
  left: calc(31%);
}

/* giữa box 1 và 2 (84px / 2 = 42px bù) */
.arrow-3 {
  left: calc(63.33%);
}

/* giữa box 2 và 3 */
.arrow-4 {
  right: 10px;
}

/* cuối line */

/* --- Box nội dung --- */
.info-box {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
  text-align: center;
}

.hex-icon {
  position: relative;
  width: 100px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hex-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hex-inner {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  fill: white;
}

.process-flow {
  position: relative;
  margin-top: 64px;
  margin-bottom: 20px;
  padding: 0 10px;
}

.process-line {
  position: absolute;
  top: 50px;
  /* chỉnh theo vị trí hex-icon */
  left: 10px;
  width: 100%;
  height: 10px;
  border-radius: 9999px;
  background: rgba(254, 107, 0, 0.20);
  z-index: 0;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.arrow-start {
  left: -10px;
}

.arrow-mid1 {
  left: 31%;
}

.arrow-mid2 {
  left: 65%;
}

.arrow-end {
  right: 0;
}

.process-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
}

.process-items-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
}

.process-box {
  width: 30%;
  /* thay vì col-md-4 */
  text-align: center;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.hex-icon {
  position: relative;
  width: 94px;
  height: 105px;
  margin: 0 auto 20px;
}

.hex-icon::before {
  content: "";
  position: absolute;
  inset: 0;
}

.icon-inner {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  margin-top: 28px;
}

.process-content {
  flex: 1;
}

.process-content h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.process-content p {
  font-size: 16px;
  line-height: 28px;
}

/* 🔹 Responsive cho mobile */
@media (max-width: 768px) {
  #ncdnlds {
    margin-top: 40px;
    margin-left: 15px;
    margin-right: 15px;
  }

  #ncdnlds h2 {
    padding: 0px !important;
  }

  #ncdnlds .line-bottom-centered::after {
    left: 0px;
    bottom: -16px;
    right: auto;
    margin-left: 0px;
    margin-right: 0;
    width: 60px;
  }

  #ncdnlds .blended-img {
    background-image: url('../images/blended_training_2_resize.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 221px;
    margin-left: 0px;
    margin-top: 16px;
  }

  .container-img {
    margin: 36px 0px 20px 0px;
  }

  #ncdnlds .blended-img-1 {
    background-image: url('../images/blended_training_1_resize.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 221px;
  }

  .blended-img-2 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px;
    height: 221px;
  }

  #ncdn {
    padding: 24px 15px;
  }

  .imgRes {
    height: 221px;
    margin: 0px 30px 0px 15px;
  }

  .arrow {
    display: none;
  }

  .gpdt {
    margin: 40px 0px;
  }

  .container {
    padding: 0px 10px;
  }

  .box_gpdt {
    gap: 12px;
  }

  .box_gpdt h4 {
    width: 100%;
    font-size: 14px;
    font-style: normal;
    line-height: 140%;
    padding: 6px 12px;
    margin-bottom: 0px;
  }

  .box_gpdt p {
    padding: 0 20px;
    margin-bottom: 0px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }

  .box_gpdt .cta {
    text-align: center !important;
    align-items: center;
    width: 100%;
  }

  .containergpdt {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
    margin: 0px !important;
  }

  .process-flow {
    position: relative;
    margin: 24px 0;
    padding: 0 10px;
  }

  .process-items-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
    margin: 0px !important;
  }

  .process-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .process-line {
    position: absolute;
    top: 0;
    left: 40px;
    width: 11px;
    height: 100%;
    background: rgba(254, 107, 0, 0.20);
  }

  .process-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    gap: 12px;
    position: relative;
  }

  /* .process-box-lchd {
    width: 30%;
    background-color: #fff;
    box-shadow: 0 4px 18.9px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 32px 0px;
    border-bottom: 6px solid #fe6b00;
  } */

  .process-box-lchd {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    width: 100% !important;
    gap: 12px;
    position: relative;
  }

  .hex-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    margin: 0;
  }

  .hex-inner {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    fill: white;
  }

  .process-box h6 {
    margin-top: 8px;
    font-size: 16px;
  }

  .process-box p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0px;
  }
}

/*--------------------------------- End Section Giải pháp đào tạo -----------------------------*/

/*--------------------------------- Section Lựa chọn hàng đầu -----------------------------*/
#skb {
  background: url(../images/lua_chon_bg_1.jpg) top/cover no-repeat;
  position: relative;
  padding: 90px 0;
}

#skb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

#skb>.section-title,
#skb .row,
#skb p,
#skb .mcj {
  position: relative;
  z-index: 2;
  color: var(--grey-1, #444);
  text-align: justify;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
}

.process-box-lchd {
  width: 30%;
  background-color: #fff;
  box-shadow: 0 4px 18.9px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  text-align: center;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  min-height: 480px;
  padding: 32px 0px;
  border-bottom: 6px solid #fe6b00;
}

.process-box-lchd:hover {
  -webkit-box-shadow: 0px 20px 35px 0px rgba(51, 51, 51, 0.15);
  box-shadow: 0px 20px 35px 0px rgba(51, 51, 51, 0.15);
  transform: translateY(-15px) !important;
  -webkit-transform: translateY(-15px) !important;
  -moz-transform: translateY(-15px) !important;
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
}

.process-box-lchd .hex-icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.process-box-lchd .process-content h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
  left: -10px;
}

.process-box-lchd .process-content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0px;
  padding: 0px 24px;
}

@media (max-width: 768px) {
  #skb {
    padding: 40px 15px;
  }

  #skb .process-items {
    row-gap: 20px;
    margin: 24px 0px 0px 0px !important;
  }
}

/*--------------------------------- End Section Lựa chọn hàng đầu -----------------------------*/

/*----------------------------------Section Testomonial -----------------------------*/
#skb2 {
  background: #F6F6F6;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (max-width: 768px) {
  #skb .col-md-12 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  #skb .row>* {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  #skb2 {
    padding: 24px 15px 40px 15px;
  }

  #skb2 .line-bottom-centered::after {
    left: -15px;
  }

  .box_ds {
    padding: 40px 15px !important;
  }

  .box_ds .box_teeds {
    border: 2px solid #fff;
    padding: 40px 32px;
  }

  .mcnha {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    /* line-height: 30px; */
  }
}

/*--------------------------------- End Section Testomonial -----------------------------*/

/*--------------------------------- Section Faq -----------------------------*/
#faq {
  padding: 90px 0;
}

@media (max-width: 768px) {
  #faq {
    padding: 40px 15px;
  }

  #faq .line-bottom-centered::after {
    left: -15px;
  }

  #accordionExample {
    margin-top: 24px !important;
  }

  #accordionExample .accordion-button {
    padding: 20px !important;
    line-height: 24px !important;
  }

  #faq h2 {
    padding: 0px !important;
  }

  #faq .add {
    padding-bottom: 16px !important;
  }

  .accordion-item {
    margin-bottom: 12px !important;
  }
}

/*-------------------------------- - End Section Faq -----------------------------*/

/*--------------------------------- Section Lien he -----------------------------*/
#lienhe {
  padding: 90px 15px;
}

#lienhe .line-bottom-centered::after {
  left: -15px;
}

#lienhe .card-body {
  padding: 10px 16px 10px 20px;
  align-items: center;
}

#lienhe .card-title {
  font-size: 16px;
  line-height: 28px;
}

#lienhe .card-text {
  font-size: 16px;
  line-height: 28px;
}

.formlienhe {
  background-color: #f4f6f8 !important;
  padding-top: 20px !important;
  min-height: 500px;
  max-height: 540px;
}

/* .inputItem {
  margin: 0px 20px 0px 20px !important;
  width: calc(100% - 40px) !important;
} */

.contact-form-row {
  margin: 10px !important;
}

@media (max-width: 768px) {
  .rounded {
    margin-top: 20px !important;
  }

  .formlienhe {
    margin-top: 20px !important;
    padding-top: 20px !important;
    background-color: #f4f6f8 !important;
  }

  /* .w-100 {
    width: calc(100% - 40px) !important;
  } */
}

/*--------------------------------- End Section Lien he -----------------------------*/

.boxma_tt h2 span {
  color: #fe6b00;
}

.boxxmj ul li {
  list-style: none;
}

.boxxmj ul {
  margin: 0 !important;
  padding: 0;
}

.boxxmj ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: row;
}

.boxxmj li {
  flex-basis: 25%;
  max-width: 25%;
}

.rownch .icon-box {
  text-align: center;
  border: 1px solid #fe6b00;
  border-radius: 15px;
  padding: 15px 8px;
  cursor: pointer;
}

.rownch .icon-box a {
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
}

.rownch .icon-box:hover a {
  color: #fff;
}

.rownch .icon-box:hover {
  background-color: #fe6b00;
  border: unset;
}

.boxma_tt {
  margin-bottom: 55px;
}

.box_teeds {
  border: 5px solid #fff;
  padding: 35px;
}

.mcnha {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.nnjah {
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin-top: 25px;
}

#skb .contact p {
  color: #fff;
}

#skb .contact {
  background-color: #E97131;
  padding: 10px 30px;
  border-radius: 10px;
  font-size: 30px;
  font-weight: 600;
}

.ytns a {
  color: #fe6b00;
}

.img img {
  width: 100%;
}

.fke_anh {
  margin-top: 50px;
}

.bcns img {
  width: 100%;
  cursor: pointer;
}

.bcns {
  margin-top: 50px;
}

#accordionExample {
  margin-top: 50px;
}

.bottoom_hotline {
  position: fixed;
  z-index: 40;
  right: 13px;
  bottom: 80px;
  padding: 10px 20px;
  background: #fe6b00;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 700;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

#accordionExample .accordion-button {
  color: #000;
  font-weight: bold;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
  box-shadow: unset;
}

#accordionExample .accordion-button {
  color: #000;
  font-weight: bold;
  border-left: 4px solid #fe6b00;
  padding: 30px;
}

.cmna h3 {
  position: relative;
}

.cmna h3::after {
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100px;
  background: #fe6b00 !important;
}

.ytns img {
  width: 65px;
  cursor: pointer;
}

.mcj {
  position: relative;
}

.ytns {
  position: absolute;
  top: 0;
  z-index: 999;
}

.ytns {
  position: absolute;
  top: 32%;
  z-index: 999;
  left: 44%;
}

/**/
.row_listd {
  position: relative;
}

.image-section img {
  width: 100%;
}

.numbered-list {
  font-size: 16px;
  color: #000;
}

.numbered-list span {
  font-size: 38px;
  font-weight: bold;
  text-shadow: -1px -1px 0 #f07609, 1px -1px 0 #f07609, -1px 1px 0 #f07609, 1px 1px 0 #f07609;
  color: #f07609;
  width: 55px;
  display: inline-block;
}

.list1 {
  position: absolute;
  left: 10%;
  top: 0;
}

.list2 {
  position: absolute;
  left: 21%;
  top: 21%;
}

.list3 {
  position: absolute;
  top: 54%;
  left: 31%;
}

.list4 {
  position: absolute;
  bottom: 0;
  left: 38%;
}

.box_ds {
  padding: 50px 0;
  background:
    linear-gradient(rgba(254, 107, 0, 0.6), rgba(254, 107, 0, 0.6)),
    url(../images/bg_qoute.jpg) 50% / cover no-repeat;
  /* background: #FE6B00; */
}

.box_imns img {
  width: 100%;
}

.mna .tt_gt {
  margin-bottom: 50px;
}

.mdskd {
  display: flex;
  gap: 20px;
}

.mdskd h4 {
  width: 60px;
}

.mdskd>div {
  width: 380px;
}

.mdskd h4,
.mdskd h5 {
  font-weight: bold;
}

.mdskd p {
  text-align: justify;
}

.clks {
  align-items: center;
}

.mnxd {
  position: relative;
  font-size: 17px;
}

.vls {
  padding-right: 0;
}

.vls2 {
  padding-left: 0;
}

.mnxd p:after {
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100px;
  background: #fe6b00;
}

.rowcnsd .col_cust .data_ncha:hover {
  -webkit-box-shadow: 0px 20px 35px 0px rgba(51, 51, 51, 0.15);
  box-shadow: 0px 20px 35px 0px rgba(51, 51, 51, 0.15);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

.box_icons .ings_text {
  position: relative;
  height: 100px;
}

.box_icons .ings_text span {
  text-align: center;
  font-weight: 800;
}

.box_icons .ings_text span.percent {
  position: absolute;
  font-size: 40px;
  top: 17px;
  left: 210px;
}

.box_icons .ings_text span.percent.left-225 {
  left: 238px
}

.tt-gthieu {
  position: relative;
}


.about .content h3 {
  padding-top: 105px;
}

.ytns {
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 2px;
}

.msd h5 {
  font-weight: bold;
}

.rowcnsd .col_cust {
  padding-bottom: 0;
}

.accordion-button:focus {
  box-shadow: none;
}

#accordionExample .accordion-button {
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  border-radius: 5px;
}

.accordion-item {
  border: unset;
}

.accordion-body {
  border: 1px solid #ddd;
  margin-top: 5px;
  border-radius: 5px;
}

.bcns img {
  border-radius: 10px;
}

/* css fix 18*03 */
.hd_tops {
  background-color: #fe6b00;
}

.hd_tops {
  padding: 10px 0;
  font-size: 14px;
}

.widder ul li {
  display: inline-block;
}

.widder ul {
  margin-bottom: 0;
}

.widder ul li {
  padding-right: 5px;
  padding-left: 5px;
}

.folws ul li {
  list-style: none;
}

.folws ul {
  margin: 0 !important;
  padding: 0;
}

.folws ul li {
  display: inline;
  padding: 0 5px;
}

.folws {
  text-align: right;
}

.folws ul li i {
  color: #fff;
  font-size: 14px;
}

.box_contatcs {
  display: flex;
  justify-content: flex-end;
}

.list-inline {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  align-items: center;
}

.list-inline i {
  font-size: 2.57142857rem !important;
  color: #202C45 !important;
}

.list-inline {
  margin-bottom: 0;
}

.box_contatcs {
  gap: 20px;
}

html,
html a {
  -webkit-font-smoothing: antialiased;
}

.list-inline li h5 {
  font-size: 13px;
}

.header_bot {
  border-bottom: 4px solid #fe6b00 !important;
  background-color: #1d2945;
}

.text_banner ol li a {
  color: #fff;
  font-size: 14px;
}

.text_banner ol li a i {
  font-size: 8px;
  margin-right: 5px;
  margin-left: 5px;
}

.text_banner ol {
  margin-top: 20px;
}


.btn-contact {
  width: 100%;
  background-color: #fe6b00;
  color: #fff;
}

.img_content {
  margin-top: 20px;
  opacity: 0;
}

.img_box:hover .img_content {
  bottom: 15%;
  padding: 10px 30px;
  opacity: 1;
  color: #fff;
  font-weight: 500;
}

.img_content h5 {
  color: #fff;
}

.card {
  border: none;
}

@media (max-width: 767px) {
  .carousel-inner .carousel-item>div {
    display: none;
  }

  .carousel-inner .carousel-item>div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

  .carousel-inner .carousel-item-end.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }

  .carousel-inner .carousel-item-start.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
  transform: translateX(0);
}




.boxpmas {
  padding: 15px;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.boxpmas h4,
.boxpmas .h4 {
  font-size: 45px;
  font-weight: bold;
  text-shadow: -1px -1px 0 #f07609, 1px -1px 0 #f07609, -1px 1px 0 #f07609, 1px 1px 0 #f07609;
  color: #f07609;
}

.boxpmas h5,
.boxpmas .h5 {
  font-size: 25px;
  font-weight: bold;
  text-shadow: -1px -1px 0 #f07609, 1px -1px 0 #f07609, -1px 1px 0 #f07609, 1px 1px 0 #f07609;
  color: #f07609;
}

.boxpmas h6,
.boxpmas .h6 {
  font-size: 17px;
  font-weight: bold;
}

.boxpmas_v2 {
  height: 215px;
}

.boxpmas_v2:hover {
  color: #fff;
  background-color: #1d2945
}

.boxpmas_v2:hover p,
.boxpmas_v2:hover h5,
.boxpmas_v2:hover h6 {
  color: #fff;
}


.img_box figure {
  background: #1d2945;
}

.img_box figure img {
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.img_box figure:hover img {
  opacity: .5;
}

#lienhe .icon {
  position: relative;
}

#lienhe .icon img {
  position: absolute;
  top: 14%;
  max-width: 50px;
}

#lienhe .content p.fs-6 {
  font-size: 0.9rem !important;
}

.width-220 {
  width: 220px;
}

.bg-light {
  background-color: #f4f6f8 !important;
}

.text-orange {
  color: #1d2945;
}

.btn-orange {
  background-color: #fe6b00;
  color: #fff;
}

.btn-orange:hover {
  background-color: #fff;
  color: #fe6b00;
}

.font-13 {
  font-size: 13px;
}

.line-42 {
  line-height: 42px;
}

.homeSlogan {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-top: 12px !important;
  margin-bottom: 42px;
  font-size: 25px;
  font-style: normal;
  line-height: 145%;
  text-align: justify;
}

.text-dark-blue {
  color: #1d2945 !important;
}

.item_block .item_box {
  position: relative;
  display: table;
  height: 125px;
  width: 100%;
  background-color: #ffffff;
  padding: 20px 44px;
  border-right: 6px solid #fe6b00;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  box-shadow: 2px 4px 20px 0 rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .homeSlogan {
    margin-top: 8px !important;
  }

  .item_block .item_box {
    height: auto;
    padding: 16px 20px;
  }
}


.item_block .item_box:hover {
  background-color: #1d2945;
  -webkit-box-shadow: 0px 10px 35px 4px rgba(51, 51, 51, 0.15);
  box-shadow: 0px 10px 35px 4px rgba(51, 51, 51, 0.15);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

.item_block .item_box:hover h4,
.item_block .item_box:hover p {
  color: #ffffff;
}

.item_block .item_box .icon-develop {
  position: absolute;
  left: -40px;
  top: 23px;
  width: 80px;
  height: 80px;
}

.item_block .item_box .icon-develop1 {
  position: absolute;
  left: -30px;
  top: 23px;
  width: 80px;
  height: 80px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.item_block .item_box .icon-development {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #fe6b00;
}

.value-section__list {
  list-style: none;
  padding: 12px 0 0 0;
  margin: 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.value-item__icon {
  width: 27px;
  height: 27px;
  padding: 2.077px;
  align-items: center;
  gap: 3.462px;
  aspect-ratio: 1/1;
  border-radius: 3461.192px;
  border: 0.692px solid #FE6B00;
  background: var(--Accent, #FF6B00);
  box-shadow: 0 0 0.692px 0 rgba(0, 0, 0, 0.25);
}

.value-item__text {
  margin: 0;
  line-height: 1.5;
  color: var(--grey-1, #444);
}

.item_block .item_box .icon-development span {
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: center;
  font-size: 64px;
  color: #fe6b00;
  font-weight: 800;
}

.item_block .item_box .icon-development span.percent {
  font-size: 30px;
  top: 14px;
  left: 85px;
}

.right-box,
#right-box.ncdn {
  display: table-cell;
  vertical-align: middle;
}

.item_block .item_box .icon-development.w-200 {
  width: 200px;
}

.item_block .item_box.pl-150 {
  padding-left: 150px;
}

.item_block .item_box.pl-200 {
  padding-left: 200px;
}

.line-bottom {
  position: relative;
  margin-bottom: .5rem;
}

.line-bottom:after {
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 50px;
  background: #fe6b00 !important;
}

.ml-90 {
  margin-left: 81px;
}

.font-11 {
  font-size: 11px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-14 {
  font-size: 14px
}

.fs-16 {
  font-size: 16px
}

.fs-27 {
  font-size: 27px
}

.fs-22 {
  font-size: 22px
}

.fs-25 {
  font-size: 24px
}

.fs-85 {
  font-size: 85px
}

.pl-80 {
  padding-left: 70px !important
}

.ml-80 {
  margin-left: 70px !important
}

.text-justify {
  text-align: justify;
}

.mt-32 {
  margin-top: 32px
}

.mt-64 {
  margin-top: 64px
}

.mt-45 {
  margin-top: 45px
}

.mt-18 {
  margin-top: 18px
}

.text-yellow {
  color: #737373
}

.item_block .item_box .icon-development span.percent.left-105 {
  left: 110px
}

.item_block .item_box .icon-development span.percent.left-45 {
  left: 45px
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.header_bot.fixed {
  -webkit-transition: opacity 2s ease;
  -moz-transition: opacity 2s ease;
  -ms-transition: opacity 2s ease;
  -o-transition: opacity 2s ease;
  transition: opacity 2s ease;
  z-index: 1000;
  position: fixed;
  top: 0px;
  margin-left: 0px;
  width: 100%;
  left: 0px;
}

.ml-120 {
  margin-left: 120px
}

.ml-42 {
  margin-left: 42px
}

.mr-120 {
  margin-right: 120px
}

.mr-42 {
  margin-right: 42px
}

.text-black {
  color: #000000 !important;
}

h3 a,
h4 a,
h5 a,
h6 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: #1d2945;
}

.lienhe-icon {
  width: 78px;
  height: 78px;
  float: left;
}

.lienhe-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: 10px;
}

.pr-20 {
  padding-right: 45px
}

.item-blocks {
  display: grid;
  grid-row-gap: 24px;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.contact-form label {
  display: none;
}

.contact-form .g-recaptcha {
  width: 100%;
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
  margin: 0px 20px;
}

.contact-form .contact-button {
  width: 100%;
  background-color: #fe6b00 !important;
  color: #fff;
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
}

.float-right {
  float: right !important;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
  .float-right {
    float: none !important
  }

  .pl-80 {
    padding-left: 15px !important;
    padding-right: 15px;
  }

  /* .pl-80 {
    padding-left: 0px !important;
  } */

  #ncdn .pl-80 {
    padding-left: 15px !important;
  }

  .item-blocks1 {
    text-align: center;
    margin-left: 30px;
  }

  .ml-120 {
    margin-left: 15px;
    padding-right: 15px;
  }

  /* .item-blocks.pl-80 {
    padding-right: 20px;
  } */

  .mt-0 {
    margin-top: 15px !important;
  }

  .mb-15 {
    margin-bottom: 0px !important;
  }

  .homeSlogan {
    margin-bottom: 0px;
    margin-top: 8px !important;
    font-size: 16px;
  }

  .pl-80.mt-32 {
    padding-right: 20px;
  }

  .box_icons {
    margin-top: 20px;
    align-items: center;
    background: #FFF;
    box-shadow: 0 4px 18.9px 0 rgba(0, 0, 0, 0.25);
  }

  .pading-1 {
    padding: 20px;
  }

  .item_block .item_box .icon-develop1 {
    left: 40%;
    top: 15px;
  }

  .right-box {
    padding-top: 90px;
  }

  .fs-27 {
    font-size: 19px;
  }

  .box_icons:hover {
    -webkit-box-shadow: 0;
    box-shadow: 0;
    transform: 0;
    -webkit-transform: 0;
    -moz-transform: 0;
    -ms-transform: 0;
    -o-transform: 0;
  }

  .mt-ddi {
    margin-top: 30px;
  }

  .font-50 {
    font-size: 25px;
  }

  /* .item_block .item_box .icon-develop {
    left: 0px;
  } */

  .item_block .item_box #right-box.ncdn {
    margin-left: 45px;
    display: inline-block;
  }

  .item_block .item_box .icon-develop {
    position: absolute;
    left: -40px;
    top: 12px;
    width: 80px;
    height: 80px;
  }

  .item-blocks1 {
    text-align: center;
    /* margin-left: ; */
  }

  .box_icons .ings_text span.percent.left-225 {
    left: 244px
  }

  h2 {
    font-size: 24px;
  }
}

.categories__item {
  height: 140px;
  position: relative;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.categories__slider .col-lg-3 {
  max-width: 100%;
  width: 100%;
}

.categories__slider.owl-carousel .owl-nav button {
  font-size: 18px;
  color: #1c1c1c;
  height: 70px;
  width: 30px;
  line-height: 70px;
  text-align: center;
  border: 1px solid #ebebeb;
  position: absolute;
  left: -35px;
  top: 50%;
  -webkit-transform: translateY(-35px);
  background: #ffffff;
}

.swiper {
  width: 100%;
  padding: 30px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-right: 4px solid #fe6b00;
  padding: 24px;
  width: auto;
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.name {
  font-weight: 700;
  margin: 0;
}

.stars {
  color: #f8b400;
  font-size: 14px;
  line-height: 1;
}

.course {
  color: #fe6b00;
  font-size: 14px;
  margin: 0;
}

.content {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 90px;
}

/* nút xem thêm */
.read-more {
  background: none;
  border: none;
  padding: 0;
  color: black;
  cursor: pointer;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.read-more-wrap {
  display: flex;
  justify-content: flex-end;
}

/* Ẩn nút next/prev */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

/* spacing giữa các slide */
.swiper-wrapper {
  gap: 40px;
}

/* popup */
.popup {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 24px;
  width: 1190px;
  /* border-radius: 12px; */
  max-height: 80vh;
  overflow-y: auto;
  border-right: 4px solid var(--Accent, #FF6B00);
  background: #FFF;
}

.popup-close {
  /* float: right; */
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  /* display: none; */
  border-radius: 0px;
  width: 100%;
  align-items: center;
  border: 2px solid var(--grey-0, #808080);
}

.popup-content .content {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/* responsive */
@media (max-width: 992px) {
  .testimonial-card {
    max-width: calc(100% - 30px);
  }

  .swiper {
    margin-top: 20px;
  }

  .swiper-wrapper {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .swiper-wrapper {
    gap: 30px;
  }
}

/* ============== POPUP OVERLAY ============== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  /* mặc định ẩn */
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}

/* ============== POPUP BOX WRAPPER ============== */
.modal-box {
  background: #fff;
  width: 100%;
  max-width: 1180px;
  /* border-radius: 10px; */
  position: relative;
  padding: 25px;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
}

/* Nút đóng */
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FFCDCD;
  border: 1px solid #ddd;
  color: black;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

/* ============== GRID 2 CỘT ============== */
.popup-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  grid-gap: 30px;
}

/* ============== LEFT COLUMN ============== */
.popup-left {
  text-align: center;
}

.popup-thumb {
  width: 100%;
}

.popup-mobile-header {
  display: none;
}

.popup-title {
  margin-top: 12px;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  color: #f36100;
}

.popup-subtitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.popup-btn {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  padding: 0px 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
}

.popup-text {
  margin-top: 12px;
  color: #444;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}

/* ============== RIGHT COLUMN ============== */
.popup-block {
  margin-bottom: 20px;
}

/* Icon + title */
.popup-block-title {
  display: flex;
  /* align-items: center; */
  /* padding: 10px 12px; */
  /* border-left: 4px solid #00a3ff; */
  border-radius: 6px;
  margin-bottom: 12px;
  /* padding: 3px 10px 3px 24px; */
  /* justify-content: center; */
  align-items: center;
}

.popup-block-title img {
  width: 38px;
  height: 38px;
  z-index: 2;
}

.popup-block-title .img2 {
  width: 38px;
  height: 38px;
  z-index: 2;
}

.popup-block-title span {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-left: -24px;
  padding: 3px 10px 3px 32px;
  gap: 10px;
  color: #fff;
  background: var(--Sub-dominant, #1E2945);
  z-index: 1;
}

.popup-list {
  padding-left: 22px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.popup-list li {
  position: relative;
  padding-left: 28px;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
  line-height: 1.55;
  color: #333;
}

.popup-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url('../images/icons/chevron-right.svg') no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 6px;
}

.popup-list-numbered {
  padding-left: 22px;
}

.popup-list-numbered li {
  margin-bottom: 8px;
  line-height: 1.55;
  color: #333;
}

/* ============== MOBILE RESPONSIVE ============== */
@media (max-width: 768px) {
  .modal-box {
    padding: 0px 0px;
  }

  /* Ẩn cột trái */
  .popup-left {
    display: none;
  }

  .popup-right {
    padding: 0px 15px;
  }

  /* Hiện mobile header */
  .popup-mobile-header {
    display: block;
    width: 100%;
    background: #EF5A2F;
    color: white;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
  }

  .popup-block-title img {
    width: 41px;
    height: 41px;
    z-index: 2;
  }

  .popup-block-title .img2 {
    width: 35px;
    height: 49px;
    z-index: 2;
  }

  .popup-block-title .span2 {
    width: 250px;
  }

  .popup-block-title span {
    margin-top: 8px;
  }

  .popup-mobile-header .popup-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    /* bạn chỉnh nếu muốn */
  }

  .popup-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .popup-left {
    text-align: center;
  }

  .popup-text {
    text-align: center;
    /* đẹp hơn trên mobile */
  }

  /* .popup-block-title {
    text-align: center;
  } */

  .modal-close {
    top: 63px;
    right: 21px;
  }

  /* Space under top bar */
  .popup-box {
    padding-top: 75px !important;
  }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .popup-title {
    font-size: 22px;
  }

  .popup-subtitle {
    font-size: 14px;
  }
}

/*--------------------------------- End Animation -----------------------------*/
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  background: #fff;
  /* border: 1px solid #ddd; */
  /* padding: 10px; */
  cursor: pointer;
  position: relative;
}

/* .custom-select-trigger {
  padding: 0px 10px;
} */

.custom-options {
  display: none;
  border: 1px solid #ddd;
  background: #fff;
  position: absolute;
  width: 100%;
  z-index: 9999;
}

.custom-select.active .custom-options {
  display: block;
}

.option-group {
  padding: 5px 15px;

  font-weight: bold;
}

.option {
  padding: 5px 15px;
  cursor: pointer;
}

.option:hover {
  background: #e6e6e6;
}

.option-sub {
  padding-left: 25px;
  font-size: 14px;
  background: #f2f2f2;
}

.arrow {
  font-size: 18px;
  pointer-events: none;
}

.dropdown-icon {
  /* width: 20px;
    height: 20px;
    color: #333;
    transition: transform 0.25s ease; */
  width: 16px;
  position: absolute;
  right: 12px;
  /* 👈 đẩy icon sát mép phải */
  top: 20%;
  transition: transform 0.25s ease;
  pointer-events: none;
}

.custom-options .option {
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  transition: 0.25s ease;
}

/* Icon ↳ */
.custom-options .option-sub .icon-sub {
  flex-shrink: 0;
  color: #555;
  margin-top: 3px;
}

/* Text */
.custom-options .option-sub .text {
  display: inline-block;
  transition: transform 0.25s ease;
}

/* Hover: chữ trượt nhẹ sang phải */
.custom-options .option-sub:hover .text {
  transform: translateX(6px);
}

/* Khi chọn option => ta sẽ thêm class .selected bằng JS */
.custom-options .option.selected {
  background: #f5f5f5;
}

/* Khi mở dropdown – xoay icon ↓ */
.custom-select.active .dropdown-icon {
  transform: rotate(180deg);
}

/*-------------------------------- End Animation -----------------------------*/
.input.error,
.form-control.error,
.was-validated .form-control:invalid {
    border-color: var(--bs-form-invalid-border-color, #dc3545);
    padding-right: 2.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
}

label.error {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: var(--bs-form-invalid-color);
}