.blogArea {
  padding-top: 90px;
}
.blogArea .blogWrap {
  display: flex;
  flex-wrap: wrap;
}

p {
  color: #06041f;
  font-weight: 300;
  font-size: clamp(1rem, 4vw, 1.25rem);
  padding-top: 16px;
}

.blogArea .blogWrap .blogItem {
  flex-basis: 50%;
  box-sizing: border-box;
  padding-bottom: 100px;
  position: relative;
}
.blogArea .blogWrap .blogItem .profileArea {
  display: flex;
  align-items: center;
}
.blogArea .blogWrap .blogItem .profileArea .picProfile img {
  max-width: 155px;
}
.blogArea .blogWrap .blogItem .profileArea .personTitle {
  position: relative;
  padding-left: 60px;
}
.blogArea .blogWrap .blogItem .profileArea .personTitle p.name {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  color: #13294b;
  font-weight: 500;
}
.blogArea .blogWrap .blogItem .profileArea .personTitle p.title {
  font-size: clamp(0.875rem, 4vw, 1.125rem);
  color: #06041f;
  font-weight: 200;
}
.blogArea .blogWrap .blogItem .profileArea .personTitle:before {
  content: "";
  width: 0px;
  height: 90px;
  position: absolute;
  border: 2px solid #47d7ac;
  border-radius: 2px;
  top: -10px;
  left: 0;
  margin-left: 30px;
}
.blogArea .blogWrap .blogItem .blogDetail {
  min-height: 300px;
}
.blogArea .blogWrap .blogItem .blogDetail h2.title {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  color: #13294b;
  font-weight: 500;
  max-width: 75%;
  padding-top: 30px;
  height: 130px;
}
.blogArea .blogWrap .blogItem .blogDetail p {
  font-size: clamp(0.875rem, 4vw, 1.125rem);
  color: #13294b;
  font-weight: 200;
  max-width: 80%;
  padding-top: 30px;
}
.blogArea .blogWrap .blogItem svg {
  position: absolute;
  top: 180px;
  left: 0;
  width: 500px;
  height: 550px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease, stroke-dashoffset 2s ease;
}
.blogArea .blogWrap .blogItem:hover svg {
  opacity: 1;
}
.blogArea .blogWrap .blogItem:hover .st0 {
  stroke-dashoffset: 0;
}
@media (max-width: 992px) {
  .blogArea .blogWrap {
    flex-direction: column;
  }
  .blogArea .blogWrap .blogItem svg {
    display: none;
  }
  .blogArea .blogWrap .blogItem .blogDetail h2.title {
    max-width: 100%;
  }
  .blogArea .blogWrap .blogItem .blogDetail p {
    max-width: 100%;
  }
}
.bookList {
  padding-top: 50px;
}
.bookList .bookWrap {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 95px;
}
.bookList .bookWrap .bookItem {
  padding-bottom: 95px;
}
.bookList .bookWrap .bookItem .bookDetail {
  min-height: 360px;
}
.bookList .bookWrap .bookItem .bookDetail .bookTitle {
  padding-top: 25px;
}
.bookList .bookWrap .bookItem .bookDetail .bookTitle h2.title {
  font-weight: 500;
  color: #13294b;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
}
.bookList .bookWrap .bookItem .bookDetail .bookDesc p {
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 200;
  padding-top: 25px;
}
@media (max-width: 992px) {
  .bookList .bookWrap {
    grid-template-columns: 1fr;
  }
  .bookList .bookWrap .bookItem .bookDetail {
    min-height: 285px;
  }
}
.ebookArea {
  padding-top: 50px;
  padding-bottom: 85px;
}
.ebookArea .ebookTitle {
  padding-bottom: 40px;
}
.ebookArea .ebookTitle h3.title {
  color: #13294b;
  font-weight: 600;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  text-align: center;
}
.ebookArea .ebookWrap {
  display: flex;
  gap: 70px;
}
.ebookArea .ebookWrap .bookItem {
  text-align: center;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.ebookArea .ebookWrap .bookItem p {
  color: #13294b;
  font-weight: 500;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  padding-top: 25px;
}
.ebookArea .ebookWrap .bookItem:hover {
  transform: scale(1.05);
}
.ebookArea .ebookWrap .bookItem a {
  text-decoration: none;
}
.ebookArea .ebookWrap:hover .bookItem {
  filter: blur(5px);
}
.ebookArea .ebookWrap .bookItem:hover {
  filter: none;
}
@media (max-width: 992px) {
  .ebookArea .ebookWrap {
    flex-direction: column;
  }
}
.faqArea .faqItem h3.title {
  color: #13294b;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 400;
  padding-top: 45px;
}
.faqArea .faqItem p {
  font-weight: 300;
  font-size: clamp(1rem, 4vw, 1.125rem);
  padding-top: 15px;
  line-height: 120%;
}
.faqArea .faqItem ul {
  margin-inline: 15px;
}
.faqArea .faqItem ul li {
  font-weight: 300;
  font-size: clamp(1rem, 4vw, 1.125rem);
  line-height: 120%;
}
.faqArea .faqItem ul li::marker {
  color: #47d7ac;
}
footer {
  background-color: #13294b;
  height: 130px;
}
footer .textArea ul.footerLinks {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  height: 130px;
}
footer .textArea ul.footerLinks li {
  list-style: none;
}
footer .textArea ul.footerLinks li a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  transition: all 0.3s ease;
}
footer .textArea ul.footerLinks li a span {
  color: #47d7ac;
}
footer .textArea ul.footerLinks li a:hover {
  color: #47d7ac;
}
@media (max-width: 992px) {
  footer .textArea ul.footerLinks {
    flex-direction: column;
    gap: 15px;
  }
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #13294b;
}
.no-js #loader-wrapper {
  display: none;
}
#loader-wrapper .loader-section {
  background: rgba(0, 0, 0, 0);
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}
#animated-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw 4s ease forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  min-width: 0;
  scroll-behavior: smooth;
}
.container {
  max-width: 1320px;
  margin-inline: auto;
  width: 100%;
  padding: 0;
}
.buttonC {
  color: #06041f;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  outline: none;
  border: none;
  cursor: pointer;
}
.buttonC:hover {
  background-color: #47d7ac;
  color: #fff;
}
.buttonC.green {
  background-color: #47d7ac;
  color: #06041f;
}
.buttonC.green:hover {
  background-color: #06041f;
  color: #47d7ac;
}
.h-30 {
  padding-top: 30px;
}
.h-60 {
  padding-top: 60px;
}
.hidden {
  display: none;
}
@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }
}
.mainBanner {
  background-image: url("../../assets/img/main_banner.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
}
.mainBanner .bannerText {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 65vh;
}
.mainBanner .bannerText h1.title {
  font-size: clamp(1.5rem, 4vw, 3.125rem);
  color: #fff;
  font-weight: 600;
  line-height: 60px;
}
.mainBanner .bannerText h1.title span {
  color: #47d7ac;
}
.mainBanner .buttonArea {
  padding-top: 20px;
}
@media (max-width: 992px) {
  .mainBanner .bannerText {
    height: 50vh;
  }
  .mainBanner .bannerText h1.title {
    line-height: 50px;
  }
}
.mainMenu .desktopMenu {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0;
  right: 0;
  max-width: 1320px;
  margin-inline: auto;
  align-items: center;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .mainMenu .desktopMenu {
    justify-content: space-between;
    padding: 15px;
    align-items: flex-start;
  }
}
.mainMenu .desktopMenu .logoArea {
  width: 300px;
}
.mainMenu .menuItems ul {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .mainMenu .menuItems ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #13294b;
    padding: 20px;
    z-index: 100;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
  }
}
.mainMenu .menuItems ul li.menuItem {
  list-style: none;
  position: relative;
}
.mainMenu .menuItems ul li.menuItem a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  font-size: clamp(1rem, 4vw, 1.25rem);
  transition: all 0.3s ease;
  position: relative;
}
.mainMenu .menuItems ul li.menuItem a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  background: #47d7ac;
  height: 3px;
  width: 100%;
  display: block;
  border-radius: 3px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.mainMenu .menuItems ul li.menuItem a:hover:after {
  transform: scaleX(1);
}
.mainMenu .menuItems ul li.menuItem a:hover {
  color: #fff;
}
.mainMenu .menuItems.active ul {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mainMenu .hamburger {
  display: none;
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
}
@media (max-width: 768px) {
  .mainMenu .hamburger {
    display: block;
  }
}
.mainText .textArea {
  text-align: center;
}
.mainText .textArea h2.title {
  color: #13294b;
  font-weight: 600;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
}
.mainText .textArea p {
  color: #06041f;
  font-weight: 300;
  font-size: clamp(1rem, 4vw, 1.25rem);
  padding-top: 16px;
}
.sapHero {
  background-image: url("../../assets/img/sap_herp.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 65vh;
}
.sapHero .titleArea {
  text-align: center;
  padding-top: 90px;
}
.sapHero .titleArea h4.title {
  color: #13294b;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}
.sapHero .titleArea p {
  color: #06041f;
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 300;
}
.subBanner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
}
.subBanner .subText {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 55vh;
}
.subBanner .subText h1.title {
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  color: #fff;
  font-weight: 600;
  line-height: 60px;
}
.subBanner .subText h1.title span {
  color: #47d7ac;
}
.subBanner .subText p {
  font-size: clamp(1rem, 4vw, 1.25rem);
  padding-top: 10px;
  color: #fff;
  font-weight: 200;
}
@media (max-width: 992px) {
  .subBanner .subText h1.title {
    line-height: 50px;
  }
}
.testArea {
  padding-top: 50px;
}
.testArea h3.title {
  color: #13294b;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 10px;
}
.testArea .buttonArea {
  padding-bottom: 50px;
}
.testArea .radioArea {
  padding-bottom: 40px;
}
.testArea form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.testArea label {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.375em;
}
.testArea label input {
  position: absolute;
  left: -9999px;
}
.testArea label input:checked + span {
  background-color: #e2f9f2;
}
.testArea label input:checked + span:before {
  box-shadow: inset 0 0 0 0.4375em #47d7ac;
}
.testArea label span {
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.375em;
  border-radius: 99em;
  transition: 0.25s ease;
  font-size: 16px;
  font-weight: 300;
}
.testArea label span:hover {
  background-color: #e2f9f2;
}
.testArea label span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 0.375em;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 0.125em #47d7ac;
}
.testArea .buttonArea {
  text-align: center;
}
.userForm {
  padding-top: 50px;
}
.userForm h2 {
  font-size: 40px;
  color: #13294b;
  text-align: center;
  font-weight: 500;
}
.userForm form .formArea {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  padding-top: 30px;
}
.userForm form .formArea input {
  border: 1px solid #c4c9d2;
  border-radius: 8px;
  color: #13294b;
  height: 56px;
  font-size: 14px;
  padding: 15px;
  transition: all 0.3s ease;
}
.userForm form .formArea input:focus {
  border: 1px solid #47d7ac;
}
.userForm form .message {
  padding-top: 30px;
}
.userForm form .message textarea {
  width: 100%;
  border: 1px solid #c4c9d2;
  border-radius: 8px;
  color: #13294b;
  height: 56px;
  font-size: 14px;
  padding: 15px;
  transition: all 0.3s ease;
  height: 150px;
}
.userForm form .message textarea:focus {
  border: 1px solid #47d7ac;
}
.userForm .buttonArea {
  text-align: center;
  padding: 50px 0;
}
.userForm .buttonArea .buttonC {
  cursor: pointer;
}
.userForm .errorArea {
  text-align: center;
  max-width: 30%;
  margin: 0 auto;
  padding-top: 20px;
}
.userForm .errorArea .error {
  background-color: rgba(255, 99, 71, 0.3);
  font-size: 14px;
  border-radius: 5px;
  margin-bottom: 8px;
}
.userForm .successArea {
  text-align: center;
  max-width: 30%;
  margin: 0 auto;
  padding-top: 20px;
}
.userForm .successArea .success {
  background-color: rgba(71, 215, 172, 0.3);
  font-size: 14px;
  border-radius: 5px;
  margin-bottom: 8px;
}
.successMessage {
  text-align: center;
}
.successMessage h4.title {
  color: #13294b;
  font-size: clamp(2.25rem, 4vw, 2.5rem);
  font-weight: 400;
}
.successMessage p {
  font-size: 20px;
  font-weight: 300;
  padding-top: 12px;
  padding-bottom: 25px;
}
@media (max-width: 992px) {
  .userForm form .formArea {
    grid-template-columns: repeat(1, 1fr);
  }
}
.videoArea {
  padding-top: 50px;
  padding-bottom: 50px;
}
.videoArea .textArea {
  text-align: center;
}
.videoArea .textArea h2.title {
  color: #13294b;
  font-weight: 600;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  padding-bottom: 50px;
}

.videoArea .slick-dots {
  bottom: -50px;
}

.videoArea .slick-dots li button::before {
  font-size: 10px;
  color: #47d7ac;
  opacity: .65;
}

.videoArea .slick-slider .video {
  margin: 0 10px;
  position: relative;
}
.videoArea .slick-slider .video img {
  width: 100%;
  max-width: 310px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

.videoArea .videoGrid {
  padding-top: 30px;
  padding-bottom: 30px;
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.videoArea .videoGrid .video {
  position: relative;
}
.videoArea .videoGrid .video img {
  width: 285px;
  height: 240px;
  border-radius: 15px;
  display: block;
  object-fit: none;
  object-position: 85% 50%;
}
.videoArea .video .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #47D7AC;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  animation: pulse 1.5s infinite;
}
.videoArea .video .play-button::before {
  content: '';
  border-left: 12px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 5px;
}
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
@media (max-width: 992px) {
  .videoArea .videoGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.accordion-container {
  width: 100%;
  margin: 0 auto;
  }

  .accordion {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  }

  .accordion-header {
  background-color: #f1f1f1;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  }

  .accordion-header:hover {
  background-color: #ddd;
  }

  .accordion-content {
  display: none;
  padding: 10px;
  background-color: #f9f9f9;
  border-top: 1px solid #ccc;
  border-radius: 5px;
  }

  .accordion.active .accordion-content {
  display: block;
  }

  .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
  }

  .breadcrumb ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flow;
  }

  .breadcrumb li {
      display: inline-block;
  }

  .breadcrumb li a {
      text-decoration: none;
      color: #ffffff;
  }

  .breadcrumb li:last-child {
      font-weight: bold;
  }
   .breadcrumb li:not(:first-child)::before {
    content: "|";
    color: #fff;
    margin-right: 10px;
  }


  .languageDropdownCustom {
            position: relative;
          }

          .dropdown {
            position: relative;
            cursor: pointer;
            user-select: none;
          }

          .dropdown-toggle {
            padding: 3px 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
            color: #fff;
            font-weight: 500;
            display: inline-block;
          }

          .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 5px 0;
            display: none;
            z-index: 1000;
            min-width: 100%;
          }

          .dropdown-menu a {
            display: block;
            padding: 3px 10px;
            color: #000;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px!important;
          }

          .dropdown-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
          }

          .dropdown:hover .dropdown-menu {
            display: block;
          }