.mrDelete {
  margin-top: 50px;
}

.detail-list-new .itemRelated .itemCreatedRelated {
  display: none;
}

/* Banner Content */
.home-banner {
  .slide-content {
    min-height: 45rem;
  }
  .slide-image img {
    height: clamp(45rem, 56vh, 59.625rem);
  }
  .post {
    top: 0px;
    z-index: 10000;

    .post-summary {
      color: #fff;
      padding-top: 10px;

      .list-btn {
        margin-bottom: 2.5rem;
      }

      .slide-content {
        margin-bottom: clamp(0.5rem, 4.5%, 3rem);
      }

      .text-name-slide-home {
        font-family: "FS Magistral";
        font-weight: 800;
        font-size: 1.75rem;
        line-height: 2.875rem;
        text-transform: uppercase;
        color: #ffffff;
      }

      .text-summary-slide-home {
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.875rem;
        color: #ffffff;
        margin: 1.5rem 0;
      }

      .text-company {
        font-weight: 300;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #ffffff;
      }

      .list-company {
        display: flex;
        gap: 0.75rem;
        padding: 0.75rem 0rem;

        .company {
          font-weight: 300;
          font-size: 0.875rem;
          line-height: 1.25rem;
          color: #ffffff;
          background-color: rgba(255, 255, 255, 0.1);
          border-radius: 0.25rem;
          padding: 0.125rem 0.75rem;
        }
      }
    }
  }
}

/* Home Content */
.home-customer .title,
.home-trust .title,
.home-trust .trust-title,
.home-process .title,
.home-solutions .title,
.home-industries .title,
.home-info .title {
  font-family: "FS Magistral";
  font-weight: 800;
  font-size: 1.75rem;
}

.home-process .subtitle,
.home-trust .detail,
.home-solutions .detail,
.home-info .detail {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--tm);
}
.home-info .content-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tm);
  line-height: 1.875rem;
}
.home-info .content-detail p {
  margin-bottom: 0;
}
.home-info .card:hover {
  border-color: var(--tm);
}

/* Industries */
.home-industries .industry-card {
  background: #ffffff1a;
  border: 0.5px solid #ffffff;
  border-radius: 20px;
  flex: auto;
}

.home-industries .industries-nav {
  gap: 10px;
}

.home-industries .industry-btn {
  width: 122px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.home-industries .industry-btn:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.home-industries .industry-btn img {
  flex-shrink: 0;
  border-radius: 20px;
}

.home-industries .industry-btn span {
  font-size: 14px;
}

.home-industries .industry-name {
  font-family: FS Magistral;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
}

/* Solutions */
.home-solutions .card {
  opacity: 1;
  gap: 60px;
  border-radius: 30px;
  border-width: 0.5px;
  padding: 36px;
  background: #ffffff1a;
  border: 0.5px solid #e5e5e5;
}

.home-solutions .solution-name {
  font-family: FS Magistral;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  vertical-align: middle;
}

.home-solutions .solution-subtitle {
  font-weight: 400;
  font-size: 18px;
}

/* Process */
.home-process {
  /* Progress Bar */
  .process-progress-bar {
    position: relative;
    margin-bottom: 3rem;
  }

  .process-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
  }

  .process-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    margin-right: 0.5rem;
  }

  .indicator-number {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #5a6770;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background-color: #f9f8fc;
    border: 1px dashed rgba(3, 1, 126, 0.15);
    box-sizing: border-box;
  }

  .process-indicator.active .indicator-number {
    background: var(--tm);
    color: #ffffff;
  }

  .indicator-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #5a6770;
    line-height: 1.3;
    flex: 1;
  }

  .process-indicator.active .indicator-label {
    color: var(--tm);
    font-weight: 700;
  }

  .progress-track {
    position: relative;
    height: 3px;
    background: rgba(3, 1, 126, 0.1);
  }

  .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #03017e 0%, #6683c5 100%);
    width: 0%;
    transition: width 0.5s ease;
  }

  .progress-dot {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    background: var(--tm);
    border: 2px solid var(--tm);
    box-shadow: 0 0 12px rgba(3, 1, 126, 0.5);
    transition: left 0.5s ease;
    z-index: 3;
  }

  /* Carousel */
  .process-carousel {
    position: relative;
    background: #f9f8fc;
    border: 1px solid #e5e5e5;
    border-radius: 1.25rem;
    padding: 2.25rem;
    min-height: 400px;
  }

  .process-slides {
    position: relative;
    overflow: hidden;
  }

  .process-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .process-slide.active {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.5s ease;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .step-icon {
    color: var(--tm);
    margin-bottom: 1.5rem;
    background-color: #ffffff;
    width: fit-content;
    border-radius: 1.25rem;

    img {
      padding: 1rem;
    }
  }

  .step-title {
    color: var(--tm);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-family: "FS Magistral";
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 36px;
    vertical-align: middle;
  }

  .step-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .step-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tm);
    background: rgba(3, 1, 126, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
  }

  .step-visual img {
    object-fit: contain;
  }

  .toggle-autoplay.active {
    background: var(--tm);
    color: #ffffff;
  }
}

.home-trust {
  .trust-card {
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    transition: box-shadow 0.35s ease;
    will-change: transform;
  }
  .trust-card:hover {
    box-shadow: 0 18px 40px rgba(3, 1, 126, 0.15);

    .trust-overlay {
      background: linear-gradient(
        180deg,
        #03017e33 20%,
        #03017e66 40%,
        #03017e99 60%
      );
    }
  }

  .trust-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.65) 100%
    );
  }

  .trust-content {
    position: absolute;
    left: 1.5rem;
    right: 20px;
    bottom: 20px;
    z-index: 2;
  }

  .trust-detail {
    height: 3.25rem;
  }
}

#search-form {
  background: #03017e;
  width: 330px;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100%;
  transform: translateX(-320px);
  transition: all 0.5s;
  background-color: #fff;
  background-size: 80% auto;
  padding: 24px;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.12);
  z-index: 999999999;
  right: -320px;
}

.hidden-time-menu i {
  color: #03017e !important;
  border: 1px solid #03017e;
  padding: 10px !important;
}

.hidden-time-menu i:hover {
  cursor: pointer;
}

.searchWeb {
  padding: 30px 0px 50px;
}

.searchWeb .nav-tabs {
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}

.searchWeb .textSearch {
  font-size: 25px;
  margin-bottom: 20px;
}

.searchWeb .nav-tabs li {
  margin-right: 25px;
  margin-bottom: 10px;
}

.searchWeb .nav-tabs li a {
  font-size: 18px;
  font-weight: 600;
}

.searchWeb .nav-tabs li.active a {
  color: #03017e;
}

.searchWeb .not_found {
  color: red;
  font-size: 18px !important;
}

/*.searchWeb .nav-tabs li a.active {
	color: #03017E;
}*/

.searchWeb .list-news .itemSearch {
  margin-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 30px;
}

.searchWeb .list-news .itemSearch img {
  border-radius: 10px;
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.searchWeb .list-news .itemSearch .text-uppercase {
  font-weight: 700;
  font-size: 20px;
  text-align: justify;
  color: #03017e;
  line-height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.searchWeb .list-news .itemSearch .text-uppercase button {
  background: linear-gradient(270.1deg, #03017e 0%, #6683c5 100%);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  color: #fff;
  padding: 0px 15px;
  margin-right: 15px;
}

.searchWeb .list-news .itemSearch .text-uppercase a {
  color: #03017e;
}

.searchWeb .list-news .itemSearch .summary p {
  margin: 0px;
  color: #797979;
  font-weight: 400;
  font-size: 14px;
}

.main .new .container {
  border-bottom: none;
}

.searchWeb .new-paginate {
  margin: 30px 0px;
}

.searchWeb .new-paginate ul {
  text-align: center;
  margin: 0px auto;
}

.searchWeb .new-paginate ul li {
  margin-right: 8px;
  padding: 0;
}

.searchWeb .new-paginate ul li.active a {
  color: #fff;
  width: 30px !important;
  background: #3e4194 !important;
  border: 1px solid #3e4194 !important;
  height: 30px !important;
  padding: 6px 10px;
  border-radius: 0%;
  font-weight: bold;
  font-size: 13px;
  position: relative;
  top: -2px;
}

.searchWeb .new-paginate ul li a {
  color: #161615;
  text-decoration: none;
  border: 1px solid #e5e5e5 !important;
  width: 30px !important;
  height: 30px !important;
  padding: 7px 10px;
  font-weight: bold;
  font-size: 14px;
}

/*responsive*/
/*iphone*/

@media (max-width: 767px) {
  .btn {
    font-size: clamp(0.75rem, 2.458vw, 1.5rem);
    padding: clamp(0.5rem, 3.833vw, 1rem) clamp(1rem, 3.407vw, 1.688rem);
  }

  .home-banner p {
    font-size: clamp(0.5rem, 3.833vw, 1rem);
  }

  .home-banner .post-summary .text-name-slide-home p {
    font-size: clamp(0.75rem, 4.458vw, 1.5rem);
  }
  .home-banner .post-summary .list-btn {
    margin-bottom: clamp(0.5rem, 5.083vw, 2.5rem);
  }

  /* Old */
  .main .detail-product {
    height: 500px !important;
  }

  .searchWeb .textSearch {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 28px;
  }

  .searchWeb .nav-tabs {
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
    -webkit-box-pack: center !important;
    /*	    -ms-flex-pack: center!important;*/
    justify-content: center !important;
  }

  .searchWeb .list-news .itemSearch img {
    margin-bottom: 20px;
    height: 270px;
  }

  .searchWeb .list-news .itemSearch .summary p {
    text-align: justify;
  }

  /* Process responsive */
  .home-process .process-indicator {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .home-process .indicator-label {
    font-size: 0.625rem;
    text-align: center;
    max-width: 80px;
  }

  .home-process .indicator-number {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    font-size: 0.75rem;
  }

  .home-process .progress-track {
    margin: 0 1rem;
  }

  .home-process .progress-dot {
    width: 0.5rem;
    height: 0.5rem;
  }

  .home-process .process-carousel {
    padding: 2rem 1rem;
    min-height: 500px;
  }

  .home-process .step-title {
    font-size: 1.25rem;
  }

  .home-process .step-description {
    font-size: 0.875rem;
  }

  .home-process .step-visual {
    margin-top: 2rem;
    padding: 1rem;
  }

  .home-process .process-control {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
  }

  .main .detail-product h4 {
    margin-top: 115px !important;
    line-height: 35px;
    text-align: center;
    height: 130px;
  }

  .detail-product .box-banner .img-banner-right {
    width: 100% !important;
    margin-top: -5% !important;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }

  .main .detail-product-home p {
    font-size: 14px;
    text-align: justify;
  }

  .main .home-product {
    padding: 0px 15px !important;
  }

  .main .home-product .p-50 {
    padding: 0px;
  }

  .main .label-text {
    padding: 0px 15px;
    margin-bottom: 20px;
    text-align: center;
  }

  .main .home-product .p-50 .pl-20 {
    padding-left: 0px !important;
  }

  .home-stories {
    position: relative;
  }

  .home-product .delete-padding-home {
    padding: 0px 15px;
  }

  .home-product .image-product-item {
    height: 160px;
    object-fit: cover;
  }

  .home-product .name-page-product a {
    text-align: center;
  }

  .home-product .image-product {
    margin-top: 15px;
  }

  .main .detail-product-home {
    font-size: 18px;
  }

  .home-stories .box-share {
    padding: 20px 15px;
  }

  .home-stories .box-share .intro p {
    font-size: 18px;
  }

  .mrDelete {
    margin-top: 0px !important;
  }

  .home-stories .box-share .title {
    text-align: center;
  }

  .home-stories .box-share .box-content .title {
    text-align: center;
  }

  .home-stories .box-share .box-content p {
    font-size: 17px !important;
    text-align: justify;
    margin-bottom: 30px;
  }

  .home-stories {
    margin-bottom: 50px;
  }

  .box-see-more {
    text-align: center;
  }

  .intro-team {
    padding: 0px;
    text-align: justify !important;
  }

  .slide-partner .owl-nav .owl-next {
    display: none !important;
  }

  .header .fa {
    color: #000 !important;
  }

  .introduceHome .text-introduce {
    font-size: 22px;
  }

  .introduceHome .text-page_detail p {
    font-size: 14px;
  }

  .imageBackground .image img {
    top: 0;
    margin-bottom: 20px;
  }

  .orientation .develop .title {
    font-size: 22px;
    text-align: center;
  }

  .orientation .develop .desc p {
    font-size: 14px;
  }

  .orientation .developChild {
    margin-bottom: 50px;
    text-align: center;
  }

  .orientation .developChild .des p {
    font-size: 14px;
  }

  .orientation .imageBackground .image img {
    display: none;
  }

  .orientation .imageBackground .exp {
    position: unset;
    text-align: center;
    margin: 0px auto;
    width: 175px;
    height: 170px;
  }

  .orientation .imageBackground .exp .des p {
    font-size: 18px;
  }

  .orientation .imageBackground .exp .name {
    font-size: 50px;
  }

  .orientation .flexEnvironment {
    margin-top: 0px;
  }

  .orientation .flexEnvironment {
    display: unset;
  }

  .orientation .flexEnvironment .imageIcon {
    margin-right: 0px;
    margin-top: 20px;
  }

  .orientation .flexEnvironment .imageIcon img {
    width: 100%;
  }

  .flexEnvironment .titleIcon .iconName {
    margin-top: 30px;
    font-size: 22px;
    text-align: center;
  }

  .flexEnvironment .titleIcon .desName p {
    font-size: 14px;
  }

  .pageHuman .name {
    font-size: 22px;
    text-align: center;
  }

  .pageHuman .detail p {
    font-size: 14px;
  }

  .desk-fixed {
    top: 360px !important;
    right: 15px !important;
  }

  .pageHuman .listHuman .image {
    padding: 10px;
  }

  .pageHuman .listHuman .image img {
    width: 20px;
    height: 20px;
  }

  .pageHuman .listHuman .title {
    font-size: 14px;
    text-align: left;
  }

  .main .list-carrer .descriptionCareer .recruitment_time {
    font-size: 14px;
    font-family: "lato" !important;
  }

  .career-detail .detail .detail_name {
    font-size: 20px;
  }

  .career-detail .detail {
    padding: 20px;
  }

  .career-detail .relatedCareer .title {
    text-align: center;
  }

  .main .list-new {
    padding: 0px !important;
  }

  .main .list-new-category .imageNewCate {
    padding: 0px !important;
  }

  .main .list-new .titleNew {
    font-size: 20px;
    text-align: center;
  }

  .main .list-new-category .titleNewCate .titleNew {
    margin-left: 0px;
  }

  .main .list-new-category .titleNewCate .showMoreNew {
    margin-top: 6px;
  }

  .main .list-new-category .titleNewCate .showMoreNew {
    margin-right: 0px;
  }

  .main .list-new-category .titleNewCate .showMoreNew a {
    font-size: 14px;
  }

  .detail-list-new .detailNew {
    padding: 20px;
  }

  .detail-list-new .detailNew .detailDes p {
    text-align: justify !important;
  }

  .main .detail-new h4 p span {
    font-size: 24px !important;
  }

  .storyHome .title-story {
    font-size: 22px;
  }

  .service .text-uppercase {
    font-size: 25px;
  }

  .main .content-page .text-page_detail p {
    display: block !important;
  }

  .pageService .listDeatail .detail p {
    font-size: 14px;
  }

  .pageService .listDeatail .name {
    line-height: 35px;
  }

  .main .solution h4 {
    margin-top: 150px !important;
  }

  .main .list-product {
    padding: 0px !important;
  }

  .main .list-product .box-tnm h4 {
    margin-top: 20px;
  }

  .detail-product .box-banner a.contact-now {
    display: none;
  }

  .main .detail-product h4 {
    font-size: 22px !important;
  }

  .detail-product .box-banner {
    padding: 0px;
  }

  .detail-product .box-banner .img-banner-right {
    width: 65%;
    margin-top: 0%;
  }

  .special_products {
    padding: 0px !important;
  }

  .content-product .text-title {
    font-size: 22px;
  }

  .content-product .text-des {
    font-size: 18px;
  }

  .main .special_products .nameProductItem {
    margin-top: 40px;
    text-align: center;
  }

  .main .special_products .des-product-item p {
    font-size: 14px;
  }

  .model-deployment .background_content .list-itemModel {
    display: block !important;
  }

  .textCenterProduct {
    margin: 0px auto;
  }

  .frame-image-product-item {
    position: unset;
    display: none;
  }

  .special_products .image-product-item img {
    position: unset;
    width: 100%;
  }

  .main .special_products .listItem .image img {
    width: 40px;
    height: 40px;
  }

  .main .special_products .listItem .describe {
    font-weight: 400;
    font-size: 15px;
  }

  .main .special_products .nameProductItem {
    font-size: 22px;
  }

  .system-features .text-title {
    font-size: 25px;
  }

  .system-features .text-des {
    font-size: 18px;
  }

  .system-features .list-features {
    padding: 20px 15px;
  }

  .system-features .list-features .title {
    font-size: 25px;
  }

  .companion .text-title {
    font-size: 25px;
  }

  .companion .text-des {
    font-size: 18px;
  }

  .companion .list-item-companion .nameProductItem {
    font-size: 22px !important;
  }

  .companion .list-item-companion .listItemCompanion .image img {
    width: 60px;
    height: 60px;
  }

  .companion .list-item-companion .listItemCompanion .image {
    margin-right: 15px;
  }

  .companion .list-item-companion .listItemCompanion .describe {
    font-size: 15px;
  }

  .companion .list-item-companion .image-product-item {
    margin-top: 15px;
  }

  .model-deployment .text-title {
    font-size: 25px;
  }

  .model-deployment .text-des {
    font-size: 18px;
  }

  .model-deployment .list-item-model .name {
    font-size: 18px;
  }

  .model-deployment .background_content {
    padding: 20px 15px;
  }

  .model-deployment .background_content .listTitle {
    font-size: 22px;
  }

  .model-deployment .background_content .listDescript {
    font-size: 18px;
  }

  .model-deployment .background_content .list-itemModel .list-item-child {
    width: 100%;
    margin-left: 0px;
  }

  .model-deployment .background_content .list-itemModel .list-item-child .name {
    margin-bottom: 30px;
  }

  .model-deployment .background_content .list-itemModel .list-item-child-2 {
    width: 100%;
    margin: 0px 0px 20px;
  }
}

/*ipad */
@media (min-width: 768px) and (max-width: 1023px) {
  .head-logo img {
    height: 40px;
    margin: 10px;
    max-width: 85px;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .header .navbar-nav {
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
    position: relative;
    top: 5px;
  }

  .home-stories .box-content {
    text-align: justify;
  }

  .home-stories {
    position: absolute;
    z-index: 1;
    bottom: -55%;
    margin-bottom: 120px;
  }

  .dropdown-menu-child {
    top: 60px !important;
  }

  .home-stories .box-share {
    padding: 10px 50px 50px;
  }

  .head-logo img {
    height: 50px;
  }

  .header .navbar-nav li {
    padding: 11px 0px 15px;
  }

  .header .navbar-nav li {
    margin: 0 10px !important;
  }

  .head-fix .navbar-nav .nav-link {
    font-size: 13px !important;
  }

  .header .navbar-nav .nav-link {
    font-size: 13px !important;
  }

  .header .navbar-nav > li.active a {
    font-size: 13px;
  }

  .header .navbar-nav li:last-child {
    padding: 6px 15px !important;
  }

  .header {
    height: auto;
  }

  .header .navbar-nav .contactMenu a {
    font-size: 13px;
  }

  .header .navbar-nav li:last-child {
    font-size: 13px;
  }

  .sl-flag {
    width: 25px;
    height: 25px;
    position: relative;
    top: 8px;
  }

  .slide-partner .owl-nav .owl-next {
    display: none;
  }

  .main .home-product .p-50 {
    padding: 0 65px;
  }

  .main .label-text {
    font-size: 22px;
    line-height: 32px;
  }

  .home-product .pl-20 {
    padding-left: 20px !important;
  }

  .home-product .name-page-product a {
    color: white;
    font-size: 18px !important;
    padding: 0px 20px;
  }

  .home-product .image-product-item {
    height: 265px;
  }

  .main .title-product-home {
    font-size: 22px;
  }

  .slide-partner .owl-nav .owl-prev {
    display: none;
  }

  .sendContact .vacancies_10 .vacancies {
    padding: 30px 0px;
    height: 100%;
  }

  .introduceHome .text-introduce {
    font-size: 40px;
  }

  .introduceHome .text-page_detail p {
    font-size: 18px;
  }

  .orientation .develop .desc p {
    font-size: 18px;
  }

  .orientation .developChild .des p {
    font-size: 18px;
  }

  .main .list-new .titleNew {
    font-size: 22px;
  }

  .detail-list-new .detailNew .detailDes p {
    font-size: 18px !important;
    font-family: "lato" !important;
  }

  .main .detail-new h4 p span {
    font-size: 25px !important;
  }

  .detail-list-new .detailNew .detail_name {
    font-size: 25px;
    line-height: 32px;
  }

  .service .text-uppercase {
    font-size: 45px !important;
  }

  .pageService .desService ol li::marker {
    background: red;
  }

  .main .content-page p {
    font-size: 15px !important;
  }

  .main .content-page h4 {
    font-size: 25px;
    /*margin-top: 200px;*/
    margin-top: 265px;
    line-height: 35px;
  }

  .service .text-uppercase {
    font-size: 25px !important;
    margin-top: 165px !important;
  }

  .main .solution .box-banner .image_page_detail img {
    width: 95%;
    margin-top: 68%;
    margin-left: 30px;
  }

  .detail-product .box-banner .img-banner-right {
    width: 100%;
    margin-top: 65%;
  }

  .service .image_page_detail img {
    width: 95%;
    margin-top: 45px;
    margin-left: 30px;
  }

  .pageService .listItem-service .image img {
    width: 40px;
    height: 40px;
  }

  .system-features .listItem .image {
    padding: 15px;
  }

  .system-features .listItem .image img {
    width: 70px;
    height: 70px;
  }

  .system-features .listItem .name {
    font-size: 14px;
  }

  .companion .text-title {
    font-size: 25px !important;
  }

  .system-features .list-features .title {
    font-size: 25px !important;
  }

  .system-features .text-title {
    font-size: 25px !important;
  }

  .companion .list-item-companion .nameProductItem {
    font-size: 25px !important;
    margin-bottom: 10px !important;
  }

  .companion .list-item-companion .listItemCompanion .image img {
    width: 70px;
    height: 70px;
  }

  .model-deployment .list-item-model .image {
    width: 95px;
    height: 95px;
  }

  .model-deployment .list-item-model .name {
    font-size: 14px !important;
  }

  .model-deployment .background_content .listTitle {
    font-size: 25px;
    margin-bottom: 5px;
  }

  .pageService .listItem-service .name {
    font-size: 15px !important;
  }

  .pageService .listItem-service.tab-active .image img {
    width: 40px;
    height: 40px;
  }

  .pageService .listItem-service {
    padding: 15px 10px;
  }

  .pageService .listDeatail .name {
    font-size: 25px;
    margin-bottom: 25px;
  }

  .pageService .listDeatail {
    padding: 20px;
  }

  .pageService .listDeatail .btn-detail {
    padding: 8px 35px;
    font-size: 14px;
  }

  .main .list-carrer h5 a {
    font-size: 20px;
  }
}

@media (min-width: 1367px) and (max-width: 1399px) {
  .header .navbar-nav .nav-link {
    font-size: 13px !important;
  }

  .header .navbar-nav .contactMenu a {
    font-size: 13px !important;
    padding: 8px 10px 5px;
  }

  .header .navbar-nav li {
    padding: 20px 10px 25px;
  }

  .header .navbar-nav > li {
    margin: 0 8px;
  }
}

@media (min-width: 1400px) and (max-width: 1425px) {
  .header .navbar-nav .nav-link {
    font-size: 13px !important;
  }

  .header .navbar-nav .contactMenu a {
    font-size: 13px !important;
    padding: 8px 10px 5px;
  }

  .header .navbar-nav li {
    padding: 20px 10px 25px;
  }

  .header .navbar-nav > li {
    margin: 0 8px;
  }

  .header .navbar-nav .btnSearch .iconSearch {
    padding: 6px 10px;
  }

  .header .navbar-nav .btnSearch .iconSearch img {
    width: 17px;
    height: 17px;
  }

  .header .navbar-nav .flagWeb {
    padding: 6px 15px !important;
  }
}

@media (min-width: 1600px) and (max-width: 1679px) {
  .header .navbar-nav .nav-link {
    font-size: 15px !important;
  }

  .header .navbar-nav > li {
    margin: 0 13px !important;
  }
}

@media (min-width: 1680px) and (max-width: 1920px) {
  .header .navbar-nav > li {
    margin: 0 15px !important;
  }
}
