@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&amp;family=Pinyon+Script&amp;display=swap');

body {
	font-family:"Outfit", sans-serif;
}

.form-row label, .form-group label {
    color: #ffffff;
}

/* ==================== Start - DFA/Home/hero-section ====================*/

.hmpg-hero-section {
  position: relative;
  height: 939px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hmpg-hero-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hmpg-hero-section .fr-image-span {
  position: relative;
  display: block;
}


.hmpg-hero-section .hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.hmpg-hero-section .hero-text {
  /* max-width: 665px; */
  padding: 0;
  padding-right: 24px;
}

.hmpg-hero-section .hero-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 90px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  margin-bottom: 24px;
}

.hmpg-hero-section .hero-description {
  font-size: 16px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 0px;
}

.hmpg-hero-section .hero-visual {
  position: relative;
  /* max-width: 638px; */
  height: auto;
  padding: 0;
}

.hmpg-hero-section .hero-main-image {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(242, 138, 34, 1);
}

.hmpg-hero-section .hero-side-images {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 15px 15px 0;
}

.hmpg-hero-section .hero-side-images video {
  width: 100%;
  height: 20%;
  max-width: 139px;
  max-height: 139px;
  object-fit: contain;
}

.hmpg-hero-section .hero-side-images video:first-child {
  border-radius: 0px 15px 0px 0px;
}

.hmpg-hero-section .hero-side-images video:last-child {
  border-radius: 0px 0px 15px 0px;
}

.hmpg-hero-section .service-cards {
  display: flex;
  flex-wrap: wrap;
  /* Allow cards to wrap to next line */
  gap: 24px;
  margin-top: 24px;
  justify-content: center;
}

.hmpg-hero-section .service-card {
  background-color: #f28a22;
  border-radius: 30px;
  max-width: 424px;
  height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 30%;
  min-width: 250px;
  max-width: 424px;
}

.hmpg-hero-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(242, 138, 34, 0.3);
}

.hmpg-hero-section .service-icon {
  width: 96px;
  height: 96px;
  background-color: transparent;
  border: 5px solid #ffffff;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.hmpg-hero-section .service-icon img {
  width: 50px;
  height: 50px;
}

.hmpg-hero-section .service-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  color: #ffffff;
}

@media (max-width: 991px) {
  .hmpg-hero-section .hero-text,
  .hmpg-hero-section .hero-visual {
    max-width: 100%;
  }

  .hmpg-hero-section {
    height: auto;
  }

  .hmpg-hero-section .hero-visual {
    height: auto;
  }

  .hmpg-hero-section .hero-side-images {
    /* right: 0; */
  }

  .hmpg-hero-section .hero-title {
    font-size: 40px;
    line-height: 60px;
  }

  .hmpg-hero-section .hero-content {
    padding: 30px 16px !important;
  }

  .hmpg-hero-section .hero-content .hero-top {
    gap: 24px;
  }

  .hmpg-hero-section .hero-text {
    padding: 0;
    padding-right: unset;
  }

  .hmpg-hero-section .service-title {
    text-align: left;
    margin-bottom: 0;
    font-family: "Outfit", sans-serif;
  }

  .hmpg-hero-section .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .hmpg-hero-section .service-card {
    flex-direction: row;
    max-width: 100%;
    padding: 16px;
    justify-content: start;
    gap: 10px;
    align-items: center;
  }

  .hmpg-hero-section .service-icon {
    width: 76px;
    height: 76px;
    min-width: 76px;
    min-height: 76px;
    margin-bottom: 0;
  }

  .hmpg-hero-section .service-icon img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 767px) {
  .hmpg-hero-section {
    height: auto;
  }

  .hmpg-hero-section .hero-title {
    font-size: 40px;
    line-height: 60px;
  }

  .hmpg-hero-section .hero-content {
    padding: 30px 16px !important;
  }

  .hmpg-hero-section .hero-content .hero-top {
    gap: 24px;
  }

  .hmpg-hero-section .hero-text {
    padding: 0;
    padding-right: unset;
  }

  .hmpg-hero-section .service-title {
    text-align: left;
    margin-bottom: 0;
    font-family: "Outfit", sans-serif;
  }

  .hmpg-hero-section .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .hmpg-hero-section .service-card {
    flex-direction: row;
    max-width: 100%;
    padding: 16px;
    justify-content: start;
    gap: 10px;
    align-items: center;
  }

  .hmpg-hero-section .service-icon {
    width: 76px;
    height: 76px;
    min-width: 76px;
    min-height: 76px;
    margin-bottom: 0;
  }

  .hmpg-hero-section .service-icon img {
    width: 38px;
    height: 38px;
  }
}
  @media (min-width: 1400px) {
        .hmpg-hero-section .container {
          max-width: 1320px !important;
        }
      }

/* ==================== End - DFA/Home/hero-section ====================*/

/* ==================== Start - DFA/Home/1st-Revolutionizing ====================*/
.hmpg-innovations-section {
  background-image: url("/files/media/Mediaeb145ad93f0ae5d96edc34b2f11d2db8.jpg");
  background-size: cover;
  background-position: center;
  border-top: 10px solid #f28a22;
  border-bottom: 10px solid #f28a22;
  display: flex;
  justify-content: center;
  font-family: "Outfit", sans-serif;
}

.hmpg-innovations-section .innovations-content {
  padding: 60px 0;
  margin: 0 auto;
}

.hmpg-innovations-section .section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  margin-bottom: 16px;
}

.hmpg-innovations-section .section-subtitle {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #f28a22;
  margin-bottom: 60px;
}

.hmpg-innovations-section .innovations-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.hmpg-innovations-section .innovations-image {
  max-width: 297px;
  max-height: 444px;
  width: 100%;
  object-fit: cover;
}

.hmpg-innovations-section .innovations-list {
  flex: 1;
}

/* .hmpg-innovations-section .innovations-list .innovations-list-content {
  gap: 16px;
} */

.hmpg-innovations-section .innovations-list .innovations-para-right {
  padding: 0;
}

.hmpg-innovations-section .innovations-list .innovations-para-left {
  padding: 0;
}

.hmpg-innovations-section .innovation-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.hmpg-innovations-section .innovation-number {
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  width: auto;
  /* margin-right: 16px; */
}

.hmpg-innovations-section .innovation-bar {
  background-color: #f28a22;
  color: #ffffff;
  padding: 16px 12px;
  border-radius: 50px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  flex: 1;
  text-align: left;
}

.hmpg-innovations-section .innovation-bar strong {
  color: #000;
  font-weight: 700;
}

.hmpg-innovations-section .innovations-bottom {
  display: flex;
  gap: 24px;
  margin-top: 60px;
}

.hmpg-innovations-section .pioneering-solutions {
  flex: 1;
  margin-top: 0;
  text-align: left;
}

.hmpg-innovations-section .pioneering-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 16px;
}

.hmpg-innovations-section .pioneering-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.hmpg-innovations-section .pioneering-text .highlight {
  font-weight: 700;
  color: #f28a22;
}

.hmpg-innovations-section .publications {
  max-width: 487px;
  width: 100%;
  margin-top: 0;
  text-align: left;
}

.hmpg-innovations-section .publications-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 16px;
}

.hmpg-innovations-section .publications-grid {
  display: flex;
  gap: 16px;
}

.hmpg-innovations-section .publication-item {
  max-width: 95px;
  max-height: 129px;
  object-fit: cover;
}

.hmpg-innovations-section .pioneering-text li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.hmpg-innovations-section .pioneering-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .hmpg-innovations-section .innovations-content {
    max-width: 100%;
    padding: 60px 0px;
  }

  .hmpg-innovations-section .innovations-grid {
    gap: 24px;
  }

  .hmpg-innovations-section .innovations-bottom {
    gap: 24px;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .hmpg-innovations-section .innovations-grid {
    flex-direction: column;
    align-items: center !important;
  }

  .hmpg-innovations-section .innovations-grid .innovations-image-wrapper {
    margin: 0 auto;
  }

  .hmpg-innovations-section .innovations-image {
    max-width: 220px;
    max-height: 330px;
  }

  .hmpg-innovations-section .innovations-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .hmpg-innovations-section .publications {
    width: 100%;
  }

  .hmpg-innovations-section .publications-grid {
    justify-content: left;
  }
}

@media (max-width: 767px) {
  .hmpg-innovations-section .section-title,
  .hmpg-innovations-section .section-subtitle {
    font-size: 24px;
    line-height: 1.5;
  }

  .hmpg-innovations-section .innovations-image {
    max-width: 180px;
    max-height: 268px;
  }

  .hmpg-innovations-section .innovation-bar {
    font-size: 14px;
    padding: 12px 16px;
  }

  .hmpg-innovations-section .publications-grid {
    gap: 16px;
  }

  .hmpg-innovations-section .publication-item {
    max-width: 77px;
    max-height: 113px;
  }

  .hmpg-innovations-section .innovations-bottom {
    margin-top: 24px;
  }
}

@media (min-width: 1400px) {
  .hmpg-innovations-section .container {
    max-width: 1320px;
  }
}


/* ==================== End - DFA/Home/1st-Revolutionizing ====================*/

/* ==================== Start - DFA/Home/software solutions ====================*/
.hmpg-software-section {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Outfit", sans-serif;
}

.software-section-parent {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.software-section-parent .bg-image,
.container .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.software-section-parent .fr-image-span,
.container .fr-image-span {
  position: relative;
  display: block;
}



.software-section-parent .software-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.software-section-parent .software-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}

.software-section-parent .software-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1320px;
  padding: 0 30px;
  margin: 0 auto;
}

.software-section-parent .software-card {
  background-color: transparent;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.software-section-parent .software-card:hover {
  transform: translateY(-5px);
}

.software-section-parent .software-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  border: 1px solid rgba(242, 138, 34, 1);
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}

.software-section-parent .software-card-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f28a22;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  height: 52px;
  padding: 0;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.software-section-parent .software-card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .software-section-parent .software-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .software-section-parent .software-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hmpg-software-section {
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .software-section-parent {
    padding: 30px 0;
  }

  .software-section-parent .software-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .software-section-parent .software-card {
    max-width: 312px;
    margin: 0 auto;
  }

  .software-section-parent .software-title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .hmpg-software-section {
    height: auto;
  }

  .hmpg-software-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1400px) {
  .hmpg-software-section .container {
    max-width: 1320px;
  }
}



/* ==================== End - DFA/Home/software solutions ====================*/

/* ==================== Start - DFA/Home/success-stories ====================*/

.hmpg-success-bg {
  background-color: #091e39;
  padding: 60px 0;
}

.success-section-parent .success-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  font-family: "Outfit", sans-serif;
}

.success-section-parent .success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1044px;
  padding: 0 30px;
  margin: 0 auto;
}

.success-section-parent .success-card {
  text-align: center;
  max-width: 312px;
  margin: 0 auto;
}

.success-section-parent .success-icon {
  width: 122px;
  height: 122px;
  background-color: #f28a22;
  border-radius: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-section-parent .success-icon img {
  max-width: 85px;
  max-height: 85px;
}

.success-section-parent .success-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
  font-family: "Outfit", sans-serif;
}

.success-section-parent .success-description .highlight {
  font-weight: 700;
  color: #f28a22;
}

@media (max-width: 991px) {
  .success-section-parent .success-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .hmpg-success-bg {
    padding: 30px 0;
  }

  .success-section-parent .success-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .success-section-parent .success-title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .success-section-parent .success-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    min-height: 78px;
    margin: 0 8px 0 0;
  }

  .success-section-parent .success-icon img {
    max-width: 48px;
    max-height: 48px;
  }

  .success-section-parent .success-card {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
  }

  .hmpg-success-bg .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .success-section-parent .success-description {
    text-align: left;
  }
}


/* ==================== End - DFA/Home/success-stories ====================*/


/* ==================== Start - DFA/Home/WHAT-sets-Apart ====================*/

.dfa-apart-section {
  background-color: #ffffff;
  padding: 60px 0;
}
.dfa-apart-section .dfa-apart-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #091e39;
  margin-bottom: 60px;
  text-align: center;
  font-family: "Outfit", sans-serif;
}
.dfa-apart-section .dfa-apart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto;
}
.dfa-apart-section .dfa-apart-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.dfa-apart-section .dfa-apart-icon {
  width: 85px;
  height: 85px;
  background-color: #d9d9d9;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dfa-apart-section .dfa-apart-icon img {
  width: 50px;
  height: 50px;
}
.dfa-apart-section .dfa-apart-content h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #f28a22;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
}
.dfa-apart-section .dfa-apart-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #091e39;
  font-family: "Outfit", sans-serif;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .dfa-apart-section .dfa-apart-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .dfa-apart-section {
    padding: 30px 0;
  }
  .dfa-apart-section .dfa-apart-title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .dfa-apart-section .dfa-apart-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
  .dfa-apart-section .dfa-apart-item {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .dfa-apart-section .dfa-apart-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    min-height: 78px;
  }
  /* .dfa-apart-section .dfa-apart-icon img {
                width: 32px;
                height: 32px;
            } */
  .dfa-apart-section .dfa-apart-content h3 {
    font-size: 15px;
    line-height: 1.5;
  }
  .dfa-apart-section .dfa-apart-content p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
  }
}

/* ==================== End - DFA/Home/WHAT-sets-Apart ====================*/

/* ==================== Start - DFA/Home/DFA-Technology ====================*/

.staticBlockHmPgTechnology {
  background-color: #e7e7e7;
  padding: 60px 0px;
}
.hmpg-dfatechnology-section .technology-title {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 41px;
  text-align: center;
  color: #091e39;
  margin-bottom: 0px;
  /* margin: 60px 0px 40px 0px; */
}
.hmpg-dfatechnology-section .deployment-title {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  text-align: center;
  color: #000000;
  margin-top: 60px;
  margin-bottom: 24px;
}
.hmpg-dfatechnology-section .deployment-options {
  display: flex;
  gap: 40px;
  align-items: center;
}
.hmpg-dfatechnology-section .deployment-option {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hmpg-dfatechnology-section .deployment-icon {
  width: 85px;
  height: 85px;
  background-color: #ffffff;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hmpg-dfatechnology-section .deployment-icon img {
  width: 60px;
  height: auto;
}
.hmpg-dfatechnology-section .deployment-details h4 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  color: #000000;
  margin-bottom: 8px;
}
.hmpg-dfatechnology-section .deployment-details ul {
  padding-left: 1rem;
}
.hmpg-dfatechnology-section .deployment-details ul li {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #000000;
}
.hmpg-dfatechnology-section .deployment-desktop-separator {
  width: 3px;
  height: 129px;
  background-color: #f28a22;
  display: block;
}
.hmpg-dfatechnology-section .deployment-mobile-separator {
  width: 100%;
  height: 3px;
  background-color: #f28a22;
  display: none;
}
.hmpg-dfatechnology-section .solutions-title {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  color: #000000;
  margin-top: 60px;
  margin-bottom: 24px;
  text-align: center;
}
.hmpg-dfatechnology-section .solutions-image {
  /*width: 648px;
            height: 168px;*/
  border-radius: 30px;
}

@media (max-width: 1200px) {
  .hmpg-dfatechnology-section .deployment-title {
    margin-top: 24px;
  }
  .hmpg-dfatechnology-section .solutions-title {
    margin-top: 24px;
  }
  .hmpg-dfatechnology-section .deployment-options {
    gap: 16px;
    flex-direction: column;
  }

  .hmpg-dfatechnology-section .deployment-details ul {
    margin: 0;
  }
  .hmpg-dfatechnology-section .deployment-desktop-separator {
    width: 3px;
    height: 129px;
    background-color: #f28a22;
    display: none;
  }
  .hmpg-dfatechnology-section .deployment-mobile-separator {
    width: 100%;
    height: 3px;
    background-color: #f28a22;
    display: block;
  }
  .hmpg-dfatechnology-section .deployment-details ul {
    padding-left: 2rem;
  }
  .hmpg-dfatechnology-section .deployment-details {
    min-width: 182px;
  }
}

@media (max-width: 767.98px) {
  .staticBlockHmPgTechnology {
    padding: 30px 0;
  }
  .hmpg-dfatechnology-section .technology-title {
    font-size: 24px;
  }
  .hmpg-dfatechnology-section .deployment-title {
    font-size: 18px;
  }
  .hmpg-dfatechnology-section .solutions-title {
    font-size: 18px;
  }

  .hmpg-dfatechnology-section .deployment-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    min-height: 78px;
  }

  .hmpg-dfatechnology-section .deployment-icon img {
    width: 46px;
    height: auto;
  }

  .hmpg-dfatechnology-section .deployment-options {
    align-items: start;
    gap: 16px;
  }
  .hmpg-dfatechnology-section .deployment-option {
    align-items: start;
    gap: 8px;
  }

  .hmpg-dfatechnology-section .deployment-details ul {
    margin: 0;
  }

  .hmpg-dfatechnology-section .solutions-title {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .hmpg-dfatechnology-section .deployment-title {
    margin-top: 24px;
    margin-bottom: 16px;
  }
}
      
/* ==================== End - DFA/Home/DFA-Technology ====================*/

/* ==================== Start - DFA/Aboutus/Founder ====================*/

.abtpg-founder-section {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #ffffff;
}
.abtpg-founder-section .content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.abtpg-founder-section .about-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 51px;
  text-align: left;
  color: #091e39;
  width: 156px;
  height: 59px;
  margin-bottom: 16px;
}
.abtpg-founder-section .about-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000000;
  width: 648px;
  height: 48px;
  margin-bottom: 60px;
}
.abtpg-founder-section video {
  border-radius: 30px;
  max-width: 390px;
  width: 100%;
}
.abtpg-founder-section .founder-name-overlay {
  position: absolute;
  bottom: 10px;
  left: 40px;
  right: 40px;
  text-align: center;
  z-index: 2;
}
.abtpg-founder-section .founder-name {
  font-size: 24px;
  font-weight: 700;
  /*line-height: 36px;*/
  color: #ffffff;
}
.abtpg-founder-section .founder-title {
  font-size: 16px;
  font-weight: 400;
  /*line-height: 24px;*/
  color: #f28a22;
}
.abtpg-founder-section .founder-details {
  display: flex;
  flex-direction: column;
}
.abtpg-founder-section .section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 41px;
  text-align: left;
  color: #091e39;
  width: 323px;
  height: 48px;
  margin-bottom: 24px;
}
.abtpg-founder-section .badge {
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-align: left;
  color: #ffffff;
  background-color: #f28a22;
  width: 114px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 0px;
  transition: transform 0.3s ease;
}
.abtpg-founder-section .badge:hover {
  transform: scale(1.05);
}
.abtpg-founder-section .founder-details ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000000;
}

@media (max-width: 767.98px) {
  .abtpg-founder-section .about-title {
    font-size: 28px;
  }
  .abtpg-founder-section .section-title {
    font-size: 24px;
  }
  .abtpg-founder-section .founder-name {
    font-size: 20px;
  }
  .abtpg-founder-section .about-description {
    width: 100%;
  }
}


/* ==================== End - DFA/Aboutus/Founder ====================*/

/* ==================== Start - DFA/Aboutus/Board-Members ====================*/

.staticBlockBoardMembers {
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.abtpg-board-members-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0px 0px 0px;
}

.abtpg-board-members-section .board-title {
  margin: 0px;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0;
  text-align: center;
  color: #091e39;
}

.abtpg-board-members-section .board-members-row {
  margin: 48px 0 0 0;
  width: 100%;
  /* max-width: 911px; */
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: center;
}

.abtpg-board-members-section .member-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 182.81px;
  cursor: pointer;
}

.abtpg-board-members-section .member-image {
  width: 182px;
  height: auto;
  border-radius: 91px;
  object-fit: cover;
  border: 1px solid rgba(242, 138, 34, 1);
  transition: transform 0.3s ease;
}

.abtpg-board-members-section .member-info {
  margin-top: 24px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

.abtpg-board-members-section .member-name,
.abtpg-board-members-section .anju-name {
  font-weight: 700;
  color: #f28a22;
}

.abtpg-board-members-section .member-title {
  font-weight: 400;
  color: #0d213a;
}

.abtpg-board-members-section .anju-name {
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  margin-top: 24px;
}

.abtpg-board-members-section .company-description {
  margin: 40px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 129%;
  text-align: center;
  color: #091e39;
}

.abtpg-board-members-section .divider-line {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}

.abtpg-board-members-section .partners-section {
  margin: 24px 0 0 0;
  width: 100%;
  max-width: 1320px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: nowrap;
  /* justify-content: center; */
}

.abtpg-board-members-section .partner-column {
  display: flex;
  flex-direction: column;
  max-width: 312px;
  padding: 0;
}

.abtpg-board-members-section .partner-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  color: #091e39;
  margin-bottom: 17px;
}

.abtpg-board-members-section .partner-logos {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.abtpg-board-members-section .partner-logo {
  border-radius: 5px;
  height: 22px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.abtpg-board-members-section .logo-jack {
  width: 98px;
}

.abtpg-board-members-section .logo-allied {
  width: 150px;
}

.abtpg-board-members-section .logo-bcg {
  width: 47px;
}

.abtpg-board-members-section .logo-sprint {
  width: 202px;
}

.abtpg-board-members-section .logo-verifier {
  width: 69px;
  height: 31px;
}

.abtpg-board-members-section .logo-tbn {
  width: 38px;
  height: 36px;
}

@media (max-width: 991px) {
  .abtpg-board-members-section .board-members-row,
  .abtpg-board-members-section .partners-section {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }

  .abtpg-board-members-section .partner-column,
  .abtpg-board-members-section .board-members-row {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .abtpg-board-members-section .board-members-row,
  .abtpg-board-members-section .partners-section {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
  }

  .abtpg-board-members-section .partner-column,
  .abtpg-board-members-section .board-members-row {
    width: 100%;
    max-width: 100%;
  }

  .abtpg-board-members-section {
    padding: 30px 0px 0px 0px;
  }
}

@media (max-width: 480px) {
  .abtpg-board-members-section .board-members-row {
    gap: 16px;
  }

  .abtpg-board-members-section .member-column {
    max-width: 171px;
  }

  .abtpg-board-members-section .member-image {
    width: 171px;
    height: auto;
  }

  .abtpg-board-members-section .member-info {
    font-size: 14px;
  }

  .abtpg-board-members-section .company-description {
    font-size: 16px;
  }

  .abtpg-board-members-section .partner-title {
    font-size: 16px;
  }
}


/* ==================== End - DFA/Aboutus/Board-Members ====================*/

/* ==================== Start - DFA/Aboutus/Distributors ====================*/

.abtpg-distributors-section .partner-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  color: #091e39;
  margin-bottom: 17px;
}

.abtpg-distributors-section .partners-section .partner-column {
  padding: 0;
}

.abtpg-distributors-section .logo-jack {
  width: 98px;
}

.abtpg-distributors-section .logo-allied {
  width: 150px;
}

.abtpg-distributors-section .logo-bcg {
  width: 47px;
}

.abtpg-distributors-section .logo-sprint {
  width: 202px;
}

.abtpg-distributors-section .logo-verifier {
  width: 69px;
}

.abtpg-distributors-section .logo-tbn {
  width: 38px;
}
.abtpg-distributors-section .partner-logos img {
  border-radius: 5px;
}
.abtpg-distributors-section .gap-2 {
  gap: 0.5rem !important;
}

@media (max-width: 767.98px) {
  .abtpg-distributors-section .partners-section .partner-column {
    padding: 0 16px;
  }
}


/* ==================== End - DFA/Aboutus/Distributors ====================*/

/* ==================== Start - DFA/contactus/head-section ====================*/

.contact-us-ctn {
  font-family: "Outfit", sans-serif;
  position: relative;
  overflow: hidden;
}
.contact-us-ctn .contact-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.contact-us-ctn .contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 82, 155, 0.34);
  z-index: -1;
}
.contact-us-ctn .contact-width {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: auto;
  padding: 120px 60px;
}
@media screen and (max-width: 992px) {
  .contact-us-ctn .contact-width {
    padding: 20px 16px 40px 16px;
  }
}
.contact-us-ctn .contact-width .contact-one .tilte-contact {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 14px;
}
@media screen and (max-width: 992px) {
  .contact-us-ctn .contact-width .contact-one .tilte-contact {
    margin-top: 40px;
  }
}
.contact-us-ctn .contact-width .contact-one .contact-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .contact-us-ctn .contact-width .contact-one .contact-text {
    margin-bottom: 40px;
  }
}
.contact-us-ctn .contact-width .contact-two {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-us-ctn .contact-width .contact-two .contact-link {
  display: flex;
  width: 312px;
  padding: 9px 0px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #12365a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.contact-us-ctn .contact-width .contact-two .contact-link:hover {
  color: #233050;
  border: 1px solid #2b3b62;
  background: #fff;
}

/* ==================== End - DFA/contactus/head-section ====================*/

/* ==================== Start - DFA/contactus/contact-section2 ====================*/

.contact-us-ctn2 {
  font-family: "Outfit", sans-serif;
  position: relative;
  overflow: hidden;
}
.contact-us-ctn2 .contact-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.contact-us-ctn2 .contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.contact-us-ctn2 .contact-width {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1320px;
  margin: auto;
  padding: 120px 30px;
}
@media screen and (max-width: 992px) {
  .contact-us-ctn2 .contact-width {
    padding: 20px 16px 40px 16px;
  }
}
.contact-us-ctn2 .contact-width .contact-one .social-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  margin: 20px 0px;
  color: #fff;
}
.contact-us-ctn2 .contact-width .contact-one .social-contact .title-social {
  min-width: 120px;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (max-width: 576px) {
  .contact-us-ctn2 .contact-width .contact-one .social-contact .title-social {
    margin-bottom: 10px;
  }
}
.contact-us-ctn2 .contact-width .contact-one .social-contact .icon-social {
  display: flex;
  align-items: center;
  width: 25px;
  height: 25px;
}
.contact-us-ctn2 .contact-width .contact-one .social-contact .title-info {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-left: 4px;
}
@media screen and (max-width: 576px) {
  .contact-us-ctn2 .contact-width .contact-one .social-contact .title-info {
    margin-bottom: 16px;
  }
}
.contact-us-ctn2
  .contact-width
  .contact-one
  .social-contact
  .icon-social-group {
  display: flex;
  gap: 16px;
}
.contact-us-ctn2 .contact-width .contact-one .tilte-contact {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 14px;
}
@media screen and (max-width: 992px) {
  .contact-us-ctn2 .contact-width .contact-one .tilte-contact {
    margin-top: 40px;
  }
}
.contact-us-ctn2 .contact-width .contact-one .contact-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .contact-us-ctn2 .contact-width .contact-one .contact-text {
    margin-bottom: 40px;
  }
}
.contact-us-ctn2 .contact-width .contact-two {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-us-ctn2 .contact-width .contact-two .contact-link {
  display: flex;
  width: 312px;
  padding: 9px 0px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #12365a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.contact-us-ctn2 .contact-width .contact-two .contact-link:hover {
  color: #233050;
  border: 1px solid #2b3b62;
  background: #fff;
}

/* ==================== End - DFA/contactus/contact-section2 ====================*/

/* ==================== Start - DFA/Software Solutions/credit risk ====================*/

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

.section-solutions-name-nack {
  font-family: "Outfit", sans-serif;
  position: relative;
  overflow: hidden;
}

.section-solutions-name-nack .solution-gb {
  background-color: #fff;
  padding: 60px 0;
} 

/* ============================================================================ 
.section-solutions-name-nack .video-container {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
@media screen and (max-width: 576px) {
  .section-solutions-name-nack .video-container {
    padding: 30px 0;
  }
}
.section-solutions-name-nack .video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

============================================================================ */ 

.section-solutions-name-nack .overlay-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}
.section-solutions-name-nack .margin-top-24 {
  margin-top: 24px;
}
.section-solutions-name-nack .image-frame1 img {
  width: 642px;
  max-height: 343px;
  border-radius: 30px;
  object-position: top;
  object-fit: cover;
  border: 2px solid #f28a22;
}
@media screen and (max-width: 576px) {
  .section-solutions-name-nack .image-frame1 img {
    border-radius: 15px;
    max-width: 100%;
    max-height: 190px;
    margin-top: 24px;
  }
}
.section-solutions-name-nack .image-frame1 .img-2 {
  width: 100%;
  max-height: 116px;
  border-radius: 15px;
  object-position: top;
  object-fit: cover;
  border: 2px solid #f28a22;
  margin-top: 24px;
}
.section-solutions-name-nack .image-frame1 .text-under {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  color: #091E39;
  margin-top: 16px;
  margin-bottom: 0;
}
.section-solutions-name-nack .image-frame2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .section-solutions-name-nack .image-frame2 {
    margin-top: 24px;
  }
}
.section-solutions-name-nack .image-frame2 .img-3 {
  width: 393px;
  max-height: 79px;
  border-radius: 15px;
  object-position: top;
  object-fit: cover;
  border: 2px solid #f28a22;
}
.section-solutions-name-nack .image-frame2 .text-under {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  color: #091E39;
  margin-top: 16px;
  margin-bottom: 0;
}
.section-solutions-name-nack .content-items .title-content {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  color: #f28a22;
}
.section-solutions-name-nack .content-items .text-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #091E39;
}
.section-solutions-name-nack .content-items .text-highlight {
  color: #f28a22;
  font-weight: 700;
}
.section-solutions-name-nack .content-items .highlight-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-solutions-name-nack
  .content-items
  .highlight-section
  .hightlight-title {
  color: #f28a22;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.section-solutions-name-nack .content-items .highlight-section h3 {
  color: #091E39;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
}
.section-solutions-name-nack .content-items .highlight-section .list-highlight {
  color: #091E39;
  margin-left: 30px;
  list-style: disc;
}
.section-solutions-name-nack .contact-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.section-solutions-name-nack .contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.section-solutions-name-nack .container-width {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1320px;
  margin: auto;
  padding: 60px 0px;
  border-bottom: 3px solid #f28a22;
}
@media screen and (max-width: 992px) {
  .section-solutions-name-nack .container-width {
    padding: 20px 16px 40px 16px;
  }
}
.section-solutions-name-nack .container-width .contact-one .social-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  margin: 20px 0px;
  color: #fff;
}
.section-solutions-name-nack
  .container-width
  .contact-one
  .social-contact
  .title-social {
  min-width: 120px;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (max-width: 576px) {
  .section-solutions-name-nack
    .container-width
    .contact-one
    .social-contact
    .title-social {
    margin-bottom: 10px;
  }
}
.section-solutions-name-nack
  .container-width
  .contact-one
  .social-contact
  .icon-social {
  display: flex;
  align-items: center;
  width: 25px;
  height: 25px;
}
.section-solutions-name-nack
  .container-width
  .contact-one
  .social-contact
  .title-info {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-left: 4px;
}
@media screen and (max-width: 576px) {
  .section-solutions-name-nack
    .container-width
    .contact-one
    .social-contact
    .title-info {
    margin-bottom: 16px;
  }
}
.section-solutions-name-nack
  .container-width
  .contact-one
  .social-contact
  .icon-social-group {
  display: flex;
  gap: 16px;
}
.section-solutions-name-nack .container-width .contact-one .tilte-contact {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 14px;
}
@media screen and (max-width: 992px) {
  .section-solutions-name-nack .container-width .contact-one .tilte-contact {
    margin-top: 40px;
  }
}
.section-solutions-name-nack .container-width .contact-one .contact-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .section-solutions-name-nack .container-width .contact-one .contact-text {
    margin-bottom: 40px;
  }
}
.section-solutions-name-nack .container-width .contact-two {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-solutions-name-nack .container-width .contact-two .contact-link {
  display: flex;
  width: 312px;
  padding: 9px 0px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #12365a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.section-solutions-name-nack .container-width .contact-two .contact-link:hover {
  color: #233050;
  border: 1px solid #2b3b62;
  background: #fff;
}
.section-solutions-name-nack .container-width:nth-last-child(1) {
  border: 0;
}

/* ==================== End - DFA/Software Solutions/credit risk ====================*/

/* ==================== Start - DFA/Consult/Consulting-Services ====================*/

.consult-section-name-nack {
  font-family: "Outfit", sans-serif;
}
.consult-section-name-nack .header-consult {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  margin-bottom: 60px;
  padding: 0 30px;
}
@media screen and (max-width: 576px) {
  .consult-section-name-nack .header-consult {
    margin-bottom: 24px;
    padding: 0 15px;
  }
}
.consult-section-name-nack .header-consult h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 8px;
}
.consult-section-name-nack .header-consult p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
}
.consult-section-name-nack .video-container {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
@media screen and (max-width: 576px) {
  .consult-section-name-nack .video-container {
    padding: 30px 0;
  }
}
.consult-section-name-nack .video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.consult-section-name-nack .overlay-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  max-width: 1320px;
  margin: auto;
}
@media screen and (max-width: 576px) {
  .consult-section-name-nack .consult-slick .slick-slide {
    width: 244px !important;
  }
}
.consult-section-name-nack .consult-slick .slick-dots li {
  width: 12px;
  height: 12px;
}
.consult-section-name-nack .consult-slick .slick-dots li button {
  width: 12px;
  height: 12px;
  background: #bcbcbc;
  border-radius: 20px;
}
.consult-section-name-nack .consult-slick .slick-dots li button::before {
  font-size: 0px;
}
.consult-section-name-nack .consult-slick .slick-dots li.slick-active {
  width: 32px;
  height: 12px;
}
.consult-section-name-nack .consult-slick .slick-dots li.slick-active button {
  width: 32px;
  height: 12px;
  background: #f28a22;
  border-radius: 20px;
}
.consult-section-name-nack
  .consult-slick
  .slick-dots
  li.slick-active
  button::before {
  font-size: 0px;
}
.consult-section-name-nack .consult-slick .consult-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}
.consult-section-name-nack .consult-slick .consult-items .img-wrapper {
  position: relative;
  max-width: 245px;
  height: 423px;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid #f28a22;
}
.consult-section-name-nack .consult-slick .consult-items .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 30px;
}
.consult-section-name-nack .consult-slick .consult-items .img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #58d7dd;
  mix-blend-mode: color;
  border-radius: 30px;
  pointer-events: none;
  z-index: 2;
}
.consult-section-name-nack .consult-slick .consult-items .items-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 16px;
  margin-bottom: 16px;
  text-align: center;
  min-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* จำกัดแค่ 2 บรรทัด */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 576px) {
  .consult-section-name-nack .consult-slick .consult-items .items-title {
    font-size: 16px;
  }
}
.consult-section-name-nack .consult-slick .consult-items .items-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 16px;
  text-align: center;
}
.consult-section-name-nack .consult-slick .consult-items .btn-slick {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
  border: 1px solid #f28a22;
  border-radius: 6px;
  background-color: transparent;
  color: #f28a22;
  text-decoration: none;
}
.consult-section-name-nack .consult-slick .consult-items .btn-slick:hover {
  background-color: #f28a22;
  color: #fff;
}

/* ==================== End - DFA/Consult/Consulting-Services ====================*/

/* ==================== Start - DFA/publications/ publications ====================*/

.section-solutions-name-nack {
  font-family: "Outfit", sans-serif;
  position: relative;
  overflow: hidden;

  .margin-top-24 {
    margin-top: 24px;
  }

  .image-frame1 {
    img {
      width: 642px;
      max-height: 343px;
      border-radius: 30px;
      object-position: top;
      object-fit: cover;
      border: 2px solid #f28a22;

      @media screen and (max-width: 576px) {
        border-radius: 15px;
        max-width: 100%;
        max-height: 190px;
        margin-top: 24px;
      }
    }

    .img-2 {
      width: 100%;
      max-height: 116px;
      border-radius: 15px;
      object-position: top;
      object-fit: cover;
      border: 2px solid #f28a22;
      margin-top: 24px;
    }

    .text-under {
      font-size: 16px;
      font-weight: 700;
      line-height: 150%;
      color: #fff;
      margin-top: 16px;
      margin-bottom: 0;
    }
  }

  .image-frame2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    @media screen and (max-width: 576px) {
      margin-top: 24px;
    }

    .img-3 {
      width: 393px;
      max-height: 79px;
      border-radius: 15px;
      object-position: top;
      object-fit: cover;
      border: 2px solid #f28a22;
    }

    .text-under {
      font-size: 16px;
      font-weight: 700;
      line-height: 150%;
      color: #fff;
      margin-top: 16px;
      margin-bottom: 0;
    }
  }

  .content-items {
    .title-content {
      font-size: 32px;
      font-weight: 700;
      line-height: 150%;
      color: #f28a22;
    }

    .text-content {
      font-size: 16px;
      font-weight: 400;
      line-height: 150%;
      color: #fff;
    }

    .text-highlight {
      color: #f28a22;
      font-weight: 700;
    }

    .highlight-section {
      display: flex;
      flex-direction: column;
      gap: 16px;

      .hightlight-title {
        color: #f28a22;
        font-size: 16px;
        font-weight: 700;
        line-height: 150%;
      }

      h3 {
        color: #fff;
        font-size: 24px;
        font-weight: 400;
        line-height: 150%;
        margin-bottom: 0;
      }

      .list-highlight {
        color: #fff;
        margin-left: 30px;
        list-style: disc;
      }
    }
  }

  // ✅ ภาพพื้นหลัง
  .contact-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }

  // ✅ overlay สีดำโปร่ง (เช่น rgba)
  .contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  .container-width {
    position: relative; // สำคัญ เพื่อให้ content อยู่เหนือ overlay
    display: flex;
    flex-wrap: wrap;
    // justify-content: center;
    // align-items: center;
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 60px 0px;
    border-bottom: 3px solid #f28a22;

    @media screen and (max-width: 992px) {
      padding: 20px 16px 40px 16px;
    }

    .contact-one {
      .social-contact {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        align-items: start;
        margin: 20px 0px;
        color: #fff;

        .title-social {
          min-width: 120px;
          font-size: 18px;
          font-weight: 700;
          line-height: 150%;

          @media screen and (max-width: 576px) {
            margin-bottom: 10px;
          }
        }

        .icon-social {
          display: flex;
          align-items: center;
          width: 25px;
          height: 25px;
        }

        .title-info {
          font-size: 16px;
          font-weight: 400;
          line-height: 150%;
          margin-left: 4px;

          @media screen and (max-width: 576px) {
            margin-bottom: 16px;
          }
        }

        .icon-social-group {
          display: flex;
          gap: 16px;
        }
      }

      .tilte-contact {
        color: #fff;
        font-size: 40px;
        font-weight: 700;
        line-height: 150%;
        margin-bottom: 14px;

        @media screen and (max-width: 992px) {
          margin-top: 40px;
        }
      }

      .contact-text {
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        line-height: 150%;
        margin-bottom: 0;

        @media screen and (max-width: 992px) {
          margin-bottom: 40px;
        }
      }
    }

    .contact-two {
      display: flex;
      justify-content: center;
      align-items: center;

      .contact-link {
        display: flex;
        width: 312px;
        padding: 9px 0px;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        background: #12365a;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        line-height: 150%;

        &:hover {
          color: #233050;
          border: 1px solid #2b3b62;
          background: #fff;
        }
      }
    }
  }
  .container-width:nth-last-child(1) {
    border: 0;
  }
}

.publications-section-name-nack {
  font-family: "Outfit", sans-serif;
}
.publications-section-name-nack .header-publications {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  margin-bottom: 60px;
  padding: 0 30px;
}
@media screen and (max-width: 576px) {
  .publications-section-name-nack .header-publications {
    margin-bottom: 24px;
    padding: 0 15px;
  }
}
.publications-section-name-nack .header-publications h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 8px;
}
.publications-section-name-nack .header-publications p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
}
.publications-section-name-nack .video-container {
  position: relative;
  max-height: 812px;
  overflow: hidden;
  padding: 60px 0;
}
@media screen and (max-width: 576px) {
  .publications-section-name-nack .video-container {
    padding: 30px 0;
  }
}
.publications-section-name-nack .video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.publications-section-name-nack .overlay-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  max-width: 1320px;
  margin: auto;
}
@media screen and (max-width: 576px) {
  .publications-section-name-nack .publications-slick .slick-slide {
    width: 244px !important;
  }
}
.publications-section-name-nack .publications-slick .slick-dots {
  bottom: -45px;
}
.publications-section-name-nack .publications-slick .slick-dots li {
  width: 12px;
  height: 12px;
}
.publications-section-name-nack .publications-slick .slick-dots li button {
  width: 12px;
  height: 12px;
  background: #bcbcbc;
  border-radius: 20px;
}
.publications-section-name-nack
  .publications-slick
  .slick-dots
  li
  button::before {
  font-size: 0px;
}
.publications-section-name-nack
  .publications-slick
  .slick-dots
  li.slick-active {
  width: 32px;
  height: 12px;
}
.publications-section-name-nack
  .publications-slick
  .slick-dots
  li.slick-active {
  width: 32px;
  height: 12px;
  background: #f28a22;
  border-radius: 20px;
}
.publications-section-name-nack
  .publications-slick
  .slick-dots
  li.slick-active
  button {
  background: 0;
}
.publications-section-name-nack
  .publications-slick
  .slick-dots
  li.slick-active
  button::before {
  font-size: 0px;
}
.publications-section-name-nack .publications-slick .publications-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}
.publications-section-name-nack .publications-slick .publications-items img {
  width: 245px;
  height: 346px;
  object-fit: cover;
  border-radius: 30px;
}
.publications-section-name-nack
  .publications-slick
  .publications-items
  .items-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 16px;
  margin-bottom: 16px;
  text-align: center;
  min-height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* จำกัดแค่ 2 บรรทัด */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 576px) {
  .publications-section-name-nack
    .publications-slick
    .publications-items
    .items-title {
    font-size: 16px;
  }
}
.publications-section-name-nack
  .publications-slick
  .publications-items
  .btn-slick {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
  border: 1px solid #f28a22;
  border-radius: 6px;
  background-color: transparent;
  color: #f28a22;
  text-decoration: none;
}
.publications-section-name-nack
  .publications-slick
  .publications-items
  .btn-slick:hover {
  background-color: #f28a22;
  color: #fff;
}


/* ==================== End - DFA/publications/ publications ====================*/
/* ==================== Start - DFA/home/blogs ====================*/
.hmpg-blogs-section {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Outfit", sans-serif;
}

.blogs-section-parent {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.bg-blogs {
  background-color: #091E39;
}

.bg-blogs-bottom-border {
  border-bottom: 10px solid #f28a22;
}

.blogs-section-parent .blogs-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.blogs-section-parent .blogs-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}

.blogs-section-parent .blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1320px;
  padding: 0 30px;
  margin: 0 auto;
}

.blogs-section-parent .blogs-card {
  background-color: transparent;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blogs-section-parent .blogs-card:hover {
  transform: translateY(-5px);
}

.blogs-section-parent .blogs-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  border: 1px solid rgba(242, 138, 34, 1);
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}

.blogs-section-parent .blogs-card-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f28a22;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  height: 52px;
  padding: 0;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blogs-section-parent .blogs-card-description {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
}

.blogs-hover:hover {
  text-decoration: none !important;
}

.blogs-hover:hover .blogs-card-description {
  text-decoration: none !important;
  color: #f28a22;
}

.blogs-button {
  margin-top: 24px;
  display: flex;
  width: 140px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #F28A22;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.blogs-button:hover {
  background: #E87604;
}

.blogs-button:active {
  background: #DF7000;
}

@media (max-width: 1199.98px) {
  .blogs-section-parent .blogs-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .blogs-section-parent .blogs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hmpg-blogs-section {
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .blogs-section-parent {
    padding: 30px 0;
  }

  .blogs-section-parent .blogs-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .blogs-section-parent .blogs-card {
    max-width: 312px;
    margin: 0 auto;
  }

  .blogs-section-parent .blogs-title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .hmpg-blogs-section {
    height: auto;
  }

  .hmpg-blogs-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1400px) {
  .hmpg-blogs-section .container {
    max-width: 1320px;
  }
}
/* ==================== End - DFA/home/blogs ====================*/