/* UTILITIES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.content {
  padding: 0;
  margin: 0;
}

body {
  padding-top: 90px;
  font-family: "Poppins" sans-serif;
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  body {
    padding-top: 80px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

.container-fluid {
  padding: 0px;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
  display: inline-block;
}

.title-section {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 35px;
  padding: 80px 20px;
  text-align: center;
}
.title-section-custom-title {
  background-color: #ffb21b;
}
@media only screen and (max-width: 767px) {
  .title-section {
    font-size: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .title-section {
    font-size: 25px;
  }
}

.title-pworkspace {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 35px;
  padding: 80px 20px 20px;
  text-align: center;
}
.title-pworkspace-custom-title {
  background-color: #ffb21b;
}
@media only screen and (max-width: 767px) {
  .title-pworkspace {
    font-size: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .title-pworkspace {
    font-size: 25px;
  }
}

.title-item-pwork {
  font-size: x-large;
}

.custom-image-pwork {
  width: 100px;
  object-fit: cover;
}

.title-item {
  font-weight: bold;
  font-size: x-large;
}

.subtitle-pworkspace {
  display: flex;
  justify-content: center;
  font-size: 24px;
}

.button-seemore {
  background-color: #ffb21b;
  color: #ffffff;
  font-size: 26px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
}

.subtitle-section {
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 26px;
  padding: 10px 20px 20px 20px;
  text-align: center;
  margin: 50px 0;
}
@media only screen and (max-width: 767px) {
  .subtitle-section {
    font-size: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .subtitle-section {
    font-size: 18px;
  }
}

.top-desktop-active {
  color: #fcaf17;
  border-bottom: 3px solid #fcaf17;
}

.active:hover {
  color: #000 !important;
  background: #fcaf17 !important;
}

.js-slidein {
  opacity: 0;
  transform: translateY(100px);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.js-slidein-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.slideanim {
  visibility: hidden;
}

.slide {
  /* The name of the animation */
  animation-name: slide;
  -webkit-animation-name: slide;
  /* The duration of the animation */
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  /* Make the element visible */
  visibility: visible;
}

.unslide {
  visibility: visible;
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(60%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(60%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}
@keyframes unslide {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes unslide {
  100% {
    opacity: 1;
  }
}
.top-bar {
  z-index: 10;
  background-color: #ffffff;
  border-bottom: 6px solid #ffb21b;
}
.top-bar .nav {
  width: 100%;
  margin: 0px auto;
  padding: 10px 20px;
}
.top-bar .nav-overlay {
  display: none;
  z-index: 1;
  position: fixed;
  inset: 0 0 0 0;
  background-color: rgba(0, 0, 0, 0.5019607843);
}
.top-bar .nav-desktop {
  display: block;
}
.top-bar .nav-desktop-list {
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
  padding: 0;
}
.top-bar .nav-desktop-list > li {
  display: inherit;
}
.top-bar .nav-desktop-list > li:hover > a {
  color: #ffb21b;
}
.top-bar .nav-desktop-list > li .btn-search {
  border: none;
  background-color: #ffffff;
}
.top-bar .nav-desktop-list > li .btn-search:hover {
  color: #ffb21b;
}
.top-bar .nav-desktop-list > li.menu-item-has-children {
  position: relative;
}
.top-bar .nav-desktop-list > li.menu-item-has-children ul {
  padding: 10px;
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  border-radius: 0.25rem;
  background-color: #fff;
  box-shadow: 0px -2px 20px rgba(0, 0, 0, 0.1215686275);
  -webkit-box-shadow: 0px -2px 20px rgba(0, 0, 0, 0.1215686275);
  -moz-box-shadow: 0px -2px 20px rgba(0, 0, 0, 0.1215686275);
  border-color: #e9ecef;
  padding-top: 20px;
  transform: translateX(-50%);
}
.top-bar .nav-desktop-list > li.menu-item-has-children ul::after {
  content: "";
  top: -9px;
  left: 50%;
  position: absolute;
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  transform: translateX(-50%);
}
.top-bar .nav-desktop-list > li.menu-item-has-children ul li {
  border-radius: 10px;
  align-items: center;
  padding: 0;
  border: 0 !important;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.top-bar .nav-desktop-list > li.menu-item-has-children ul li:hover {
  background-color: #fcaf17;
  color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.top-bar .nav-desktop-list > li.menu-item-has-children ul li a {
  padding: 5px 15px;
  display: flex;
  align-items: center;
}
.top-bar .nav-desktop-list > li.menu-item-has-children ul li a:hover {
  border: 0;
  color: #ffffff;
}
.top-bar .nav-desktop-list > li.menu-item-has-children:hover ul {
  display: block;
}
.top-bar .nav-desktop-list > li .selected-lang-desktop {
  box-shadow: rgba(0, 0, 0, 0.0196078431) 0px 1px 3px 0px, rgba(27, 31, 35, 0.1490196078) 0px 0px 0px 1px;
  border-radius: 5px;
  padding: 0px;
  border: none;
  outline: none;
  background-color: #ffffff;
  padding: 10px;
}
.top-bar .nav-desktop-list > li .selected-lang-desktop:focus {
  outline: none;
}
.top-bar .nav-desktop-list > li i {
  padding: 5px 10px;
}
.top-bar .nav-desktop-list > li:last-child:hover > a {
  color: #ffb21b;
}
.top-bar .nav-desktop-list > li:last-child a:hover:after {
  display: none;
}
.top-bar .nav-desktop-list > li:last-child ul {
  left: auto;
  right: 0;
  transform: translateX(0);
}
.top-bar .nav-desktop-list > li > a {
  padding: 10px 15px 10px 15px;
  flex-shrink: 1;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  display: inline;
  position: relative;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .top-bar .nav-desktop-list > li > a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .top-bar .nav-desktop-list > li > a {
    font-size: 16px;
    padding: 10px;
  }
}
.top-bar .nav-desktop-list > li > a:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  width: 0;
  bottom: -1px;
  background: #ffb21b;
  height: 3px;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.top-bar .nav-desktop-list > li > a:hover {
  color: #fcaf17;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.top-bar .nav-desktop-list > li > a:hover:after, .top-bar .nav-desktop-list > li > a:hover:focus:after, .top-bar .nav-desktop-list > li > a:hover:active:after {
  left: 0;
  right: auto;
  width: 100%;
}
.top-bar .nav-desktop-list > li > a.top-desktop-active:after {
  left: 0;
  right: auto;
  width: 100%;
}
.top-bar .nav-desktop-list-ja > li > a {
  font-weight: 500;
}
.top-bar .nav-desktop-list-ko > li > a {
  font-weight: 600;
}
.top-bar .nav-desktop-verline {
  border-left: solid 2px #000;
  height: 25px;
}
.top-bar .nav-desktop .current_page_item a {
  color: #fcaf17;
  border-bottom: 3px solid #fcaf17;
}
.top-bar .nav-toggle {
  cursor: pointer;
  display: none;
}
.top-bar .nav-toggle .fa-bars {
  font-size: 28px;
}
.top-bar .nav-toggle-close {
  cursor: pointer;
  padding: 10px 15px;
  display: inline-block;
  width: auto;
  font-size: 30px;
  z-index: 5;
}
.top-bar .nav-mobile {
  display: none;
  position: fixed;
  overflow-y: scroll;
  top: 0;
  right: 0;
  bottom: 0;
  width: 430px;
  max-width: 100%;
  background-color: #ffffff;
  transition: tranform linear 0.5s;
}
.top-bar .nav-mobile-list {
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
}
.top-bar .nav-mobile-list li {
  min-height: 36px;
}
.top-bar .nav-mobile-list li .dropdown-menu {
  padding: 10px;
}
.top-bar .nav-mobile-list li .dropdown a {
  padding: 10px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.top-bar .nav-mobile-list li .dropdown a:hover {
  color: #fcaf17;
}
.top-bar .nav-mobile-list li i {
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  padding: 10px 20px;
}
.top-bar .nav-mobile-list li .iconShowChild i {
  transform: rotate(90deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.top-bar .nav-mobile-list li .iconShowChild.collapsed i {
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.top-bar .nav-mobile-list li.menu-item-has-children .nav-mobile-items:hover {
  background-color: #ffffff;
}
.top-bar .nav-mobile-list .search-mobile-icon {
  padding: 10px 10px;
}
.top-bar .nav-mobile-list .selected-lang-mobile {
  box-shadow: rgba(0, 0, 0, 0.0196078431) 0px 1px 3px 0px, rgba(27, 31, 35, 0.1490196078) 0px 0px 0px 1px;
  padding: 10px 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: #ffffff;
}
.top-bar .nav-mobile-list .selected-lang-mobile:focus {
  outline: none;
}
.top-bar .nav-mobile a {
  border-radius: 10px;
  display: block;
  padding: 15px 0 15px 10px;
  font-weight: 400;
}
.top-bar .nav-mobile-verline {
  border-bottom: solid 1px #d6d6d6;
}

.search-wrapper {
  margin: 0 auto;
}
.search-input {
  background: #fff;
  width: 100%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.1215686275);
}
.search-input input {
  height: 55px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1019607843);
}
.search-input .autocom-box {
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}
.search-input .autocom-box li {
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}
.search-input .autocom-box li:hover {
  background: #efefef;
}
.search-input.active input {
  border-radius: 5px 5px 0 0;
}
.search-input.active .autocom-box {
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
}
.search-input.active .autocom-box li {
  display: block;
}
.search-icon {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #fcaf17;
  cursor: pointer;
}

@media screen and (max-width: 1600px) {
  .top-bar .nav-desktop-list {
    gap: 0;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1300px) {
  .top-bar .nav-mobile {
    display: none;
    transition: 0.3s ease;
    z-index: 1049;
  }
  .top-bar .nav-mobile li {
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid #f1f1f1;
  }
  .top-bar .nav-mobile li:last-child {
    border: 0;
  }
  .top-bar .nav-mobile li .btn-search {
    border: none;
    background-color: #ffffff;
  }
  .top-bar .nav-mobile li .btn-flag {
    border: none;
    background-color: #ffffff;
    padding: 10px;
  }
  .top-bar .nav-mobile li a {
    width: 100%;
  }
  .top-bar .nav-mobile li a:hover {
    color: #ffb21b;
    border-bottom: none;
  }
  .top-bar .nav-mobile li ul {
    padding-left: 15px;
  }
  .top-bar .nav-mobile li ul a {
    color: #000000;
  }
  .top-bar .nav-mobile .search-icon:hover {
    background: none;
  }
  .top-bar .nav-mobile .selected-lang-mobile:hover {
    background: none;
  }
}
@media screen and (max-width: 1200px) {
  .top-bar .nav-desktop {
    display: none;
  }
  .top-bar .nav-toggle {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .top-bar .nav {
    width: 100% !important;
    margin: 0px auto;
    padding: 5px 15px;
  }
}
.list-clients {
  gap: 30px;
}
.list-clients-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: 140px;
  max-height: 100%;
  border: 0.5px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) and (orientation: landscape) {
  .list-clients-logo {
    width: calc(50% - 50px);
  }
}
@media only screen and (min-width: 768px) {
  .list-clients-logo {
    width: calc(50% - 50px);
  }
}
@media only screen and (min-width: 992px) {
  .list-clients-logo {
    width: calc(33.3333333333% - 50px);
  }
}
@media only screen and (min-width: 1200px) {
  .list-clients-logo {
    width: calc(25% - 25px);
  }
}
@media only screen and (min-width: 1366px) {
  .list-clients-logo {
    width: calc(25% - 25px);
  }
}
.list-clients-logo > a {
  pointer-events: none;
}
.list-clients-logo-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  display: block;
  padding: 20px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .list-clients-logo-img {
    padding: 32px;
  }
}
.list-clients-logo:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 10px 15px;
  transition: 0.2s;
}

@media screen and (max-width: 600px) {
  .list-clients-logo {
    width: 100%;
    height: 130px;
    max-height: 100%;
  }
}
.tech-list-card {
  padding: 0;
}
.tech-box {
  height: 100%;
}
.tech-box ul li {
  display: flex;
  align-items: center;
}
.tech-box ul li span {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  padding-left: 5px;
}
@media only screen and (max-width: 1600px) {
  .tech-box ul li span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1400px) {
  .tech-box ul li span {
    font-size: 14px;
  }
}
.tech-box-title {
  padding-bottom: 23px;
  border-bottom: 2px solid #000000;
  align-items: center;
}
.tech-box-category-1 {
  font-weight: 600;
  font-size: 22px;
  color: #000000;
}
@media only screen and (max-width: 1400px) {
  .tech-box-category-1 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .tech-box-category-1 {
    width: 50%;
  }
}
.tech-box-category-2 {
  font-weight: 600;
  font-size: 22px;
  color: rgba(255, 178, 27, 0.75);
}
@media only screen and (max-width: 1400px) {
  .tech-box-category-2 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .tech-box-category-2 {
    width: auto;
  }
}
.tech-box-icon {
  display: block;
  align-items: center;
  padding: 10px;
  width: 60px;
  height: 60px;
  max-width: 100%;
  object-fit: scale-down;
}
@media only screen and (max-width: 1400px) {
  .tech-box-list-row {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1400px) {
  .tech-box-list-row li {
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (max-width: 1024px) {
  .tech-box-category-1 {
    font-size: 18px;
    align-self: center;
  }
}
.why-us {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/why-us-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.why-us-title {
  color: #fff;
  padding-top: 60px;
}

.career-text-tag {
  font-weight: bold;
  font-size: 27px;
  color: #ffffff;
}
.career-text-title {
  font-weight: bold;
  font-size: 30px;
  color: #ffb21b;
  text-align: center;
}
.career-text-jobs {
  font-weight: bold;
  font-size: 22px;
  color: #ffffff;
}
.career-text-recruited {
  font-weight: bold;
  color: #ffffff;
}
.career-text-recruited div {
  font-size: 27px;
  padding: 10px 5px;
  border-radius: 50%;
  background-color: #ffb21b;
}
.career-text-recruited span {
  padding: 10px 0 18px 10px;
  font-size: 20px;
}
.career-button {
  background-color: #ffb21b;
}
.career-button button {
  font-weight: 400;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #fff;
  transition: 0.3s;
}
.career-button button:hover {
  background-color: #fff;
  color: #ffb21b;
  transition: 0.3s;
}
.career-button button i {
  padding-top: 3px;
}

.qa-contact-box {
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 18px;
}

.q-and-a {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/qa-bg.png);
}
.q-and-a .sub-title {
  font-size: 36px;
  font-weight: 700;
}

.contact {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/contact-bg.png);
}
.contact .sub-title {
  font-size: 36px;
  font-weight: 700;
}

.btn-view-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 20px;
  gap: 10px;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #fff;
  transition: 0.3s;
}
.btn-view-more:hover {
  background-color: #ffb21b;
  color: #fff;
  transition: 0.3s;
}
.btn-view-more i {
  padding-top: 3px;
}

@media screen and (min-width: 1440px) {
  .line-text {
    padding: 26px 172px 40px !important;
  }
}
/* FOOTER */
.footer {
  background-color: #FFB21B;
  font-weight: 600;
  font-size: 18px;
  border-top: 3px solid #FFB21B;
}
.footer-logo {
  padding: 30px 12px;
}
.footer-logo-custom {
  width: 100px;
  height: 67px;
  object-fit: contain;
}
.footer-address {
  padding: 0px 0px 5px 0px;
}
.footer-phone {
  padding: 10px 0px 5px 0px;
}
.footer-email {
  padding: 5px 0px 30px 0px;
}
.footer-email-link:hover {
  color: #FFB21B;
}
.footer-list-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.footer-list-menu a {
  padding: 5px 0;
  display: block;
}
.footer-list-menu a:hover {
  color: white;
}
@media only screen and (max-width: 767px) {
  .footer-list-menu {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
}
.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.footer-social-icons i {
  font-size: 20px;
}
.footer-social-icons a {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
}
.footer-social-icons a:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.footer-social-icons .fa-facebook-f:hover {
  color: #3B5998;
}
.footer-social-icons .fa-twitter:hover {
  color: #4099FF;
}
.footer-social-icons .fa-linkedin:hover {
  color: #1884BB;
}
.footer-social-icons .fa-instagram:hover {
  color: #DD3F34;
}
.footer-link-page {
  padding: 20px 0px;
}
.footer-copyright {
  padding: 30px 0px;
  font-size: 15px;
}

.banner {
  background-color: #fcaf17;
}
.banner-text {
  font-size: 40px;
  gap: 10px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.banner-text-title {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
}
.banner-text-title-2 {
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 20px;
}
.banner-text-list {
  font-weight: 400;
  color: #ffffff;
  gap: 30px;
}
.banner-text-list-items .items-bullet {
  background: linear-gradient(to top right, #ffffff 50%, #000000 50%);
  background-repeat: no-repeat;
  object-fit: contain;
  transform: rotate(45deg);
}
.banner-left {
  width: 55%;
  position: absolute;
  height: 720px !important;
  z-index: 10;
  background: #FCAE18;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .banner-left {
    width: 100%;
  }
}
.banner-right {
  position: absolute;
  height: 720px;
  right: 0;
  width: 60%;
}
.banner-btn-contactus {
  padding: 10px 20px;
  border: 1px solid;
  background-color: #000000;
  font-size: 22px;
  font-weight: 600;
  color: #ffb21b;
  transition: 0.3s;
}
.banner-btn-contactus:hover {
  background-color: #ffffff;
  color: #ffb21b;
  transition: 0.3s;
}
.banner-home-img {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.banner-home-img img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

@media screen and (min-width: 1300px) {
  .banner-text-list-items .items-bullet {
    width: 18px;
    height: 18px;
    padding: 8px;
    margin: 0 10px;
  }
  .banner-text-list-items span {
    font-size: 20px;
    padding: 5px;
  }
}
@media screen and (max-width: 1300px) {
  .banner-text {
    padding: 30px 20px;
  }
  .banner-text-title {
    font-size: 4vw;
  }
  .banner-text-title-2 {
    font-size: 2.5vw;
  }
  .banner-text-list-items .items-bullet {
    width: 15px;
    height: 15px;
    padding: 8px;
    margin: 0 10px;
  }
  .banner-text-list-items span {
    font-size: 2vw;
    padding: 5px;
  }
  .banner-btn-contactus {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 1023px) {
  .banner-text {
    height: calc(100vh - 7rem);
  }
  .banner-text-title {
    font-size: 5vh;
  }
  .banner-text-title-2 {
    font-size: 3vh;
  }
  .banner-text-list {
    gap: 1.5vh;
  }
  .banner-text-list-items .items-bullet {
    width: 1.5vh;
    height: 1.5vh;
    padding: 1vh;
    margin: 0 5px;
  }
  .banner-text-list-items span {
    font-size: 2.5vh;
    padding: 5px;
  }
  .banner-btn-contactus {
    font-size: 2.5vh;
  }
}
@media screen and (max-width: 768px) {
  .banner-text {
    height: calc(100vh - 7rem);
    gap: 0;
  }
  .banner-text-title {
    font-size: 5vh;
  }
  .banner-text-title-2 {
    font-size: 4vh;
  }
  .banner-text-list {
    gap: 0;
  }
  .banner-text-list-items .items-bullet {
    width: 1.5vh;
    height: 1.5vh;
    padding: 1vh;
    margin: 0 5px;
  }
  .banner-text-list-items span {
    font-size: 4vh;
  }
  .banner-btn-contactus {
    font-size: 2vh;
  }
}
@media screen and (max-width: 540px) {
  .banner {
    padding: 0;
  }
  .banner-text {
    height: calc(100vh - 7rem);
  }
  .banner-text-title {
    font-size: 4vh;
  }
  .banner-text-title-2 {
    font-size: 3vh;
  }
  .banner-text-list {
    gap: 0;
  }
  .banner-text-list-items .items-bullet {
    width: 8px;
    height: 8px;
    padding: 5px;
    margin: 0 5px;
  }
  .banner-text-list-items span {
    font-size: 2vh;
  }
  .banner-btn-contactus {
    font-size: 1.5vh;
  }
}
.list-dev-services {
  width: 100%;
}
@media only screen and (max-width: 768px) and (orientation: portrait) {
  .list-dev-services {
    padding: 0 20px;
  }
}

.card-services {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.card-services .img-top {
  max-width: 100%;
  object-fit: contain;
  padding: 20px 20px;
  border-radius: 10px;
}
@media only screen and (min-width: 1024px) {
  .card-services .img-top {
    height: 250px;
  }
}
.card-services .tag-serv-1 {
  font-weight: bold;
  font-size: 25px;
  color: #ffb21b;
}
.card-services .tag-serv-2 {
  font-weight: bold;
  font-size: 25px;
}
@media only screen and (max-width: 424px) {
  .card-services .tag-serv-2 {
    font-size: 25px !important;
  }
}
.card-services .tag-serv-3 {
  font-weight: bold;
  font-size: 25px;
}
@media only screen and (max-width: 424px) {
  .card-services .tag-serv-3 {
    font-size: 25px !important;
  }
}
.card-services .card-title {
  margin-bottom: 20px;
}

.products-data-analys {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 15px;
}
.products-data-analys .list-product {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.products-data-analys div a {
  font-weight: 400;
  display: inline-block;
  padding: 4px 10px;
  font-size: 16px;
  white-space: nowrap;
  position: relative;
  width: auto;
  border: 1px solid #ffb21b;
  margin: 3px 3px;
  border-radius: 25px;
}
@media only screen and (max-width: 1600px) {
  .products-data-analys div a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 424px) {
  .products-data-analys div a {
    font-size: 16px;
  }
}
.products-data-analys div a:hover {
  background-color: #ffb21b;
  color: #ffffff;
}

.web-dev {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 15px;
}
.web-dev div span {
  font-weight: 400;
  padding: 10px;
  font-size: 18px;
}
@media only screen and (max-width: 1600px) {
  .web-dev div span {
    font-size: 14px;
  }
}
.web-dev div span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
  transform: rotate(45deg);
  margin: 0 10px 0 0;
}
@media only screen and (max-width: 1600px) {
  .web-dev div span::before {
    width: 15px;
    height: 15px;
    background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
    transform: rotate(45deg);
    margin: 0px 10px -1px 0;
  }
}

.mobile-app {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 15px;
}
.mobile-app div span {
  font-weight: 400;
  display: inline-block;
  padding: 10px;
  font-size: 18px;
  padding: 10px;
}
@media only screen and (max-width: 1600px) {
  .mobile-app div span {
    font-size: 14px;
  }
}
.mobile-app div span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
  transform: rotate(45deg);
  margin: 0 10px 0 0;
}
@media only screen and (max-width: 1600px) {
  .mobile-app div span::before {
    width: 15px;
    height: 15px;
    background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
    transform: rotate(45deg);
    margin: 0px 10px -1px 0;
  }
}

.iot-dev {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 15px;
}
.iot-dev div span {
  font-weight: 400;
  padding: 10px;
  display: inline-block;
  font-size: 18px;
}
@media only screen and (max-width: 1600px) {
  .iot-dev div span {
    font-size: 14px;
  }
}
.iot-dev div span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
  transform: rotate(45deg);
  margin: 0 10px 0 0;
}
@media only screen and (max-width: 1600px) {
  .iot-dev div span::before {
    width: 15px;
    height: 15px;
    background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
    transform: rotate(45deg);
    margin: 0px 10px -1px 0;
  }
}

.vr-ar-dev {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 15px;
}
.vr-ar-dev div span {
  font-weight: 400;
  padding: 10px;
  display: inline-block;
  font-size: 18px;
}
@media only screen and (max-width: 1600px) {
  .vr-ar-dev div span {
    font-size: 14px;
  }
}
.vr-ar-dev div span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
  transform: rotate(45deg);
  margin: 0 10px 0 0;
}
@media only screen and (max-width: 1600px) {
  .vr-ar-dev div span::before {
    width: 15px;
    height: 15px;
    background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
    transform: rotate(45deg);
    margin: 0px 10px -1px 0;
  }
}

.digi-trans-sol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 15px;
}
.digi-trans-sol div span {
  font-weight: 400;
  display: inline-block;
  width: 100%;
  padding: 10px;
  font-size: 18px;
}
@media only screen and (max-width: 1600px) {
  .digi-trans-sol div span {
    font-size: 14px;
  }
}
.digi-trans-sol div span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
  transform: rotate(45deg);
  margin: 0 10px 0 0;
}
@media only screen and (max-width: 1600px) {
  .digi-trans-sol div span::before {
    width: 15px;
    height: 15px;
    background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
    transform: rotate(45deg);
    margin: 0px 10px -1px 0;
  }
}

.card-test {
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.card-test:hover .card-test-img {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: 0.3s ease;
}
.card-test:hover .card-test-title {
  color: #ffb21b;
}
.card-test-img {
  padding: 10px 0;
  width: 100%;
}
.card-test-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: 224px;
  width: 277px;
  object-fit: contain;
  margin: auto;
}
.card-test-title {
  font-weight: 600;
  font-size: 25px;
  padding-top: 40px;
  text-align: center;
}

.banner-services-text {
  height: 100%;
  gap: 20px;
  padding: 20px 30px 30px 30px;
  background-color: #ffb21b;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  background-image: url(../images/ai-data/symbol-left.png);
  background-repeat: no-repeat;
  background-origin: border-box;
  background-size: contain;
}
.banner-services-title {
  font-size: 45px;
  font-weight: bold;
  color: #000000;
  padding: 0 !important;
}
.banner-services-subtitle {
  font-size: 35px;
  font-weight: bold;
  color: #ffffff;
}
.banner-services-button a {
  padding: 10px 20px;
  border: 1px solid;
  background-color: #000000;
  font-size: 22px;
  font-weight: 600;
  color: #ffb21b;
  transition: 0.3s;
}
.banner-services-button a:hover {
  background-color: #fff;
  color: #ffb21b;
  transition: 0.3s;
}
.banner-services-img {
  background-color: #ffffff;
  background-image: url(../images/ai-data/symbol-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: right;
  position: relative;
}
.banner-services-img img {
  object-fit: cover;
  z-index: 2;
}

@media only screen and (min-width: 1025px) {
  .banner-services-img img {
    margin-left: -90px;
  }
}
@media screen and (max-width: 1439px) {
  .banner-services-text {
    padding: 20px 30px 40px 30px;
  }
  .banner-services-title {
    font-size: 34px;
    padding: 0;
  }
  .banner-services-subtitle {
    font-size: 28px;
    padding: 0;
  }
  .banner-services-button {
    padding: 0;
  }
  .banner-services-button button {
    font-size: 20px;
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .banner-services-text {
    padding: 0 30px 40px 30px;
    clip-path: none;
    height: calc(100vh - 7rem);
  }
  .banner-services-title {
    font-size: 7vh;
    padding: 0;
  }
  .banner-services-subtitle {
    font-size: 7vh;
    padding: 0;
  }
  .banner-services-button {
    padding: 0;
  }
  .banner-services-button button {
    padding: 1vh 2vh;
    font-size: 3vh;
  }
}
@media only screen and (max-width: 768px) {
  .banner-services-text {
    padding: 20px 30px 35px 30px;
    height: calc(100vh - 7rem);
    background-size: contain;
  }
  .banner-services-title {
    font-size: 6vh;
    padding: 0;
  }
  .banner-services-subtitle {
    font-size: 5vh;
    padding: 0;
  }
  .banner-services-button {
    padding: 0;
  }
  .banner-services-button button {
    padding: 10px 25px;
    font-size: 3vh;
  }
}
@media screen and (max-width: 480px) {
  .banner-services-text {
    padding: 10px 20px 40px 20px;
    height: calc(100vh - 7rem) !important;
    max-height: 100%;
    background-size: 100%;
    background-position: center;
  }
  .banner-services-title {
    font-size: 6vh;
  }
  .banner-services-subtitle {
    font-size: 5vh;
  }
  .banner-services-button button {
    padding: 1vh 2vh;
    font-size: 2vh;
  }
}
.main-dev-services .iot-strength {
  display: none;
  padding: 1rem;
}
.main-dev-services .vr-ar-strength {
  display: none;
  padding: 1rem;
}
.main-dev-services .vr-ar-strength-title {
  font-weight: 600;
  font-size: 26px;
  background-color: transparent;
  border: 2rem solid #ffb21b;
  border-bottom: 1px solid #ffb21b;
  width: 100%;
  height: 50vw;
  border-radius: 50vw 50vw 0 0;
  padding: 5rem 2rem;
  text-align: center;
}
.main-dev-services .vr-ar-strength-list-inner {
  display: inline-block;
  position: relative;
  background-color: #ffb21b;
  width: 100%;
  height: 75vw;
  clip-path: polygon(50% 0%, 100% 40%, 82% 100%, 18% 100%, 0 40%);
  -webkit-clip-path: polygon(50% 0%, 100% 40%, 82% 100%, 18% 100%, 0 40%);
  box-sizing: border-box;
}
.main-dev-services .vr-ar-strength-list-inner-text {
  position: absolute;
  top: 2px; /* equal to border thickness */
  left: 2px; /* equal to border thickness */
  right: 2px;
  bottom: 2px;
  font-weight: 400;
  font-size: 20px;
  font-weight: 400;
  padding: 3rem 3rem 0rem;
  -webkit-clip-path: polygon(50% 0%, 100% 40%, 82% 100%, 18% 100%, 0 40%);
  clip-path: polygon(50% 0%, 100% 40%, 82% 100%, 18% 100%, 0 40%);
  background-color: #efefef;
}
.main-dev-services .mobile-strength {
  gap: 50px;
}
.main-dev-services .mobile-strength-items {
  padding: 20px;
  margin: 30px;
  background-color: transparent;
}
.main-dev-services .mobile-strength-items-title {
  font-weight: 400;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 0 50px 0 50px;
  width: 250px;
  height: 250px;
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  background-color: #ffb21b;
  box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.25);
  z-index: 2;
  top: 0;
  left: 0;
}
.main-dev-services .mobile-strength-items-bg {
  width: 250px;
  height: 250px;
  max-width: 100%;
  max-height: 100%;
  border-radius: 70px 70px 30px 70px;
  background-color: #efefef;
  z-index: 0;
  top: 10px;
  left: 10px;
}
.main-dev-services .feature {
  padding: 0 50px;
}
.main-dev-services .feature-card {
  width: 100%;
  background-color: #fbfbfb;
  padding: 1.25rem;
  border-radius: 1.25rem;
}
.main-dev-services .feature-card .img-wrapper {
  border-radius: 1.25rem;
  border: 1px solid #ffb21b;
}
.main-dev-services .feature-card .img-wrapper img {
  width: 100%;
  height: 350px;
  max-height: 400px;
  object-position: top;
  margin: 0;
  align-items: center;
  object-fit: cover;
  border-radius: 1.25rem;
}
.main-dev-services .feature-card-title {
  font-weight: bold;
  font-size: 1.375rem;
  font-weight: bold;
  padding: 2rem 0 0 0;
}
.main-dev-services .feature-card-subtitle {
  font-weight: 600;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 1rem 0 0 0;
}
.main-dev-services .feature-card-list {
  padding: 2rem 0 0 0;
  font-size: 1.1rem;
  font-weight: 400;
}
.main-dev-services .feature-card-list-items {
  flex-direction: column;
  margin: 0 auto;
  padding: 10px;
  gap: 13px;
}
.main-dev-services .feature-card-list-items .items-img img {
  object-fit: contain;
}
.main-dev-services .feature-card-list .items-bullet {
  position: relative;
  background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
  background-repeat: no-repeat;
  object-fit: contain;
  transform: rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  padding: 7px;
  margin: 10px;
}
.main-dev-services .feature-card-list span {
  vertical-align: middle;
}
.main-dev-services .feature-card-list p {
  margin: 0;
}
.main-dev-services .feature-card-list > ul {
  font-size: 20px;
  line-height: 35px;
}
.main-dev-services .feature-card-list > ul > li {
  position: relative;
}
.main-dev-services .feature-card-list > ul > li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -25px;
  background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
  background-repeat: no-repeat;
  object-fit: contain;
  transform: rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  padding: 7px;
}
.main-dev-services .feature-card-list > ul > li > ul li {
  list-style: decimal;
  display: list-item;
}
.main-dev-services-title {
  color: #ffffff;
  background-color: rgba(255, 178, 27, 0.7);
}
.main-dev-services-img {
  object-fit: contain;
}
.main-dev-services-img img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.main-dev-services-img .bg-paracel {
  margin-top: -10px;
}
.main-dev-services .bg {
  background-image: url(../images/Paracel.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position-y: center;
  background-position-x: center;
}

.top-right-corner::before {
  content: "";
  background-image: url(../images/ai-data/border-top-right-card.png);
  background-size: 100%;
  position: absolute;
  background-repeat: no-repeat;
  top: -1.5rem;
  right: -1.5rem;
  width: 15rem;
  height: 15rem;
  z-index: 1;
}
.bottom-left-corner::after {
  content: "";
  background-image: url(../images/ai-data/border-bottom-left-card.png);
  background-size: 100%;
  position: absolute;
  background-repeat: no-repeat;
  bottom: -2.5rem;
  left: -1.5rem;
  width: 15rem;
  height: 15rem;
  z-index: -1;
}

@media only screen and (max-width: 1440px) {
  .main-dev-services-img img {
    width: 100% !important;
    height: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  .main-dev-services .feature {
    padding: 0 30px !important;
  }
  .main-dev-services .feature-card-list-items {
    width: 100% !important;
  }
  .main-dev-services .feature-card img {
    object-fit: contain;
    height: 100%;
  }
}
@media only screen and (max-width: 425px) {
  .top-right-corner::before {
    top: -1.5rem;
    right: -1.5rem;
    width: 15rem;
    height: 15rem;
  }
  .bottom-left-corner::after {
    bottom: -2.5rem;
    left: -1.5rem;
    width: 15rem;
    height: 15rem;
  }
  .vr-ar-strength {
    display: block !important;
  }
}
.main-test-services-title {
  color: #ffffff;
  background-color: rgba(255, 178, 27, 0.7);
}
.main-test-services .choose-paracel img {
  object-fit: cover;
}
.main-test-services .feature {
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .main-test-services .feature {
    padding: 0 20px;
  }
}
.main-test-services .feature-img {
  padding: 1rem;
  gap: 50px;
}
@media only screen and (max-width: 1199px) {
  .main-test-services .feature-img {
    padding: 0;
    width: 100%;
  }
}
.main-test-services .feature-img img {
  object-fit: cover;
}
.main-test-services .feature-card-inner {
  border-radius: 0.6rem;
  padding: 30px;
  background-image: url(../images/auto-test/bg-text-auto-test.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 100% 100%;
  background-position: center;
}
@media only screen and (max-width: 768px) and (orientation: portrait) {
  .main-test-services .feature-card-inner {
    background: transparent;
    padding: 0;
  }
}
.main-test-services .feature-card-text {
  border-radius: 0.6rem;
  padding: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #fff;
}
.main-test-services .feature-card-text-title {
  font-size: 2.5rem;
  font-weight: bold;
}
@media only screen and (max-width: 1400px) {
  .main-test-services .feature-card-text-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
.main-test-services .feature-card-text-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  padding-bottom: 1.2rem;
}
.main-test-services .feature-card-text-list {
  width: 90%;
  margin: 0 auto;
}
.main-test-services .feature-card-text-list-title {
  font-size: 1.2rem;
  font-weight: 600;
}
@media only screen and (max-width: 1400px) {
  .main-test-services .feature-card-text-list-title {
    font-size: 1rem;
  }
}
.main-test-services .feature-card-text-list-items {
  font-size: 1.2rem;
  font-weight: 400;
}
@media only screen and (max-width: 1400px) {
  .main-test-services .feature-card-text-list-items {
    font-size: 1rem;
  }
}
.main-test-services .feature-card-text-list-items .items-bullet {
  position: relative;
  background: linear-gradient(to top right, #ffb21b 50%, #000000 50%);
  background-repeat: no-repeat;
  object-fit: contain;
  transform: rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  padding: 0.4rem;
  margin: 0.6rem;
}

.top-left::before {
  content: "";
  background-image: url(../images/auto-test/top-left.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  display: block;
}

.bg-gray-blue {
  background-color: #f6fcff;
}

.outsource-test-list {
  justify-content: space-around;
  align-items: center;
}
.outsource-test-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.outsource-test-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 300px;
}
.outsource-test-card i {
  font-size: 70px;
}
.outsource-test-card-body {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.outsource-test-card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.outsource-test-card-title {
  font-size: 35px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .outsource-test-card-title {
    font-size: 22px;
  }
}

.bg-card {
  color: #ffffff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url(../images/auto-test/dedicateted-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.manualtest-img img {
  width: 90%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1023px) {
  .manualtest-img img {
    width: 100%;
  }
}
.manualtest-process-img {
  padding: 0 20px 150px;
}
@media only screen and (max-width: 1199px) {
  .manualtest-process-img {
    padding: 0 20px 50px;
  }
}
.manualtest-process-img img {
  width: 100%;
  object-fit: contain;
}

.autotest {
  padding: 0 10%;
  gap: 20px;
}
@media only screen and (max-width: 1365px) {
  .autotest {
    padding: 0;
  }
}
@media only screen and (max-width: 1365px) {
  .autotest {
    padding: 0;
  }
}
@media only screen and (max-width: 991px) {
  .autotest {
    gap: 0px;
  }
}
.autotest-color:first-child .autotest-type-number, .autotest-color:last-child .autotest-type-number {
  background-color: #ffb21b;
}
.autotest-color:first-child .autotest-type-title::before, .autotest-color:last-child .autotest-type-title::before {
  background-color: #ffb21b;
}
.autotest-color:first-child .autotest-type-title-wrapper::after, .autotest-color:last-child .autotest-type-title-wrapper::after {
  border-top: 121px solid #d4aa00;
}
@media only screen and (max-width: 424px) {
  .autotest-color:first-child .autotest-type-title-wrapper::after, .autotest-color:last-child .autotest-type-title-wrapper::after {
    border-top: 62px solid #d4aa00;
  }
}
.autotest-color:first-child .autotest-type-title-inner::before, .autotest-color:last-child .autotest-type-title-inner::before {
  border-top: 30px solid #d4aa00;
}
.autotest-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.autotest-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.autotest-type {
  justify-content: space-evenly;
}
.autotest-type-text {
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.autotest-type-number {
  font-size: 35px;
  font-weight: bold;
  padding: 20px 30px;
  margin-right: -30px;
  background-color: #000;
  clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1400px) {
  .autotest-type-number {
    width: 162px;
    font-size: 50px;
    padding: 25px 40px;
    margin-right: -50px;
  }
}
@media only screen and (max-width: 1400px) {
  .autotest-type-number {
    width: 161px;
    font-size: 50px;
    padding: 25px 50px;
    margin-right: -50px;
  }
}
@media only screen and (max-width: 424px) {
  .autotest-type-number {
    width: 100px;
    font-size: 25px;
    padding: 15px;
    margin-right: -44px;
    text-align: center;
  }
}
.autotest-type-title {
  line-height: 24px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
  z-index: 2;
}
@media only screen and (min-width: 1400px) {
  .autotest-type-title {
    font-size: 25px;
    padding: 20px 10px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1400px) {
  .autotest-type-title {
    font-size: 20px;
    padding: 20px 10px;
    padding-left: 25px;
  }
}
@media only screen and (max-width: 424px) {
  .autotest-type-title {
    font-size: 18px;
    padding: 8px;
    padding-left: 23px;
  }
}
.autotest-type-title-wrapper {
  position: relative;
  padding: 10px 0 15px;
  border: 0;
  background: transparent;
  font-size: 30px;
}
@media only screen and (min-width: 1400px) {
  .autotest-type-title-wrapper {
    padding: 25px;
    font-size: 32px;
  }
}
@media only screen and (max-width: 1400px) {
  .autotest-type-title-wrapper {
    padding: 20px;
    font-size: 32px;
  }
}
@media only screen and (max-width: 424px) {
  .autotest-type-title-wrapper {
    padding: 10px 15px;
    font-size: 10px;
  }
}
.autotest-type-title-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #a0a0a0;
  transform: skew(15deg);
  z-index: 1;
}
.autotest-type-title-wrapper::after {
  content: "";
  position: absolute;
  left: 21px;
  top: -30px;
  width: 132px;
  height: 30%;
  border-left: 20px solid transparent;
  border-right: 101px solid transparent;
  border-top: 121px solid #000;
  transform: rotate(252deg);
  z-index: 0;
}
@media only screen and (min-width: 1400px) {
  .autotest-type-title-wrapper::after {
    left: 21px;
    top: -30px;
    width: 132px;
    height: 30%;
    border-left: 20px solid transparent;
    border-right: 101px solid transparent;
    border-top: 121px solid #000;
    transform: rotate(252deg);
  }
}
@media only screen and (max-width: 1400px) {
  .autotest-type-title-wrapper::after {
    left: 21px;
    top: -36px;
    width: 132px;
    height: 30%;
    border-left: 20px solid transparent;
    border-right: 101px solid transparent;
    border-top: 121px solid #000;
    transform: rotate(252deg);
  }
}
@media only screen and (max-width: 424px) {
  .autotest-type-title-wrapper::after {
    left: 24px;
    top: -20px;
    width: 72px;
    height: 30%;
    border-left: 9px solid transparent;
    border-right: 49px solid transparent;
    border-top: 62px solid #000;
    transform: rotate(250deg);
  }
}
.autotest-type-title-inner {
  position: relative;
}
.autotest-type-title-inner::before {
  content: "";
  position: absolute;
  right: 37px;
  top: -10px;
  width: 40%;
  height: 30%;
  border-left: 15px solid transparent;
  border-right: 89px solid transparent;
  border-top: 20px solid #000;
  transform: rotate(157deg);
}
@media only screen and (min-width: 1400px) {
  .autotest-type-title-inner::before {
    right: 51px;
    top: -89px;
    width: 176px;
    height: 106px;
    border-left: 13px solid transparent;
    border-right: 89px solid transparent;
    border-top: 30px solid #000;
    transform: rotate(152deg);
  }
}
@media only screen and (max-width: 1400px) {
  .autotest-type-title-inner::before {
    right: 47px;
    top: -78px;
    width: 176px;
    height: 106px;
    border-left: 13px solid transparent;
    border-right: 89px solid transparent;
    border-top: 30px solid #000;
    transform: rotate(152deg);
  }
}
@media only screen and (max-width: 424px) {
  .autotest-type-title-inner::before {
    right: 53px;
    top: -72px;
    width: 100px;
    height: 82px;
    border-left: 13px solid transparent;
    border-right: 89px solid transparent;
    border-top: 30px solid #000;
    transform: rotate(166deg);
  }
}
.autotest-type-title::before {
  content: "";
  clip-path: polygon(0 0, 82% 21%, 100% 100%, 14% 100%);
  width: 38px;
  height: 28px;
  top: -18px;
  right: 20px;
  background-color: #000;
  position: absolute;
}
@media only screen and (min-width: 1400px) {
  .autotest-type-title::before {
    width: 44px;
    height: 40px;
    top: -40px;
    right: 18px;
  }
}
@media only screen and (max-width: 1400px) {
  .autotest-type-title::before {
    top: -35px;
  }
}
@media only screen and (max-width: 424px) {
  .autotest-type-title::before {
    top: -21px;
    right: 27px;
  }
}

.test-solution-list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 0;
}
.test-solution-list::before {
  content: "";
  background-repeat: no-repeat;
  width: 100%;
  height: 50px;
  background-image: url(../images/auto-test/software-test-before.png);
  position: absolute;
  top: 0px;
  left: 0px;
}
.test-solution-list::after {
  content: "";
  background-image: url(../images/auto-test/software-test-after.png);
  background-repeat: no-repeat;
  width: 500px;
  height: 50px;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.test-solution-img.slick-slide {
  display: inline-block;
  vertical-align: middle;
  float: none;
}
.test-solution-img img {
  padding: 3% 0;
  object-fit: contain;
  margin: 0 auto;
  height: 600px;
}
@media only screen and (max-width: 767px) {
  .test-solution-img img {
    width: 100%;
  }
}
@media only screen and (max-width: 424px) {
  .test-solution-img img {
    padding: 30px 0;
  }
}

.test-consulting-service {
  justify-content: center;
  padding: 0 5%;
}
.test-consulting-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f1f1f1;
  transition: 0.3s ease-in-out;
  position: relative;
}
.test-consulting-card:hover {
  background-color: #000000;
  color: #ffffff;
  transition: 0.3s ease-in-out;
}
.test-consulting-card:hover .test-consulting-wrapper-1::before {
  background-image: url(../images/auto-test/top-left-consulting.svg);
}
.test-consulting-card:hover .test-consulting-wrapper-1::after {
  background-image: url(../images/auto-test/top-right-consulting.svg);
}
.test-consulting-card:hover .test-consulting-wrapper-2::before {
  background-image: url(../images/auto-test/bottom-left-consulting.svg);
}
.test-consulting-card:hover .test-consulting-wrapper-2::after {
  background-image: url(../images/auto-test/bottom-right-consulting.svg);
}
.test-consulting-topcard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.test-consulting-img {
  width: 70px;
  height: 70px;
  background-image: url(../images/auto-test/circle-consulting-img.svg);
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
}
.test-consulting-title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.test-consulting-content {
  font-size: 16px;
  font-weight: 600;
  text-align: justify;
  text-align: center;
  display: block;
}
.test-consulting-wrapper-1::before {
  position: absolute;
  width: 100px;
  height: 128px;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../images/auto-test/top-left-consulting-black.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .test-consulting-wrapper-1::before {
    left: 0px;
    top: 0;
  }
}
.test-consulting-wrapper-1::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 128px;
  top: 0;
  right: 0;
  background-image: url(../images/auto-test/top-right-consulting-black.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .test-consulting-wrapper-1::after {
    right: 0px;
    top: 0;
  }
}
.test-consulting-wrapper-2::before {
  position: absolute;
  width: 100px;
  height: 123px;
  bottom: 0;
  left: 0;
  content: "";
  background-image: url(../images/auto-test/bottom-left-consulting-black.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .test-consulting-wrapper-2::before {
    left: 0px;
    bottom: 0;
  }
}
.test-consulting-wrapper-2::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 123px;
  bottom: 0;
  right: 0;
  background-image: url(../images/auto-test/bottom-right-consulting-black.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .test-consulting-wrapper-2::after {
    right: 0px;
    bottom: 0;
  }
}
.test-consulting-inner {
  width: 100%;
  height: 100%;
  padding: 60px 20px;
}
.test-consulting-inner::before {
  position: absolute;
  width: 40px;
  height: 25px;
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
}
.test-consulting-inner::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 25px;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  background-repeat: no-repeat;
  background-size: cover;
}

.circle-consulting:nth-child(1) .test-consulting-img {
  background-image: url(../images/auto-test/circle-consulting-right.png);
}
.circle-consulting:nth-child(2) .test-consulting-img {
  background-image: url(../images/auto-test/circle-consulting-bottom.png);
}
.circle-consulting:nth-child(3) .test-consulting-img {
  background-image: url(../images/auto-test/circle-consulting-left.png);
}
.circle-consulting:nth-child(4) .test-consulting-img {
  background-image: url(../images/auto-test/circle-consulting-top.png);
}
.circle-consulting:nth-child(5) .test-consulting-img {
  background-image: url(../images/auto-test/circle-consulting-right.png);
}
.circle-consulting:nth-child(6) .test-consulting-img {
  background-image: url(../images/auto-test/circle-consulting-bottom.png);
}

.process-item {
  background-color: #ffb21b;
  color: #ffffff;
  display: flex;
  min-height: 215px;
  position: relative;
}
@media only screen and (max-width: 1400px) {
  .process-item {
    min-height: 200px;
  }
}
.process-column {
  width: 33.3333333333%;
}
@media only screen and (min-width: 1366px) {
  .process-column {
    width: 50%;
  }
}
@media only screen and (min-width: 1600px) {
  .process-column {
    width: 33.3333333333%;
  }
}
@media only screen and (max-width: 1199px) {
  .process-column {
    width: 50%;
  }
}
@media only screen and (max-width: 1023px) {
  .process-column {
    width: 100%;
    margin-bottom: 30px;
  }
}
.process-column:first-child .process-number {
  background-color: #ffffff;
  color: #ffb21b;
}
.process-column:first-child .process-number-overlay {
  background-color: #000000;
}
.process-number {
  background: #000000;
  color: #ffffff;
  font-weight: bold;
  font-size: 40px;
  width: 100px;
  clip-path: polygon(0 0, 0 100%, 85px 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
  position: relative;
  margin-left: -1px;
}
.process-number-overlay {
  background: #ffffff;
  color: #ffffff;
  font-weight: bold;
  width: 95px;
  clip-path: polygon(0 20px, 0 100%, 90px 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
  position: absolute;
  inset: 0;
}
.process-content {
  padding: 20px 20px 20px 35px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.process-content-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1400px) {
  .process-content-title {
    font-size: 18px;
  }
}
.process-content ul {
  list-style-type: disc;
  font-size: 16px;
  padding-left: 20px;
}
@media only screen and (max-width: 1400px) {
  .process-content ul {
    font-size: 14px;
  }
}
.process-content ul li {
  display: list-item;
  list-style: disc;
}
.process-content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.sp-lang-list {
  padding: 0 50px;
  gap: 80px;
}
.sp-lang-items {
  width: calc(25% - 65px);
  height: 270px;
  max-width: 100%;
  max-height: 100%;
  background-color: transparent;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1600px) {
  .sp-lang-items {
    height: 185px;
  }
}
.sp-lang-items-inner {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffb21b;
  transform: rotate(15deg);
}
.sp-lang-items-inner span {
  padding: 20px;
  font-weight: 600;
  font-size: 20px;
  line-height: 31px;
  color: #ffffff;
  transform: rotate(-15deg);
}

@media only screen and (max-width: 1024px) {
  .sp-lang-list {
    padding: 0 20px;
  }
  .sp-lang-items {
    width: 205px;
    height: 205px;
    max-width: 100%;
  }
  .sp-lang-items-inner span {
    padding: 20px;
    font-size: 18px;
  }
}
.body-en {
  font-family: "Poppins", sans-serif;
}

.body-ko {
  font-family: "IBM Plex Sans KR", sans-serif;
}

.body-ja {
  font-family: "Noto Sans JP", serif;
}

.bannerPage {
  background-color: #ffffff;
  min-height: 400px;
  overflow: hidden;
  display: flex;
}
@media only screen and (max-width: 1365px) {
  .bannerPage {
    min-height: 370px;
  }
}
@media only screen and (max-width: 1365px) {
  .bannerPage {
    min-height: 370px;
  }
}
.bannerPage-left {
  width: 40%;
  position: relative;
  background-color: #ffb21b;
  padding: 45px 0;
}
@media only screen and (max-width: 1365px) {
  .bannerPage-left {
    clip-path: none;
    width: 100%;
  }
}
@media only screen and (max-width: 1365px) {
  .bannerPage-left {
    clip-path: none;
    width: 100%;
  }
}
.bannerPage-right {
  width: 60%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffb21b;
  height: 400px;
}
@media only screen and (max-width: 1365px) {
  .bannerPage-right {
    display: none;
  }
}
@media only screen and (max-width: 1365px) {
  .bannerPage-right {
    display: none;
  }
}
.bannerPage-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  padding-right: 105px;
}
@media only screen and (max-width: 1365px) {
  .bannerPage-text {
    padding: 15px;
  }
}
@media only screen and (max-width: 1365px) {
  .bannerPage-text {
    padding: 15px;
  }
}
.bannerPage-subTitle {
  color: #ffffff;
  font-weight: normal;
  font-size: 18px;
}
@media only screen and (min-width: 1366px) {
  .bannerPage-subTitle {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .bannerPage-subTitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1365px) {
  .bannerPage-subTitle {
    font-size: 16px;
    text-align: center;
  }
}
@media only screen and (max-width: 1365px) {
  .bannerPage-subTitle {
    font-size: 16px;
    text-align: center;
  }
}
.bannerPage-title {
  font-size: 40px;
  color: #000000;
  font-weight: bold;
  margin-top: 20px;
  line-height: 50px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1366px) {
  .bannerPage-title {
    font-size: 26px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 1400px) {
  .bannerPage-title {
    font-size: 30px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 1600px) {
  .bannerPage-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1365px) {
  .bannerPage-title {
    font-size: 30px;
    text-align: center;
  }
}
@media only screen and (max-width: 1365px) {
  .bannerPage-title {
    font-size: 30px;
    text-align: center;
  }
}
.bannerPage-button {
  margin-top: 30px;
}
@media only screen and (max-width: 1365px) {
  .bannerPage-button {
    text-align: center;
    display: block;
  }
}
@media only screen and (max-width: 1365px) {
  .bannerPage-button {
    text-align: center;
    display: block;
  }
}
.bannerPage-button a {
  padding: 10px 20px;
  border: 1px solid;
  background-color: #000000;
  font-size: 22px;
  font-weight: 600;
  color: #ffb21b;
  transition: 0.3s;
  display: inline-block;
  width: auto;
}
.bannerPage-button a:hover {
  background-color: #fff;
  color: #ffb21b;
  transition: 0.3s;
}
.bannerPage-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  margin: auto 0;
  clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%);
  background: #fff;
}

.title-page {
  font-size: 55px;
  color: #303234;
  padding: 80px 0;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (max-width: 1365px) {
  .title-page {
    font-size: 35px;
    padding: 40px 0;
  }
}
@media only screen and (max-width: 1365px) {
  .title-page {
    font-size: 35px;
    padding: 40px 0;
  }
}

.nav-pagination .page-item .page-link {
  margin: 4px;
  border: 0;
  background: #d6d6d6;
  color: #000000;
  outline: none;
  box-shadow: none;
  border-radius: 4px;
  min-width: 40px;
  text-align: center;
  font-size: 18px;
}
.nav-pagination .page-item.active:hover {
  background: transparent !important;
}
.nav-pagination .page-item.active .page-link {
  background: #ffb21b;
  color: #000000;
}
.nav-pagination .page-item:hover .page-link {
  background: #ffb21b;
  color: #000000;
}

.slick-track {
  height: 100%;
}
.slick-next {
  right: 50px;
}
@media only screen and (max-width: 1023px) {
  .slick-next {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .slick-next {
    display: none !important;
  }
}
.slick-next::before {
  font-size: 40px;
  color: #ffb21b;
}
.slick-prev {
  left: 30px;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .slick-prev {
    left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .slick-prev {
    display: none !important;
  }
}
.slick-prev::before {
  font-size: 40px;
  color: #ffb21b;
}

.section {
  padding-bottom: 10%;
}

.swal2-popup .swal2-title {
  line-height: 45px;
}

/*# sourceMappingURL=style.css.map */
