:root {
  --primary-color: #2b398b;
  --secondary-color: #ee3129;
  --black: #000;
  --white: #fff;
  --gray: #171b1e;
  --orange: #ec4700;
  --yellow: #ffd821;
  --red: var(--secondary-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

@font-face {
  font-family: "m-Bold";
  src: url("../fonts/Montserrat-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "m-Black";
  src: url("../fonts/Montserrat-Black.ttf");
  font-display: swap;
}

@font-face {
  font-family: "m-Medium";
  src: url("../fonts/Montserrat-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "m-Regular";
  src: url("../fonts/Montserrat-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "m-SemiBold";
  src: url("../fonts/Montserrat-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "m-LightItalic";
  src: url("../fonts/Montserrat-LightItalic.ttf");
  font-display: swap;
}

.message {
  line-height: 1.7;
  position: fixed;
  top: 40%;
  left: 50%;
  width: 90%;
  height: auto;
  padding: 25px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  z-index: 99999;
  transform: translate(-52%, -50%);
  border-radius: 5px;
  display: none;
  box-shadow: 0 10px 50px 0px rgb(0 0 0 / 50%);
}

.success {
  background: #fff;
  color: green;
}

.message.error {
  background: #f15e5e;
}

.close {
  position: absolute;
  top: -15px;
  right: -17px;
  border-radius: 100px;
  background: #f0f0f0;
  color: #000;
  padding: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.message.active,
.overlay.active {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.align-items-stretch {
  align-items: stretch;
}

.effect-hover-overlay {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.effect-hover-overlay:after {
  position: absolute;
  content: "";
  display: block;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease-in-out;
}

.effect-hover-overlay:hover:after {
  opacity: 1;
  visibility: visible;
}

figure.aligncenter {
  text-align: center;
  margin: 8px auto;
  font-style: italic;
}

.primary-color {
  color: var(--primary-color);
}

.position-absolute {
  position: absolute !important;
}

label {
  display: block;
  font-weight: 400;
}

ul {
  margin: 10px 0px;
  padding-left: 20px;
}

footer.footer li,
header.header li {
  list-style: none;
}

footer.footer ul {
  margin-bottom: 0px;
  margin: 0;
  padding-left: 0px;
}

body {
  font-family: "m-Regular";
  font-size: 14px;
  line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  font-family: "m-SemiBold";
  line-height: 1.4;
}

a {
  transition: 0.3s;
  text-decoration: none;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
}
.fix-content img {
  width: 100% !important;
}

input,
button,
textarea {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

blockquote {
  color: var(--orange);
}

.addtoany_content {
  clear: both;
  margin: 16px 0 !important;
}

/* config */

a.btn,
button.btn,
button.btn-primary {
  font-family: "m-SemiBold";
  font-size: 14px;
  padding: 15px 25px;
  border-radius: 5px;
  color: var(--black);
  background: var(--primary-color);
  transition: 0.3s ease-out;
  cursor: pointer;
  border: 1px solid var(--primary-color);
  outline: none;
}

a.btn:hover,
button.btn:hover,
button.btn-primary:hover {
  color: var(--white);
  background: var(--gray);
  border-color: var(--gray);
}

p {
  line-height: 1.4;
  margin-bottom: 9px;
}

/* =============== card featured============== */

.card-featured {
  width: 100%;
  height: 40px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  z-index: 999;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-featured > .d-flex {
  justify-content: space-between;
  align-items: center;
}

.card-featured .phone-mail {
  display: flex;
  align-items: center;
}

.card-featured .phone-mail a {
  display: block;
  color: #fff;
}

.card-featured .phone-mail a:first-child {
  margin-right: 35px;
}

.card-featured .phone-mail a i {
  padding-right: 5px;
}

.social,
.social ul,
.social ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.social ul li a {
  padding: 0 10px;
}

.social ul li a svg {
  height: 16px;
  color: #fff;
  fill: #fff;
  transition: 0.3s;
}

section#banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

section#banner h1 {
  font-family: "m-SemiBold";
  font-size: 37px;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-weight: lighter;
  color: var(--secondary-color);
}

section#banner h2 {
  font-family: "m-SemiBold";
  font-size: 30px;
  color: var(--primary-color);
}

section#banner p {
  line-height: 1.7;
  font-size: 30px;
}

section#banner a {
  display: block;
  width: fit-content;
  padding: 15px 30px 12px;
  background: #fff;
  color: var(--secondary-color);
  border-radius: 5px;
  font-family: "m-SemiBold";
  text-transform: uppercase;
  transition: 0.5s;
  margin-top: 20px;
  font-size: 15px;
  border: 1px solid var(--secondary-color);
}

section#banner a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/*=============service==================*/

section#service {
  position: relative;
}

/* =============== evaluate ============== */

section#home_evaluate {
  padding: 35px 0px 100px 0px;
  position: relative;
  background-color: #eceef0;
  background-image: url("../images/back-danh-gia.png.webp");
  --e-bg-lazyload: url("../images/back-danh-gia.png.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*=============intro==================*/

#intro {
  background-color: #f6f9ff;
}

section#intro > .d-flex {
  align-items: center;
  justify-content: space-between;
}

#intro .container li:first-child {
  width: 50%;
  margin-right: 15px;
}

#intro .container li:first-child h2 {
  font-size: 30px;
  color: var(--primary-color);
  margin: 0 0 10px 0;
}

#intro .container li:first-child p {
  text-align: justify;
}

#intro .container li:first-child a {
  padding: 13px 35px 10px;
  text-transform: uppercase;
  border-radius: 100px;
  background-color: var(--primary-color);
  color: var(--white);
  display: block;
  width: fit-content;
  margin-top: 12px;
}

#intro .container li:first-child a:hover {
  color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 1px 1px 10px #00000040;
}

/*=============youhavebut==================*/

#youhavebut {
  padding: 30px 0;
  text-align: center;
}

#youhavebut h2 {
  font-size: 24px;
  color: var(--primary-color);
  font-family: "m-Medium";
  font-weight: lighter;
}

#youhavebut .wrap__item {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  font-family: "m-SemiBold";
}

#youhavebut .wrap__item h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--primary-color);
}

#youhavebut .wrap__item p {
  color: #676767;
}

#youhavebut .item:nth-of-type(1),
#youhavebut .item:nth-of-type(2) {
  margin-bottom: 45px;
}

#youhavebut .item {
  width: 50%;
}

#youhavebut .item .item__image {
  height: 127px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*================imediahelp====================*/

#imediahelp,
#whyneed {
  font-family: "m-Medium";
  font-size: 14px;
  color: var(--primary-color);
}

#imediahelp .container,
#whyneed .container {
  justify-content: space-around;
  align-items: center;
}

#imediahelp li.widget,
#whyneed li.widget {
  width: 50%;
}

#imediahelp .container h2,
#whyneed .container li h2 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-family: "m-Medium";
  font-weight: lighter;
}

#imediahelp .container li p,
#whyneed .container li p {
  font-size: 18px;
  margin-bottom: 25px;
}

#imediahelp .container li p i,
#whyneed .container li p i {
  color: #4900dd;
  padding-right: 25px;
  font-size: 20px;
}

section#imediahelp #animation1 svg,
section#whyneed #animation2 svg {
  width: auto !important;
  height: auto !important;
}

section#imediahelp #animation1 {
  width: 100%;
  height: 543.5px;
}

section#news {
  padding: 100px 0;
}

/*================whyneed====================*/

section#whyneed .container li.widget div.textwidget {
  width: 75%;
  margin: 0 auto;
}

section#whyneed #animation2 {
  width: 100%;
  height: 510.3px;
}

/*====================members=========================*/

section#members {
  padding: 50px 0 70px 0;
  background-image: url("../images/banner/parallax.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

h3.showMembers__Title {
  position: relative;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 18px;
  letter-spacing: 2px;
}

h3.showMembers__Title::after {
  position: absolute;
  content: "";
  display: block;
  width: 25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 1px;
  background: #bbacac;
  bottom: 0;
}

div#member {
  margin-top: 30px;
}

div.member__child {
  text-align: center;
}

/*===========customer===========*/

#customers {
  background: #f4f5f7;
  padding: 35px 0 40px;
}

.showKhach {
  text-align: center;
  font-family: "m-SemiBold";
}

.showKhach h3 {
  font-size: 30px;
  color: var(--primary-color);
  padding-bottom: 15px;
}

.showKhach .meta {
  font-size: 14px;
  margin-bottom: 30px;
}

.showKhach .meta p {
  margin: 0;
  color: #676767;
}

#doitac {
  align-items: center;
  margin-right: -30px;
}

.itemdoitac {
  /*padding: 25px 0;*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% / 5) - 30px);
  border: 1px solid var(--white);
  background-color: var(--white);
  margin-right: 30px;
  margin-bottom: 30px;
  min-height: 120px;
  border-radius: 15px;
  overflow: hidden;
  min-height: 140px;
}

/*============footer==============*/

.footer {
  background-color: #ebb900;
  /*padding: 40px 0;*/
  position: relative;
  overflow: hidden;
}

.footer ul,
.footer li,
section#serviceWrite ul,
section#serviceWrite li,
.child-cat ul,
.child-cat li,
section.post-box ul,
section.post-box li,
.card-featured ul,
.card-featured li {
  list-style-type: none;
}

.card-featured ul {
  margin: 00px 0px !important;
  padding-left: 0px !important;
}

.child-cat ul section.post-box ul {
  margin: 00px 0px !important;
  padding-left: 0px !important;
}

.footer .container div {
  align-items: center;
  justify-content: space-between;
}
.service_and_localtion {
  align-items: flex-start !important;
}

.footer .container li .textwidget {
  text-align: center;
}

.footer .container li .textwidget h2 {
  font-size: 26px;
  color: var(--primary-color);
  font-family: "m-Medium";
  font-weight: lighter;
}

.footer .container li .textwidget p {
  margin-bottom: 45px;
}

section.footer .textwidget a {
  padding: 15px 47px;
  border-radius: 100px;
  background: var(--white);
  font-family: "m-SemiBold";
  font-size: 22px;
  color: var(--primary-color);
  display: block;
  width: fit-content;
  margin: 0 auto;
  margin-top: 30px;
}

section.footer .textwidget a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 0 10px #000000b3;
}

.footer input,
.footer textarea {
  background-color: transparent;
  border: 1px solid #000;
  min-height: 45px;
  border-radius: 5px;
  box-shadow: none !important;
  color: #000;
  font-size: 16px;
}

.footer textarea {
  min-height: 120px;
}

.footer input::placeholder,
.footer textarea::placeholder {
  color: #000;
}

.footer input.wpcf7-submit {
  background-color: var(--primary-color);
  border: 0;
  color: #fff;
  padding: 5px 30px;
  border-radius: 99px;
  font-size: 16px;
  text-transform: none;
  font-weight: 500;
}

/* ============= end index ================= */

section#slideshow {
  padding: 100px 0;
  /* background: transparent linear-gradient(72deg, #1564C0 0%, #3391FF 100%) 0% 0% no-repeat padding-box; */
  background-color: var(--primary-color);
  color: #fff;
}

.et-gallery-button {
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(65, 187, 153, 0.4);
  position: fixed;
  top: 200px;
  text-align: center;
  z-index: 99;
  right: 60px;
  color: #fff;
}

.et-gallery-button span {
  font-size: 13px;
  text-transform: none;
  color: #fff;
  font-family: m-Regular;
  font-weight: 500;
}

.et-gallery-button--large {
  text-transform: uppercase;
  font-size: 19px;
  text-transform: uppercase;
  font-family: m-Medium;
  /* font-weight: 600; */
  padding: 7px 40px 10px;
}

.et-gallery-button--primary {
  background: #7e3bd0;
  color: #ffffff;
}

.et-gallery-button--animated {
  -webkit-animation: divi-button 6s ease infinite;
  animation: divi-button 6s ease infinite;
}

.et-gallery-button--round {
  border-radius: 100px;
}

.owl-carousel {
  position: relative;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
  opacity: 0;
}

.owl-carousel .owl-prev {
  left: 0;
}

.owl-carousel .owl-next {
  right: 0;
}

.owl-carousel:hover .owl-prev,
.owl-carousel:hover .owl-next {
  opacity: 1;
}

.breadcrumb {
  background-color: #fff;
  padding: 10px 0px;
}

.breadcrumb span a {
  font-weight: bold;
  color: #0d6efd;
}

section#home_new {
  padding: 60px 0px 50px 0px;
}

.home_new_title {
  font-size: 30px;
  color: var(--primary-color);
  font-family: "m-SemiBold";
  margin-bottom: 45px;
  text-align: center;
}

.home_new_title h2 {
  margin: 0;
}

.home_new_item {
  width: 31.8%;
  overflow: hidden;
}

.home_new_item:hover .home_new_avata img {
  transform: scale(1.05) rotate(2deg);
  opacity: 0.8;
  transition: 0.4s ease-in-out;
}

.home_new_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home_new_avata {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  height: 230px;
}

.home_new_avata img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s ease-in-out;
}

.new_item_title {
  margin: 10px 0px 10px 0px;
}

.new_item_title a {
  font-size: 20px;
  color: #000000;
  font-family: "m-SemiBold";
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.new_item_exp {
  color: #868686;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home_new_btn {
  text-align: center;
  margin-top: 40px;
}

.home_new_btn a {
  text-align: center;
  color: var(--secondary-color);
  background-color: #00000000;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--secondary-color);
  border-radius: 30px 30px 30px 30px;
  font-size: 15px;
  padding: 15px 30px;
  position: relative;
  display: inline-block;
  line-height: 1;
  font-family: "m-SemiBold";
  transition: 0.3s ease-in-out;
}

.home_new_btn a:hover {
  color: #ffffff;
  background-color: var(--secondary-color);
  transition: 0.3s ease-in-out;
}

.home_slider_item {
  width: 100%;
  height: 550px;
}

.home_slider_item img {
  width: 100%;
  height: 550px;
}

.home_slider_wrap {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9;
}

.home_slider_content {
  color: var(--primary-color);
}

.tuyen_dung_item h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0px;
}

.job-detail__info--deadline {
  display: none;
}

.nopdon {
  color: white;
  font-family: "m-SemiBold";
  /* font-weight: 700; */
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 auto 30px;
}

.single {
  overflow: inherit !important;
}

p.cs {
  line-height: 1.7;
  font-size: 16px !important;
  color: #000 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #46b450;
}

span.wpcf7-spinner {
  display: none;
}

.home_slider_content {
  width: 59%;
}

section#banner p {
  font-size: 30px;
}

section#banner a {
  margin-top: 50px;
}

section#home_partner {
  padding: 25px 0px 40px 0px !important;
}

.showKhach .meta {
  font-size: 14px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.showKhach .meta p {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-family: "m-Regular";
  width: 68%;
}

article.post p {
  margin: 0.5em 0 !important;
}

.author-bio {
  text-align: justify !important;
}

.psv_reason_item {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .form-plan .box_input.box_part {
    width: 100% !important;
  }
  #strategy {
    padding-bottom: 480px !important;
  }
  .home_slider_content {
    width: 100%;
  }
  .avatar__hover--show-infor h4 {
    font-size: 14px !important;
  }
  .service--footer {
    margin-top: 15px;
  }
  .post-category {
    font-size: 22px !important;
    /* color: white; */
  }
  .author {
    display: none;
  }
  .mini-container .h2 {
    font-size: 22px !important;
  }
  .author-info {
    display: block !important;
    text-align: center;
  }
  .avatar {
    margin: 0 auto;
  }
  .author-info .author-bio {
    padding-left: 0px !important;
  }
  .page_service_right {
    display: none;
  }
  section#service_banner {
    padding: 2% 0px;
  }
  .home_new_btn.wow.fadeInUp {
    text-align: center;
  }
  section#psv_slogan {
    padding: 6% 0px !important;
  }
  .psv_reason_icon {
    text-align: center;
  }
  .modal-dialog {
    width: 395px !important;
    height: auto;
  }
  .bang_gia_form button {
    right: -10px !important;
    top: -10px !important;
  }

  .psv_section_item:nth-child(2n) .psv_section_images {
    order: 1 !important;
  }
  .psv_section_item:nth-child(2n) .psv_section_content {
    order: 2 !important;
  }
  p.title {
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .container {
    width: 850px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #mainmenu ul#main-menu {
    font-size: 12px;
  }
}

#services .owl-stage {
  display: flex;
  align-items: center;
}

.showService div#owl-services {
  margin-top: 10px;
}

#services .item-services .img-services img {
  width: auto;
  margin: auto;
  transition: 0.3s ease;
}

#services .itemdoitac .imgdoitac:hover img {
  filter: grayscale(0);
}

.owl2-next {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.owl2-prev {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.img-services {
  width: 100%;
}

.partner_item {
  padding: 0px 10%;
}

section#home_partner {
  padding: 20px 0px 40px 0px;
}

.home_partner_wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.home_partner_title {
  width: 15%;
  font-size: 20px;
  font-family: "m-SemiBold";
  margin: 0px;
}

div#owl-partner {
  width: 85%;
}

.home_slider .owl-dots {
  display: none !important;
}

section#service {
  margin-top: 60px;
}

section#service h2 {
  font-size: 30px;
  line-height: 44px;
  color: var(--primary-color);
  margin: 0px 0px 50px 0px;
}

.service_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 35px;
}

.item-services {
  position: relative;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #ededed;
  width: 31.4%;
}

.item-services:hover {
  border: 2px solid transparent;
}

.item-services:hover .services_list {
  opacity: 1;
  transition: 0.5s ease-in-out;
}

.services_item_item {
  position: relative;
  padding: 40px 30px;
}

.services_list {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.services_list_item {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 10% 5% 10% 5%;
  color: #ffffff;
}

section#service .services_list_item h2 {
  color: #ffffff;
  font-size: 17px;
  font-family: "m-SemiBold";
  transition: 0.3s ease-in-out;
  margin-bottom: 10px;
  line-height: 1.4;
}

.services_list_item a {
  color: #ffffff;
  font-size: 17px;
  font-family: "m-SemiBold";
  transition: 0.3s ease-in-out;
}

.services_list_item a:hover {
  color: var(--secondary-color);
  transition: 0.3s ease-in-out;
}

.services_item_icon {
  width: 25%;
  margin-bottom: 20px;
}

section#service .services_item_title h2 {
  font-size: 22px;
  font-family: "m-SemiBold";
  margin-bottom: 20px;
  color: var(--primary-color);
  margin-top: 0;
}

.services_item_exp {
  font-size: 17px;
}

.services_item_exp p {
  margin-bottom: 0;
}

section#home_solution {
  margin: 120px 0px;
  overflow: hidden;
}

.home_solution_wrap {
  display: flex;
  flex-wrap: wrap;
}

.home_solution_left,
.home_solution_right {
  width: 50%;
}

.home_solution_icon {
  width: 10%;
  margin-right: 20px;
}

.home_solution_item {
  padding-bottom: 7%;
  margin-bottom: 7%;
  border-bottom: 1px solid #333333;
}

.home_solution_item:last-child {
  padding-bottom: 0%;
  margin-bottom: 0%;
  border-bottom: 1px solid transparent;
}

.home_solution_name {
  width: 80%;
}

.home_solution_name h3 {
  color: var(--primary-color);
}

.home_solution_svg {
  width: 10%;
  text-align: right;
}

.home_solution_icon img {
  width: 30px;
  max-width: 100%;
}

.home_solution_item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 26px;
  font-family: "m-SemiBold";
  color: var(--primary-color);
}

.home_solution_item a svg {
  width: 28px;
  height: 28px;
  transition: 0.3s ease-in-out;
}

.home_solution_item a:hover svg {
  transition: 0.3s ease-in-out;
  color: var(--secondary-color);
  transform: scale(1.1);
}

.home_solution_left {
  padding: 0px 15% 0px 0px;
}

.home_solution_title {
  font-size: 30px;
  color: var(--primary-color);
  font-family: "m-SemiBold";
  margin-bottom: 20px;
}

.home_solution_title h2 {
  color: var(--primary-color);
}

.home_solution_title p {
  margin-bottom: 0;
}

.home_solution_content {
  font-size: 17px;
}

.home_solution_btn {
  margin-top: 30px;
}

.home_solution_btn a {
  color: var(--secondary-color);
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--secondary-color);
  border-radius: 30px 30px 30px 30px;
  font-size: 15px;
  padding: 15px 30px;
  position: relative;
  display: inline-block;
  line-height: 1;
  text-align: center;
  transition: all 0.4s ease;
  text-transform: uppercase;
  font-family: "m-SemiBold";
}

.home_solution_btn a:hover {
  color: #ffffff;
  background-color: var(--secondary-color);
}

section#home_why {
  margin: 0px 0px 120px 0px;
}

.home_why_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home_why_left {
  width: 50%;
  padding: 0px 6% 0px 0px;
}

.home_why_title {
  font-size: 30px;
  color: #0d0272;
  font-family: "m-SemiBold";
  margin-bottom: 20px;
}

.home_why_content {
  font-size: 17px;
  text-align: justify;
}

.home_why_right {
  width: 50%;
}

.home_why_right img {
  border-radius: 16px;
}

.home_data_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 50px;
}

.home_data_item {
  display: flex;
  align-items: center;
}

.data_number {
  color: #0d0272;
  font-family: "m-SemiBold";
  font-size: 34px;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #dcdcdc;
}

.home_data_content {
  font-size: 17px;
}

.home_evaluate_title,
.home_evaluate_exp {
  text-align: center;
}

.home_evaluate_title {
  font-size: 30px;
  color: #0d0272;
  font-family: "m-SemiBold";
}

.home_evaluate_exp {
  font-size: 18px;
  margin: 10px 0px;
}

.home_evaluate_list {
  margin-top: 40px;
}

.evaluate_item_star {
  display: flex;
  column-gap: 2px;
}

.item_star svg {
  fill: var(--secondary-color);
}

.evaluate_item_exp {
  margin: 20px 0px;
}

.evaluate_item_wrap {
  display: flex;
  justify-content: space-between;
}

.evaluate_item_icon {
  width: 48px;
  transform: rotate(180deg);
  opacity: 0.5;
}

.evaluate_item {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
}

@media (max-width: 1800px) {
  .home_slider_img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
  .home_slider_item img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1440px) {
}

@media (max-width: 1366px) {
}

@media (max-width: 1280px) {
}

@media (max-width: 1024px) {
  section#banner p {
    font-size: 26px;
  }
  section#banner h1,
  section#banner h2,
  section#banner h3 {
    font-size: 26px;
  }
  .home_slider_item,
  .home_slider_item img {
    height: 450px;
  }
  #partner h2 {
    font-size: 26px;
    line-height: 30px;
  }
  section#service h2 {
    font-size: 26px;
    line-height: 30px;
    margin: 0px 0px 35px 0px;
  }
  .services_list_item a {
    font-size: 14px;
  }
  .services_item_title {
    font-size: 18px;
  }
  .services_item_exp {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  div#owl-partner {
    width: 75%;
  }
  .home_partner_title {
    width: 25%;
  }
  .home_solution_title {
    font-size: 26px;
  }
  .home_solution_item a {
    font-size: 18px;
  }
  .home_solution_icon img {
    width: 22px;
  }
  .home_solution_item a svg {
    width: 20px;
    height: 20px;
    margin-bottom: -3px;
  }
  .home_why_title {
    font-size: 26px;
  }
  section#service p {
    font-size: 14px;
  }
  .data_number {
    font-size: 24px;
  }
  .home_data_content {
    font-size: 14px;
  }
  .home_project_title {
    font-size: 26px;
  }
  .home_project .nav-pills {
    margin: 35px 0px 35px 0px;
  }
  .home_project .nav-link {
    font-size: 14px;
    padding: 10px 10px 10px 10px;
  }
  .home_evaluate_title {
    font-size: 26px;
  }
  .home_new_title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .home_solution_content {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .showKhach .meta p {
    width: 100%;
    text-align: justify;
  }
  section#banner {
    background-color: #f6f7f7;
  }
  section#banner p {
    font-size: 22px;
    line-height: 1.2;
  }
  section#banner h1,
  section#banner h2,
  section#banner h3 {
    font-size: 20px;
  }
  section#banner a {
    font-size: 14px;
    display: inline-block;
  }
  .home_slider_img {
    opacity: 0;
  }
  .home_partner_title {
    width: 35%;
    font-size: 16px;
  }
  div#owl-partner {
    width: 65%;
  }
  #partner h2 {
    line-height: 28px;
    width: 100%;
    margin-bottom: 30px;
  }
  button.slick-prev.slick-arrow,
  button.slick-next.slick-arrow {
    display: none !important;
  }
  .slider_partner {
    padding-bottom: 70px;
  }
  section#service .showService h2 {
    margin: 0px 0px 30px 0px;
  }
  .item-services {
    width: 100%;
  }
  section#home_solution {
    margin: 70px 0px;
  }
  .home_solution_left {
    padding: 0px 0% 0px 0px;
  }
  .home_solution_wrap {
    row-gap: 35px;
  }
  .home_solution_left,
  .home_solution_right {
    width: 100%;
  }
  .home_solution_content {
    font-size: 14px;
  }
  .home_solution_btn a {
    font-size: 14px;
    padding: 15px 20px;
  }
  .home_why_left {
    width: 100%;
    padding: 0px 0% 0px 0px;
  }
  .home_why_wrap {
    row-gap: 20px;
  }
  .home_why_content {
    font-size: 14px;
  }
  .home_why_right {
    width: 100%;
  }
  .home_data_box {
    row-gap: 20px;
  }
  .home_data_item {
    width: 100%;
    justify-content: center;
  }
  .home_data_content {
    width: 50%;
  }
  .data_number {
    width: 50%;
    text-align: right;
  }
  .home_project .nav-pills .nav-pills li {
    width: 44%;
  }
  .home_project .nav-link {
    font-size: 12px;
  }
  .home_project .nav-pills {
    margin: 25px 0px 25px 0px;
    row-gap: 15px;
  }
  .home_project_wrap {
    grid-template-columns: 1fr;
  }
  .home_new_item {
    width: 100%;
  }
  .home_new_wrap {
    row-gap: 25px;
  }
  .new_item_title a {
    font-size: 18px;
  }
}

@media (max-width: 1360px) {
  .slogan {
    margin-left: 20px;
  }
  ul#main-menu > li.menu-item {
    padding-left: 8px;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu {
    width: 100%;
    height: 350px;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu > li ul.sub-menu li {
    width: 100%;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu > li > a {
    width: 40%;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu li ul.sub-menu {
    width: 60%;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu li ul.sub-menu {
    padding: 10px;
  }
  section#banner {
    padding-top: 50px;
  }
  .banner__text {
    width: 65%;
  }
  .banner__text {
    margin-bottom: 210px;
  }
  .banner__text h1,
  .banner__text h2,
  .banner__text h3 {
    font-size: 26px;
  }
  .banner__text p {
    width: 100%;
  }
  #intro .container li:first-child {
    width: 47%;
  }
  section#imediahelp #animation1 svg,
  section#whyneed #animation2 svg {
    width: 100% !important;
    height: 100% !important;
  }
  section#whyneed .container li.widget div.textwidget {
    width: 100%;
    padding-left: 15px;
  }
  section#imediahelp #animation1,
  section#whyneed #animation2 {
    height: auto;
    padding: 20px 0;
  }
  section#news {
    padding: 50px 0;
  }
  .rightline p a {
    padding: 0 !important;
  }
}
@media (max-width: 768px) {
  .slogan {
    display: none;
  }
  ul#main-menu > li.menu-item {
    padding-left: 14px;
  }
  .banner__text {
    width: 100%;
  }
  #intro {
    padding: 20px 0;
  }
  #intro .container > li {
    margin: 0;
    width: 47%;
  }
  .itemdoitac {
    width: calc((100% / 3) - 30px);
  }
  section#service p,
  section#service h1,
  section#service h2,
  section#service h3,
  section#service h4,
  section#service h5,
  section#service h6 {
    font-size: 16px;
  }
  #imediahelp .container li p,
  #whyneed .container li p {
    font-size: 14px;
  }
  #imediahelp .container li p i,
  #whyneed .container li p i {
    padding-right: 15px;
    font-size: 16px;
  }
  .owl-carousel .owl-prev,
  .owl-carousel .owl-next {
    opacity: 1;
  }
  #bv_tuyen_dung .bv_tuyen_dung .td_title h3 {
    font-size: 20px;
  }
  #bv_tuyen_dung .bv_tuyen_dung .col-sm-6 {
    width: 100%;
  }
  section#company_activities .row .col-sm-6,
  section#salary_and_bonus .row .col-sm-6,
  section#time_work .row .col-sm-6 {
    width: 100%;
    margin-bottom: 20px;
  }
  section#staff .list__staff .row .col-sm-4 {
    width: 50%;
  }
  .list__remuneration__policy .p,
  section#time_work .list__time_work ul li p {
    width: 85%;
  }
}
@media (max-width: 480px) {
  .social {
    display: none;
  }
  .card-featured > .d-flex {
    justify-content: center;
  }
  header.header {
    border-bottom: 2px solid #5146ae;
  }
  .slogan {
    display: block;
    margin-left: 15px;
    font-family: "m-Regular";
  }
  #mainmenu .header-bar {
    height: 40px;
    width: 40px;
    line-height: 40px;
    position: relative;
    margin: 15px;
    margin-right: 0px;
  }
  #mainmenu .header-bar.close {
    opacity: 1;
  }
  #mainmenu .header-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    z-index: 1;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  #mainmenu .header-bar span:nth-child(1) {
    width: 14px;
    margin-top: 8px;
    margin-left: 8px;
  }
  #mainmenu .header-bar span:nth-child(3) {
    width: 14px;
    margin-top: -9px;
    margin-left: -8px;
  }
  #mainmenu .header-bar.close span:nth-child(1) {
    transform: translate(-100%, -50%) rotate(45deg);
    margin-right: 0px;
  }
  #mainmenu .header-bar.close span:nth-child(2) {
    margin: 3px 0px;
    transform: translate(-70%, -50%) rotate(-45deg);
  }
  #mainmenu .header-bar.close span:nth-child(3) {
    transform: translate(-70%, -50%) rotate(45deg);
    top: 26px;
  }
  #mainmenu ul#main-menu {
    position: fixed;
    top: 113px;
    left: 0;
    z-index: 9999;
    display: block;
    background: #fff;
    width: 100%;
    transform: scaleY(0);
    transform-origin: top;
    height: calc(100vh - 115px);
    overflow-y: scroll;
    padding: 0 30px;
    padding-bottom: 60px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px #000;
  }
  #mainmenu ul#main-menu.open {
    transform: scaleY(1);
  }
  #main-menu > li#menu-item-148,
  #main-menu > li#menu-item-148 > ul.sub-menu {
    z-index: initial;
  }
  ul#main-menu li.menu-item {
    padding-left: 0;
    text-align: center;
  }
  ul#main-menu li.menu-item a {
    display: block;
    padding: 10px 0 0 0;
    color: #181818;
    text-transform: capitalize;
    text-align: left;
    outline: none;
    font-size: 16px;
  }
  #main-menu > li.menu-item-has-children > ul.sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    display: block;
    box-shadow: none;
    border-radius: 0;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu {
    width: 100%;
    background-color: #fff;
    color: #fff;
    box-shadow: none;
    padding: 0;
    height: auto;
  }
  #main-menu
    > li#menu-item-148
    > ul.sub-menu
    > li
    ul.sub-menu
    li:first-of-type {
    display: none;
  }
  #main-menu ul.sub-menu ul.sub-menu li a img {
    display: none;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu > li > a {
    width: 100%;
    padding: 0;
    float: none;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu > li[aria-selected="true"] > a {
    background-color: #fff;
    padding: 0;
    margin: 0;
    width: 100%;
    color: #181818;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu li a {
    color: #181818;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu li ul.sub-menu {
    display: block;
  }
  #main-menu > li#menu-item-148.active > ul.sub-menu {
    flex-wrap: wrap;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu li ul.sub-menu {
    position: relative;
    float: none;
    width: 100%;
    padding: 0;
    background-color: #fff;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu li ul.sub-menu {
    opacity: 1;
    visibility: inherit;
  }
  #main-menu > li#menu-item-148 > ul.sub-menu > li ul.sub-menu li,
  #main-menu > li#menu-item-148 > ul.sub-menu li ul.sub-menu {
    width: 100%;
    font-family: "m-Regular";
  }
  #main-menu > li#menu-item-148 > ul.sub-menu > li ul.sub-menu li a,
  #main-menu > li#menu-item-148 > ul.sub-menu li ul.sub-menu {
    font-family: "m-Regular";
  }
  ul.sub-menu:before {
    display: none;
  }
  #mainmenu ul.sub-menu li.menu-item a {
    color: #181818;
    font-size: 14px;
    font-family: "m-Regular";
  }
  #banner {
    padding: 50px 0;
  }
  .banner__text {
    margin-bottom: 20px;
  }
  .banner__text h1,
  .banner__text h2 {
    font-size: 22px;
  }
  .banner__image {
    display: none;
  }
  #service .service_title {
    font-size: 24px;
    line-height: inherit;
    margin-bottom: 10px;
  }
  #service .content-services {
    width: 40%;
  }
  section#service .container {
    padding-bottom: 0;
  }
  section#service .showService h2 {
    font-size: 24px;
  }
  section#service .showService p {
    font-size: 14px;
  }
  section#intro {
    display: none;
  }
  #intro .container > li {
    width: 100%;
  }
  #intro .container li:first-child h2 {
    margin-top: 20px;
  }
  #intro .container li:first-child {
    width: 100%;
  }
  #youhavebut {
    padding: 0;
    text-align: center;
  }
  #imediahelp li.widget,
  #whyneed li.widget,
  section#whyneed .container li.widget div.textwidget {
    width: 100%;
    padding: 0;
  }
  #imediahelp .container h2,
  #whyneed .container li h2 {
    font-size: 22px;
  }
  h3.showMembers__Title {
    font-size: 20px;
  }
  #doitac {
    margin-right: -15px;
  }
  .itemdoitac {
    width: calc((100% / 2) - 15px);
    margin-bottom: 15px;
    margin-right: 15px;
  }
  .itemdoitac:last-child {
    display: none;
  }
  section#whyneed li.widget:first-child {
    order: 2;
  }
  section#imediahelp #animation1 svg,
  section#whyneed #animation2 svg {
    width: 100% !important;
  }
  #youhavebut .item:nth-of-type(1),
  #youhavebut .item:nth-of-type(2) {
    margin-bottom: 25px;
  }
  #youhavebut .wrap__item h3 {
    font-size: 16px;
  }
  #imediahelp .container li p,
  #whyneed .container li p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  section#news {
    padding-top: 0;
  }
  #bv_tuyen_dung .bv_tuyen_dung .td_title h3 {
    font-size: 18px;
  }
  section#staff .list__staff .avatar {
    width: 165px;
  }
  section#singles section#salary_and_bonus .title h2 {
    font-size: 30px;
  }
}
