@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

html {
  margin-top: 0px !important;
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, sans-serif !important;
  /* font-family: Inter, sans-serif !important; */
}

/* header START */
.header-navbar__end {
  justify-content: flex-end;
  display: flex;
  margin-left: auto;
}

.header-navbar__menu > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-navbar .header-navbar__menu .menu-item a {
  color: #003366 !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  grid-gap: 0 8px;
  padding: 16px 30px;
  text-transform: uppercase;
}

.header-navbar__menu > ul > li {
  padding: 0px !important;
  position: relative;
}

header .header-navbar {
  background-color: var(--white-color);
  box-shadow: 0px 4px 10px 0px #0f248c33;
}

.header-navbar .header-navbar__menu {
  margin: 0;
}

.header-navbar
  .header-navbar__menu
  > ul
  > li.active.menu-item-has-children::after {
  transform: rotate(180deg) scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.header-navbar .header-navbar__menu > ul > li.menu-item-has-children::after,
.header-navbar .header-navbar__burger > a {
  color: #e5a559;
}

.header-navbar .header-navbar__start {
  /* padding: 13px 25px; */
  background-color: transparent;
}

/* mobile menu START */
/* mobile menu END */
.header-navbar__burger > a i {
  font-size: 16px;
  display: block;
}

.header-navbar__burger ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}

.header-navbar__burger ul li {
  margin: 0;
}

.header-navbar__burger ul li {
  position: relative;
}

.header-navbar__burger ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.header-navbar__burger ul li.menu-item-has-children::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  content: "\f105";
  color: rgba(7, 36, 86, 0.25);
  font-size: 18px;
  position: absolute;
  right: 0;
  top: 0.2rem;
  transition: transform 0.25s;
}

.header-navbar__burger ul li.menu-item-has-children.active::after {
  transform: rotate(90deg);
}

.header-navbar__burger ul li a {
  color: inherit;
}

.header-navbar__burger ul li ul {
  padding-left: 2rem;
  margin-top: 0.5rem;
  display: none;
}

.header-navbar__burger ul li:focus-within > ul {
  display: block;
}

.header-navbar__burger > ul {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  padding: 1.5rem 2rem;
}

.header-navbar__burger > ul::before:hover {
  color: rgba(7, 36, 86, 0.35);
}

.header-navbar__burger > ul > li {
  padding: 0.25rem 0;
}

.header-navbar__burger > ul > li:not(:last-child) {
  margin-bottom: 0;
}

.header-navbar__burger > ul > li.current-menu-item::before {
  position: absolute;
  top: 0;
  left: -2rem;
  bottom: 0;
  display: block;
  width: 3px;
  content: "";
  background-color: #ffc107;
}

.header-navbar__burger > ul > li.menu-item-has-children::after {
  top: 0.5rem;
}

.header-navbar__burger > ul > li > a {
  font-size: 1.125rem;
}

header.site-header {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 9999;
}

#menu-header {
  z-index: 10;
  padding: 0px;
  top: 40px;
  background: linear-gradient(180deg, #e5a559 0%, rgba(0, 51, 102, 0.4) 100%);
}

#menu-header .menu-item {
  padding: 0px;
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

#menu-header .menu-item a {
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: Noto Sans JP, sans-serif !important;
}

#menu-header .menu-item a.active {
  color: #003366;
  background-color: white;
}

header.site-header .header-navbar__burger {
  display: none;
  align-items: center;
  justify-content: center;
}

header.site-header .header-navbar__burger > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

header.site-header .header-navbar__burger > a .icon-hamburger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 18px;
}

header.site-header .header-navbar__burger > a .icon-hamburger .nth {
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: #e5a559;
  transition: all 0.3s ease;
}

header.site-header .header-navbar__burger > a .icon-hamburger .nth-1 {
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%) rotate(0deg);
}

header.site-header .header-navbar__burger > a .icon-hamburger .nth-2 {
  top: 50%;
  transform: translateY(-50%);
}

header.site-header .header-navbar__burger > a .icon-hamburger .nth-3 {
  bottom: 0;
  top: auto;
  left: 50%;
  transform: translate(-50%, 0%) rotate(0deg);
}

header.site-header .header-navbar__burger > a.active .icon-hamburger .nth-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease;
}

header.site-header .header-navbar__burger > a.active .icon-hamburger .nth-2 {
  opacity: 0;
}

header.site-header .header-navbar__burger > a.active .icon-hamburger .nth-3 {
  bottom: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

#menu-header {
  top: 134px;
}

@media (max-width: 1024px) {
  #menu-header {
    top: 60px;
  }
}

@media (max-width: 1536px) {
  .header-navbar .header-navbar__menu .menu-item a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1024px) {
  header.site-header .header-navbar__burger {
    display: inline-flex;
  }

  .header-navbar .header-navbar__burger > ul > li > a,
  .header-navbar .hp-menu--user-account li a {
    justify-content: center;
  }
}

.header-navbar__menu > ul {
  overflow: hidden;
}

@media only screen and (max-width: 1024px) {
  header.site-header .header-navbar__burger {
    display: inline-flex;
  }

  .header-navbar .header-navbar__burger > ul > li > a {
    justify-content: center;
  }
}

@media only screen and (max-width: 1300px) {
  .header-navbar__burger {
    display: inline-flex !important;
  }

  .header-navbar__menu {
    display: none !important;
  }

  .header-navbar_login {
    display: none;
  }
}

@media screen and (max-width: 1440px) {
  .header-navbar__menu ul li {
    font-size: 18px;
    font-weight: 700;
    padding: 0 20px;
  }
}

@media screen and (max-width: 1220px) {
  .header-navbar__menu ul li {
    font-size: 14px;
    font-weight: 700;
    padding: 0 15px;
  }
}

@media screen and (max-width: 1024px) {
  .header-navbar__menu {
    display: none;
  }
}

.contentInner {
  max-width: 1240px;
  width: 100%;
}

@media screen and (max-width: 1536px) {
  .contentInner {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1440px) {
  .contentInner {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1240px) {
  .contentInner {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 768px) {
  .contentInner {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 390px) {
  .contentInner {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

body {
  margin: 0 !important;
}

.button-header {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #404040;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.button-header:hover {
  color: #faaf3a;
}

.button-header img {
  transition: color 0.3s ease;
}

.button-primary {
  max-height: 42px;
  padding: 10px 16px;
  display: flex;
  gap: 4px;
  border: 1px solid #faaf3a;
  border-radius: 30px;
  background-color: #ffffff;
  color: #faaf3a;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
}
.button-primary:hover {
  background-color: #faaf3a;
  color: #ffffff;
}

.button-secondary {
  max-height: 42px;
  padding: 10px 16px;
  display: flex;
  gap: 4px;
  border: 1px solid #faaf3a;
  border-radius: 30px;
  background-color: #faaf3a;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
}
.button-secondary:hover {
  background-color: #ffffff;
  color: #faaf3a;
}

.custom-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #525252;
  text-decoration: none;
}

.footer-bg {
  position: relative;
  z-index: 1;
}

.footer-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-footer.png");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}

p,
h5,
h6,
h4,
h3,
h2,
h1 {
  margin: 0 !important;
}

.head-bg {
  background-image: url("../images/bg-head.png");
  background-size: cover;
  background-position: center;
}

.head-bg-2 {
  background-image: url("../images/bg-head.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
}

.feedback-bg {
  position: relative;
  z-index: 1;
}

.feedback-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/feedback.png");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: -1;
}

.review-bg {
  background-image: url("../images/review.png");
  background-size: cover;
  background-position: center;
}

.avatar-bg {
  background-image: url("../images/avatar-bg.png");
  background-size: cover;
  background-position: center;
}

.title-feedback-bg {
  background-image: url("../images/title-feedback-bg.png");
  background-size: cover;
  background-position: center;
}

.form-contact-bg {
  background-image: url("../images/bg-form-contact1.png");
  background-size: cover;
  background-position: center;
}

.target-bg {
  position: relative;
  z-index: 1;
}

.target-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-target.png");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.customer-bg {
  position: relative;
  z-index: 1;
}

.customer-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-customer.png");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: -1;
}

.review-bg-detail {
  background-image: url("../images/bg-review.png");
  background-size: cover;
  background-position: center;
}

.service-bg {
  position: relative;
  z-index: 1;
}

.service-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-service.png");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}

.project-spec-bg {
  position: relative;
  z-index: 1;
}

.project-spec-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/special-project-1.png");
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

.project-spec-rota-bg {
  position: relative;
  z-index: 1;
}

.project-spec-rota-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/special-project-1.png");
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
  transform: scaleX(-1);
}

.price-bg-1 {
  background-image: url("../images/bg-price-1.png");
  background-size: cover;
}

.price-bg-2 {
  background-image: url("../images/bg-price-2.png");
  background-size: cover;
}

.price-bg-3 {
  background-image: url("../images/bg-price-3.png");
  background-size: cover;
}

.faq-bg {
  position: relative;
  z-index: 1;
}

.faq-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-faq.png");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: -1;
}

.home-page-about-bg {
  background-image: url("../images/home-page-about-bg.png");
  background-size: cover;
  background-position: center;
}

.home-service-bg {
  position: relative;
  z-index: 1;
}

.home-service-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-home-service.png");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
}

.why-bg-1 {
  background-image: url("../images/home-why-1.png");
  background-size: cover;
  background-position: center;
}

.why-bg-2 {
  background-image: url("../images/home-why-2.png");
  background-size: cover;
  background-position: center;
}
.why-bg-3 {
  background-image: url("../images/home-why-3.png");
  background-size: cover;
  background-position: center;
}

.about-us-1-bg {
  position: relative;
  z-index: 1;
}

.about-us-1-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-about-us-1.png");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
}

.about-us-2-bg {
  background-image: url("../images/bg-about-us-2.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.border-custom {
  border: 1px solid #d4d4d4;
}

/* CSS panigation recruitment */
.pagination-container .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background-color: #ffffff;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-container .page-numbers:hover {
  background-color: #ffffff;
  color: #404040;
}

.pagination-container .page-numbers.current {
  background-color: #faaf3a;
  color: #404040;
}

.pagination-container .page-numbers.prev,
.pagination-container .page-numbers.next {
  width: auto;
  padding: 0 8px;
}

.pagination-container .page-numbers.prev svg,
.pagination-container .page-numbers.next svg {
  width: 20px;
  height: 20px;
}

.pagination-container .page-numbers.dots {
  background: transparent;
}

#form-contact-custom input {
  max-height: 36px;
  max-width: 273px;
  padding: 8px 10px 8px 12px;
  background-color: #ffffff;
  border-radius: 12px;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #e4e7ec;
  box-sizing: border-box;
}

#form-contact-custom textarea {
  max-height: 136px;
  padding: 8px 10px 8px 12px;
  background-color: #ffffff;
  border-radius: 12px;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #e4e7ec;
  box-sizing: border-box;
}

#form-registration input {
  max-height: 36px;
  padding: 8px 10px 8px 12px;
  background-color: #ffffff;
  border-radius: 12px;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #e4e7ec;
  box-sizing: border-box;
}

.border-secondary {
  border: 1px solid #faaf3a;
}

.border-secondary-2 {
  border: 2px solid #faaf3a;
}

.border-secondary-3 {
  border-bottom: 4px solid #faaf3a;
}

.border-secondary-4 {
  border: 1px solid #fff;
}

.category-container,
.logo-container,
.project-container,
.banner-container,
.member-container {
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-container::-webkit-scrollbar {
  display: none;
}

.scroll-arrow {
  width: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.scroll-arrow:hover {
  opacity: 1;
}

.solution-detail {
  width: 100%;
  max-width: 1240px;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 15px;
  border: 1px solid #faaf3a;
  box-shadow: 0px 4px 4px 0px #0000001a;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.border-review {
  border-top: 3px solid #737373;
}

.border-service {
  border-top: 5px solid #faaf3a;
  border-radius: 15px;
}

.btn-faq {
  transition: transform 0.3s ease;
}

.btn-faq.rotate-90 {
  transform: rotate(90deg);
}

.custom-hover {
  background-color: #ffffff;
}
.custom-hover:hover h3 {
  color: #ffffff !important;
}
.custom-hover:hover {
  color: #ffffff !important;
  background: linear-gradient(90deg, #ff782e 41.98%, #faaf3a 58.31%);
}

.button-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #ffffff;
  border-radius: 45px;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid #FFC2C2;
  padding: 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .button-contact {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
}
.button-contact:hover {
  border: 1px solid #FF8585;
}

.blog-item:hover {
  box-shadow: 4px 4px 8px 0px #0000000d;
  cursor: pointer;
  h4 {
    color: #faaf3a;
  }
}

.recruitment-item:hover {
  cursor: pointer;
}

#form-contact-custom input,
#form-contact-custom textarea,
#form-registration input,
#form-registration textarea {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: Montserrat, sans-serif !important;
  color: #333333;
}

/* Styling blog content */
.blog-content {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.blog-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: #333;
}

.blog-content b {
  font-weight: 700;
  color: #333;
}

.blog-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 25px 0 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.blog-content li {
  margin-bottom: 0px;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.blog-content blockquote {
  border-left: 4px solid #faaf3a;
  padding-left: 20px;
  margin-left: 0;
  font-style: italic;
  color: #555;
}

.blog-content .wp-block-image figcaption {
  text-align: center;
  font-size: 14px;
  color: #666;
}

.blog-content .wp-block-quote {
  border-left: 4px solid #faaf3a;
  padding-left: 20px;
}

.blog-content .wp-block-code {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 5px;
}

.blog-content .aligncenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.blog-content .alignleft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: auto;
}
.blog-content .alignright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.gt-current-lang {
  display : none!important;
}