body {
  font-size: 14px !important;
}
body,
html {
  scroll-behavior: smooth;
}

.service-card:hover .service-card-sub,
.service-card:hover .service-card-sub p,
button {
  color: #fff;
}

.custom-bg-blue,
.ellipse,
.service-card:hover .service-card-sub,
button {
  background-color: #0af;
}

.arrow-slide,
button:hover {
  cursor: pointer;
}
section {
  min-height: 100vh;
  height: auto;
}
/*  */
.mb-menu-btn {
  padding: 2px;
}

@font-face {
  font-family: SVN-Poppins;
  src: url("/font/SVN-Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: SVN-Poppins;
  src: url("/font/SVN-Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-size: 14px !important;
}

@font-face {
  font-family: SVN-Poppins;
  src: url("/font/SVN-Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-size: 14px !important;
}

html {
  font-family: SVN-Poppins !important;
}

.contact-by-social {
  display: none;
  position: absolute;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 999;
}
.contact-by-social svg {
  width: 50px;
  height: 50px;
}
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.5s;
  color: #000;
  /* background: none; */
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  color: black !important;
  background: #fff !important;
}
header.sticky path {
  fill: black;
}

.round-icon {
  padding: 8px 8px;
  border: 1px solid #767676;
  margin-right: 16px;
}
.custom-blue,
.service-card:hover p {
  color: #0af;
}

.custom-shadow {
  box-shadow: 0 4px 40px rgba(0, 51, 126, 0.25);
}

.triangle {
  width: auto;
  height: 0;
  border-left: calc(50vw) solid transparent;
  border-right: calc(50vw) solid transparent;
  border-bottom: 100px solid #0af;
}

.ellipse {
  width: 100%;
  height: 50px;
  border-bottom-left-radius: 50% 50px;
  border-bottom-right-radius: 50% 50px;
}

.logo-list {
  width: 100%;
}

.card-shadow {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.custom-bg-gray {
  background: rgba(0, 0, 0, 0.4);
}

header nav ul li a {
  text-decoration: none;
  position: relative;
}
.slick-current .btn-items {
  background-color: #ffffff; /* Màu đỏ */
}
header nav ul li a.active,
header nav ul li i.active,
header nav ul li:hover {
  text-decoration: none;
  color: #0af;
}

header nav ul li a.active::after,
header nav ul li i.active::after,
header nav ul li a:hover::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0af;
}
header nav ul li ul li:last-child a.active::after {
  content: none;
}

.indent {
  text-indent: 2rem;
}

.service-card:hover {
  background-color: #fff;
  color: #0af;
}

.service-card:hover .service-card-sub svg {
  fill: white;
}

.slider-h-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.slider-h-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-h-item.active {
  opacity: 1;
}

.slider-h-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.scroll-container {
  scroll-snap-type: x mandatory;
}

.scroll-content {
  scroll-snap-align: center;
}

.arrow-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.section,
button {
  position: relative;
}

.scroll-left {
  left: 10px;
}

.scroll-right {
  right: 10px;
}

.section {
  overflow: hidden;
}

@keyframes zoomIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}
.slider-solutions {
  animation: silde 16s infinite;
}
@keyframes slide {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(-100%);
  }
  55% {
    transform: translateY(-200%);
  }
  75% {
    transform: translateY(-200%);
  }
  80% {
    transform: translateY(-300%);
  }
  100% {
    transform: translateY(-300%);
  }
}
button {
  z-index: 1;
  font-size: inherit;
  font-family: inherit;
  padding: 0.5em 1em;
  outline: 0;
  border: none;
}

.mb-menu-btn {
  background: #fff !important;
}

button::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid #fff;
  transform-origin: center;
  transform: scale(1);
}

button:hover::before {
  transition: 0.75s ease-in-out;
  transform-origin: center;
  transform: scale(1);
  opacity: 0;
}

.bouncing:hover {
  animation: 1s infinite bounce;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.spring-text {
  animation: 1s spring;
}

@keyframes spring {
  0%,
  100% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.2);
  }

  40% {
    transform: scale(0.8);
  }

  60% {
    transform: scale(1.1);
  }

  80% {
    transform: scale(0.9);
  }
}

.arrows {
  z-index: 1;
  width: 60px;
  height: 72px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: 20px;
}

.arrows path {
  stroke: #2994d1;
  fill: transparent;
  stroke-width: 4px;
  animation: 2s infinite arrow;
  -webkit-animation: 2s infinite arrow;
}

@keyframes arrow {
  0%,
  100%,
  80% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

@-webkit-keyframes arrow {
  0%,
  100%,
  80% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

.arrows path.a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
}

.arrows path.a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
}

.arrows path.a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

/* NEWS  */

.image-item {
  width: 100%;
}

.sidebar-nav-mobile {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sidebar-nav-mobile::-webkit-scrollbar {
  display: none;
}
.news-page {
  display: grid;
  grid-template-columns: 25% 75%;
}
.list-news {
  color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  background: linear-gradient(
      to right,
      rgba(251, 251, 251, 1),
      rgba(217, 217, 217, 0)
    )
    right;
}
.menu-active {
  color: #000;
  font-size: 14px;
  background: linear-gradient(
      to right,
      rgba(140, 217, 255, 1),
      rgba(217, 217, 217, 0)
    )
    no-repeat right/100% 100% !important;
}
.active-mobile {
  color: #000;
  background: linear-gradient(
      to right,
      rgba(140, 217, 255, 1),
      rgba(217, 217, 217, 0)
    )
    no-repeat right/100% 100% !important;
}
.list-news.control {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(
      to right,
      rgba(140, 217, 255, 1),
      rgba(217, 217, 217, 0)
    )
    no-repeat right/100% 100% !important;
}
.news-show-1 {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 32px;
}
.bg-img-news img {
  width: 100%;
  height: 452px;
}
.news .title,
.product-intro .title {
  font-size: 20px;
  background: rgba(235, 248, 255, 1);
  border-left: 8px solid rgba(0, 170, 255, 1);
}
.main-color {
  color: #00aaff;
}

.des-post {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.title-detail,
.new-content .title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.detail-news {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail-videos {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail-btn {
  border: 1px solid #fff !important;
  padding: 8px 16px;
  border-radius: 20px;
}
.item-post {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.orther-new-detail,
.orther-news-des,
.orther-news-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.btn-items {
  width: 100%;
  height: 4px;
  background: rgba(106, 106, 106, 1);
  border-radius: 4px;
}
.btn-items.active {
  background: #fff;
}

.bg-video-show {
  background: #00aaff;
}
.show-video {
  padding: 16px;
  display: grid;
  grid-template-columns: 35% 65%;
}
.play-video-btn {
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.detail-video-btn {
  color: #00aaff;
  background: rgba(255, 255, 255, 1);
  padding: 10px 24px;
  border: none;
  outline: none;
}

.show-list-video {
  padding: 16px;
  display: flex;
  /* display: grid; */
  gap: 16px;
}
.btn-items.active {
  background: white;
}

.new-description .time {
  color: rgba(150, 150, 150, 1);
}
/* .drop-down-icon {
  margin-top: -2px;
} */
.drop-list:hover .drop-down-icon {
  color: #00aaff;
  fill: #00aaff;
}
.drop-list {
  position: relative;
}
.drop-list:hover .sub-drop-down {
  display: block;
}
.sub-drop-down {
  display: none;
  font-size: 14px;
  width: 295px;
  border-radius: 20px;
  color: #000;
  background: #fff;
  position: absolute;
  top: 25px;
  left: -100%;
  box-shadow: 0px 0px 24px 0px #00000026;
}

.sub-drop-down li a {
  color: #000;
  text-decoration: none !important;
}
.sub-drop-down li:nth-child(1) {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.sub-drop-down li:nth-last-child(1) {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.sub-drop-down li:hover {
  background: #00aaff !important;
}
.sub-drop-down li a:hover {
  color: #fff !important;
}
.sub-drop-down li a:hover::after {
  display: none;
}
.sub-drop-down:hover li {
  color: #000;
}

.sub-drop-down li {
  padding: 0 12px;
  /* border-bottom: 1px solid #fff; */
}
.nav-show-service li.active,
.nav-show-service li:hover {
  background: #ffdadf;
  color: #ff5a6e;
}
.tab-slider li.active,
.tab-slider li:hover {
  background: #00aaff;
  color: #fff;
}

@media only screen and (min-width: 1440px) {
  .slide-in,
  .slide-out {
    transition: transform 1s ease-in-out;
  }

  #fullpage {
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #fullpage .section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .slide-in {
    transform: translateX(-100%);
  }

  .section.animate .slide-in,
  .section.animate .slide-out {
    transform: translateX(0);
  }

  .slide-out {
    transform: translateX(100%);
  }

  .fade-in,
  .zoom-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .section.animate .fade-in {
    opacity: 1;
  }

  .section.animate .zoom-in {
    opacity: 1;
    animation: 1s ease-in-out forwards zoomIn;
  }

  .flip-in {
    opacity: 0;
    transform: perspective(800px) rotateY(90deg);
    transition:
      opacity 2s ease-in-out,
      transform 2s ease-in-out;
  }

  .section.animate .flip-in {
    opacity: 1;
    transform: perspective(800px) rotateY(0);
  }

  .zoom-over {
    transition: transform 0.3s;
  }

  .fade-in-down,
  .fade-in-up {
    opacity: 0;
    transition:
      opacity 1s,
      transform 1s;
  }

  .zoom-over:hover {
    transform: scale(1.1);
  }

  .fade-in-down {
    transform: translateY(-40px);
  }

  .section.animate .fade-in-down,
  .section.animate .fade-in-up {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-in-up {
    transform: translateY(20px);
  }
}

.logo-item {
  display: flex;
  justify-items: center;
}

.slick-track {
  display: flex !important;
  align-items: center;
}
.slider-solutions .slick-track {
  display: block !important;
}
.circle-bottom {
  bottom: -15%;
  right: -10%;
  box-shadow: 0 2px 4px rgba(0, 170, 255, 0.2);
}
.custom-border-blue {
  border-color: #0af;
}

@media only screen and (max-width: 500px) {
  .slogan {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
}

/* SECTION 3 */
#section3 {
  position: relative;
  overflow: hidden;
}
.circle {
  width: 370px;
  height: 370px;
  right: -155px;
  top: -200px;
  position: absolute;
}
.header-btn-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 104px;
  height: 40px;
  padding: 8px 24px;
}
.microsoft-img {
  width: 267px;
  height: 300px;
}
.microsoft-list {
  padding: 32px 0 32px 0;
  background: #f4f8ff !important;
}
.flex-column-section3 {
  gap: 12px;
  padding: 0 166px;
  z-index: 10;
}
.customer-rate {
  padding: 16px 16px 0 16px;
  align-items: center;
  flex-direction: column;
  height: 316px !important;
}
.rate {
  margin: 0 16px;
}
.color-text {
  color: #686868;
}
.rate-list-item {
  padding-bottom: 72px;
}
#section-customer {
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.border-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 16px;
  height: 1px;
  background: #e4e4e4;
}
.rate-comment {
  margin-bottom: 36px !important;
}
.new-logo {
  width: 304px;
  height: 118px;
}
.service-card {
  height: 416px !important;
}
.service-card-sub {
  height: 316px !important;
  font-size: 14px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.logo-slide {
  padding: 32px 64px !important;
}
.logo-item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 170px;
  height: 170px;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
}
.logo-item-img img {
  width: 138px;
}
.des-project {
  font-size: 16px !important;
}
.bg-project-section {
  background: #00aaff;
  color: #fff;
}
.des-project {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-table {
  bottom: -46px;
  right: -46px;
}
.circle-table-1 {
  bottom: -46px;
  left: -46px;
}
.bg-sg-cloud {
  background-image: url("/media/svg/backgroundCloud.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-sg-cloud {
  text-align: right;
  -webkit-text-stroke-width: 2px !important;
  -webkit-text-stroke-color: var(--Trng, #fff) !important;
  font-style: normal;
  color: #00aaff !important;
}
.text-sg-cloud,
.text-sg-cloud_1 {
  font-size: 100px;
  font-weight: 700 !important;
}
.text-form {
  color: #686868;
}
.border-form {
  border: 1px solid #e4e4e4;
  border-radius: 12px;
}

#about,
#section3,
#solution,
#cloud {
  min-height: 100vh;
  height: auto;
}

.img-solutione {
  padding-top: 0;
}
.frame-img {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 359px) {
  .text-sg-cloud {
    margin-top: 32px;
    font-size: 48px;
    text-align: center !important;
    margin-bottom: 32px;
  }
  .text-sg-cloud_1 {
    font-size: 48px;
    margin-bottom: 32px;
    text-align: center !important;
  }
  .customer-section-list {
    padding: 0 16px !important;
  }

  .title-about-section {
    text-align: center;
  }
  .flex-column-section3 {
    gap: 24px;
    padding: 0 16px;
    z-index: 10;
  }
  .new-logo {
    margin-top: 42px;
    margin-bottom: 42px;
    margin-right: 24px;
  }
  .frame-img {
    margin-top: 0;
    padding: 0;
  }

  .circle {
    display: none;
  }

  .customer-rate {
    height: 480px;
  }
  .logo-item-img {
    padding: 4px !important;
    width: 50px;
    height: 50px;
  }
  .logo-item-img img {
    width: 100%;
  }
  .logo-slide {
    padding: 12px 20px;
  }
  .logo-slide .arrow-slide {
    width: 36px;
    height: 36px;
  }
  .text-table {
    padding: 2px 6px !important;
  }
  .card-list {
    padding: 16px !important ;
  }
  .criteria {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    font-size: 14px;
  }
  .criteria-1 {
    margin: 0;
  }
  .text-critera {
    text-align: center;
  }
  .text-des-service {
    margin-bottom: 8px;
  }
  .service-card {
    width: 100%;
    height: 300px !important;
    margin-bottom: 16px;
  }
  .service-card-sub {
    height: 270px !important;
    margin-bottom: 24px;
  }
  .service-card-sub svg {
    margin: 48px auto;
  }
  .title-solution {
    text-align: center;
    margin-top: 16px;
    font-size: 36px;
  }
  .text-solution {
    text-align: center;
  }
  .set-right {
    margin-right: 16px;
  }
  .set-table {
    padding-left: 16px;
  }
  .img-solutione {
    margin-bottom: 46px;
  }
  .bottom-section-fix {
    margin-bottom: 0 !important;
  }
  .bottom-section-fix ul li,
  .bottom-section-fix-1 ul li {
    margin-bottom: 8px;
    margin-top: 12px;
  }
  .footer-menu-list {
    display: none !important;
  }
  .footer-contact-list {
    display: none;
  }
  .coppy-right {
    margin-top: 0 !important;
    color: 12px;
  }
  .title-footer-list {
    display: none;
  }
  footer .social {
    display: none;
  }
  .social-media-items {
    display: flex;
    justify-content: center;
  }
  footer {
    text-align: center;
  }
  .footer-contact-list {
    display: none;
  }

  #footer {
    padding: 12px;
  }
}

@media only screen and (min-width: 360px) and (max-width: 394px) {
  .mb-menu-contact {
    padding: 0 16px;
  }
  .mb-menu-contact a {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  #select-language {
    display: flex;
    /* justify-content: center; */
  }
  #mobile-menu-drawer {
    font-size: 18px !important;
    text-align: center;
  }
  #mobile-menu-drawer span {
    font-size: 16px !important;
  }

  .contact-by-social {
    display: block;
    position: absolute;
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
  }
  #footer {
    padding: 16px;
  }
  .coppy-right {
    font-size: 14px;
    margin-top: 0 !important;
  }
  .title-footer-list {
    display: none;
  }
  footer .social {
    display: none;
  }
  .social-media-items {
    display: flex;
    justify-content: center;
  }
  footer {
    text-align: center;
  }
  .footer-contact-list {
    display: none;
  }
  .footer-menu-list {
    display: none !important;
  }
  .img-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
  }
  .social-media {
    text-align: center !important;
  }

  .title-infomation {
    font-size: 18px !important;
  }
  .contact-section {
    padding: 24px 16px 32px 16px !important;
  }
  .form-contact {
    margin-bottom: 0 !important;
  }
  #contact {
    margin-top: 48px;
    padding-top: 64px !important;
    padding-bottom: 0 !important;
  }

  .name-left {
    margin-left: 8px !important;
  }
  .customer-section-list {
    padding: 0 16px !important;
  }
  .project-section {
    padding: 0 16px !important;
  }
  .hi-tech-section {
    padding: 0 16px !important;
  }
  .list_img-hi-tech {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }
  .item-img-tech {
    padding-top: 8px;
    display: flex;
    justify-content: center !important;
    width: 100% !important;
  }
  .list_img-hi-tech div {
    margin: 0 !important;
  }
  .text-tech-title {
    display: flex;
    align-items: flex-start;
  }
  .text-tech-detail {
    text-align: left;
  }
  .set-table-img {
    margin: 0 !important;
  }
  .table-icon li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  .table-icon span {
    text-align: left;
  }
  .text-sg-cloud {
    margin-top: 32px;
    font-size: 56px;
    text-align: center !important;
    margin-bottom: 24px !important;
  }
  .text-sg-cloud_1 {
    font-size: 56px;
    margin-bottom: 24px !important;
    text-align: center !important;
  }
  .set-cloud-row {
    display: flex;
    flex-direction: column-reverse !important;
    background: #00aaff;
    padding-bottom: 48px;
  }
  .section-solution {
    margin-top: 0;
  }
  .img-solutione {
    margin-bottom: 46px;
  }
  .bottom-section-fix {
    margin-bottom: 0 !important;
  }
  .bottom-section-fix ul li,
  .bottom-section-fix-1 ul li {
    margin-bottom: 8px;
    margin-top: 12px;
  }
  .title-solution {
    text-align: center;
    margin-top: 16px;
    font-size: 36px;
  }
  .text-solution {
    text-align: center;
  }
  .set-right {
    margin-right: 16px !important;
  }
  .set-table {
    padding-left: 16px !important;
  }
  .service-card-sub svg {
    margin: 48px auto;
  }
  .criteria {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    font-size: 14px;
  }
  .criteria-1 {
    margin: 0;
  }
  .text-critera {
    text-align: center;
  }
  .text-des-service {
    margin-bottom: 8px !important;
  }
  .btn-contact-fix {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .new-logo {
    margin-top: 42px;
    margin-bottom: 42px;
    margin-left: 16px;
  }
  .frame-img {
    margin-top: 0;
    padding: 0;
  }

  .frame-img img {
    object-fit: contain;
  }
  .title-about-section {
    text-align: center;
  }

  .flex-column-section3 {
    gap: 24px;
    padding: 0 24px;
    z-index: 10;
  }
  .circle {
    display: none;
  }
  .bottom-section-fix {
    margin-bottom: 12px;
  }

  .customer-rate {
    height: 386px !important;
  }
  .logo-item {
    padding: 0 4px !important;
  }
  .logo-item-img {
    padding: 8px;
    width: 100px;
    height: 100px;
  }
  .logo-item-img img {
    width: 100%;
  }
  .logo-slide {
    padding: 24px 64px !important;
  }
  .logo-slide .arrow-slide {
    width: 42px;
    height: 42px;
  }
  .text-table {
    padding: 2px 12px !important;
  }
  .img-solutione {
    padding-left: 16px !important;
  }
  .service-card {
    width: 100% !important;
    height: 420px !important;
    margin-bottom: 16px;
  }

  .card-list {
    padding: 16px !important ;
  }
}
@media only screen and (min-width: 395px) and (max-width: 468px) {
  .mb-menu-contact {
    padding: 0 16px;
  }
  .mb-menu-contact a {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  #select-language {
    display: flex;
    /* justify-content: center; */
  }
  #mobile-menu-drawer {
    font-size: 18px !important;
    text-align: center;
  }
  #mobile-menu-drawer span {
    font-size: 16px !important;
  }

  .contact-by-social {
    display: block;
    position: absolute;
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
  }
  #footer {
    padding: 16px;
  }
  .coppy-right {
    font-size: 14px;
    margin-top: 0 !important;
  }
  .title-footer-list {
    display: none;
  }
  footer .social {
    display: none;
  }
  .social-media-items {
    display: flex;
    justify-content: center;
  }
  footer {
    text-align: center;
  }
  .footer-contact-list {
    display: none;
  }
  .footer-menu-list {
    display: none !important;
  }
  .img-footer {
    display: flex;
    justify-content: center;
    display: none;
  }
  .social-media {
    text-align: center !important;
  }

  .title-infomation {
    font-size: 18px !important;
  }
  .contact-section {
    padding: 24px 16px 32px 16px !important;
  }
  .form-contact {
    margin-bottom: 0 !important;
  }
  #contact {
    margin-top: 48px;
    padding-top: 64px !important;
    padding-bottom: 0 !important;
  }

  .name-left {
    margin-left: 8px !important;
  }
  .customer-section-list {
    padding: 0 16px !important;
  }
  .project-section {
    padding: 0 16px !important;
  }
  .hi-tech-section {
    padding: 0 16px !important;
  }
  .list_img-hi-tech {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }
  .item-img-tech {
    padding-top: 8px;
    display: flex;
    justify-content: center !important;
    width: 100% !important;
  }
  .list_img-hi-tech div {
    margin: 0 !important;
  }
  .text-tech-title {
    display: flex;
    align-items: flex-start;
  }
  .text-tech-detail {
    text-align: left;
  }
  .set-table-img {
    margin: 0 !important;
  }
  .table-icon li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  .table-icon span {
    text-align: left;
  }
  .text-sg-cloud {
    margin-top: 32px;
    font-size: 56px;
    text-align: center !important;
    margin-bottom: 24px !important;
  }
  .text-sg-cloud_1 {
    font-size: 56px;
    margin-bottom: 24px !important;
    text-align: center !important;
  }
  .set-cloud-row {
    display: flex;
    flex-direction: column-reverse !important;
    background: #00aaff;
    padding-bottom: 48px;
  }
  .section-solution {
    margin-top: 0;
  }
  .img-solutione {
    margin-bottom: 46px;
  }
  .bottom-section-fix {
    margin-bottom: 0 !important;
  }
  .bottom-section-fix ul li,
  .bottom-section-fix-1 ul li {
    margin-bottom: 8px;
    margin-top: 12px;
  }
  .title-solution {
    text-align: center;
    margin-top: 16px;
    font-size: 36px;
  }
  .text-solution {
    text-align: center;
  }
  .set-right {
    margin-right: 16px !important;
  }
  .set-table {
    padding-left: 16px !important;
  }
  .service-card-sub svg {
    margin: 48px auto;
  }
  .criteria {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    font-size: 14px;
  }
  .criteria-1 {
    margin: 0;
  }
  .text-critera {
    text-align: center;
  }
  .text-des-service {
    margin-bottom: 8px !important;
  }
  .btn-contact-fix {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .new-logo {
    margin-top: 42px;
    margin-bottom: 42px;
    margin-right: 24px;
  }
  .frame-img {
    margin-top: 0;
    padding: 0;
  }

  .frame-img img {
    object-fit: contain;
  }
  .title-about-section {
    text-align: center;
  }

  .flex-column-section3 {
    gap: 24px;
    padding: 0 24px;
    z-index: 10;
  }
  .circle {
    display: none;
  }
  .bottom-section-fix {
    margin-bottom: 12px;
  }

  .customer-rate {
    height: 336px !important;
  }
  .logo-item {
    padding: 0 4px !important;
  }
  .logo-item-img {
    padding: 8px;
    width: 100px;
    height: 100px;
  }
  .logo-item-img img {
    width: 100%;
  }
  .logo-slide {
    padding: 24px 64px !important;
  }
  .logo-slide .arrow-slide {
    width: 42px;
    height: 42px;
  }
  .text-table {
    padding: 2px 12px !important;
  }
  .img-solutione {
    padding-left: 16px !important;
  }
  .service-card {
    width: 100% !important;
    height: 420px !important;
    margin-bottom: 16px;
  }

  .card-list {
    padding: 16px !important ;
  }
}

@media only screen and (min-width: 468px) and (max-width: 765px) {
  .mb-menu-contact {
    padding: 0 16px;
  }
  .mb-menu-contact a {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  #select-language {
    display: flex;
    /* justify-content: center; */
  }
  #mobile-menu-drawer {
    font-size: 18px !important;
    text-align: center;
  }
  #mobile-menu-drawer span {
    font-size: 16px !important;
  }

  .contact-by-social {
    display: block;
    position: absolute;
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
  }
  #footer {
    padding: 16px;
  }
  .coppy-right {
    font-size: 14px;
    margin-top: 0 !important;
  }
  .title-footer-list {
    display: none;
  }
  footer .social {
    display: none;
  }
  .social-media-items {
    display: flex;
    justify-content: center;
  }
  footer {
    text-align: center;
  }
  .footer-contact-list {
    display: none;
  }
  .footer-menu-list {
    display: none !important;
  }
  .img-footer {
    display: flex;
    justify-content: center;
    display: none;
  }
  .social-media {
    text-align: center !important;
  }

  .title-infomation {
    font-size: 18px !important;
  }
  .contact-section {
    padding: 24px 16px 32px 16px !important;
  }
  .form-contact {
    margin-bottom: 0 !important;
  }
  #contact {
    margin-top: 48px;
    padding-top: 64px !important;
    padding-bottom: 0 !important;
  }

  .name-left {
    margin-left: 8px !important;
  }
  .customer-section-list {
    padding: 0 16px !important;
  }
  .project-section {
    padding: 0 16px !important;
  }
  .hi-tech-section {
    padding: 0 16px !important;
  }
  .text-tech-title {
    display: flex;
    align-items: flex-start;
  }
  .text-tech-detail {
    text-align: left;
  }
  .set-table-img {
    margin: 0 !important;
  }
  .table-icon li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  .table-icon span {
    text-align: left;
  }
  .text-sg-cloud {
    margin-top: 32px;
    font-size: 56px;
    text-align: center !important;
    margin-bottom: 24px !important;
  }
  .text-sg-cloud_1 {
    font-size: 56px;
    margin-bottom: 24px !important;
    text-align: center !important;
  }
  .set-cloud-row {
    display: flex;
    flex-direction: column-reverse !important;
    background: #00aaff;
    padding-bottom: 48px;
  }
  .title-about-section {
    text-align: center;
  }

  .flex-column-section3 {
    gap: 24px;
    padding: 0 32px;
    z-index: 10;
  }
  .bottom-section-fix {
    margin-bottom: 12px;
  }
  .img-solutione {
    margin-left: 16px;
  }
  .text-sg-cloud,
  .text-sg-cloud_1 {
    font-size: 72px;
  }
  .customer-rate {
    height: 280px !important;
  }
  .logo-item-img {
    padding: 12px;
    width: 64px;
    height: 64px;
  }
  .logo-item-img img {
    width: 100%;
  }
  .logo-slide {
    padding: 12px 24px;
  }
  .logo-slide .arrow-slide {
    width: 56px;
    height: 56px;
  }
  .img-solutione {
    padding-left: 16px !important;
  }
  .icon-signature svg {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .img-solutione {
    display: flex;
    justify-content: center;
    flex-direction: column !important;
    justify-content: center;
  }
  .flex-column-section3 {
    gap: 24px;
    padding: 0 122px;
    z-index: 10;
  }
  .bottom-section-fix {
    margin-bottom: 12px;
  }
  .img-solutione {
    margin-left: 16px;
  }
  .text-sg-cloud,
  .text-sg-cloud_1 {
    font-size: 72px;
  }
  .customer-rate {
    height: 284px !important;
  }
  .logo-item-img {
    padding: 4px !important;
    width: 100px;
    height: 100px;
  }
  .logo-item-img img {
    width: 100%;
  }
  .logo-slide {
    padding: 0px 64px;
  }
  .logo-item {
    padding: 0 8px;
  }
  .logo-item-img img {
    padding: 16px 8px;
  }
  .project-section {
    padding: 12px 24px !important;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1360px) {
  .img-solutione {
    display: flex;
    justify-content: center;
    flex-direction: column !important;
    justify-content: center;
  }
  .customer-rate {
    height: 416px !important;
  }
  .rate-comment {
    margin-bottom: 32px;
  }
  .title-about-section {
    margin-top: 0;
  }
  .text-about-section {
    margin-top: 12px;
  }
  .btn-contact {
    margin-top: 12px;
  }
  .bg-blue-section {
    padding: 12px 16px;
  }
  .btn-section-3 {
    margin-bottom: 24px;
  }
  .title-section-3 {
    margin-top: 16px;
  }
  .logo-item {
    padding: 8px;
  }
}
@media only screen and (min-width: 1360px) and (max-width: 1399px) {
  .img-solutione {
    display: flex;
    justify-content: center;
    flex-direction: column !important;
    justify-content: center;
  }
  .customer-rate {
    height: 316px !important;
  }
  .rate-comment {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1494px) {
  .img-solutione {
    display: flex;
    justify-content: center;
    flex-direction: column !important;
    justify-content: center;
  }
  .service-card {
    height: 420px !important;
  }
  .rate-comment {
    margin-bottom: 32px;
  }
  .service-card-sub {
    height: 320px !important;
    margin-bottom: 24px;
  }
  .logo-slide {
    margin-top: 72px;
    padding: 48px 64px;
  }
  .title-about-section {
    margin-top: 36px;
  }
}
@media only screen and (min-width: 1495px) and (max-width: 1579px) {
  .service-card {
    height: 420px !important;
  }
  .service-card-sub {
    height: 320px !important;
    margin-bottom: 24px;
  }
  .logo-slide {
    padding: 4px 64px;
  }
}
@media only screen and (min-width: 1580px) and (max-width: 1619px) {
  body {
    font-size: 14px !important;
  }
  .customer-rate {
    height: 360px !important;
  }
  .logo-list {
    margin-top: 80px !important;
  }
  .rate-comment {
    margin-bottom: 48px;
  }
  .bg-blue-section {
    margin-top: 0px;
  }
  .text-about-section {
    margin-top: 12px !important;
  }
  .title-about-section {
    margin-top: 0 !important;
  }
  .logo-slide {
    padding: 16px 80px;
  }
  .title-project {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .text-hi-tech {
    margin-top: 32px;
    margin-bottom: 16px;
  }
  .title-section-3 {
    margin-top: 32px;
  }
  .btn-section-3 {
    margin-bottom: 16px;
  }
  .bg-blue-section {
    padding: 12px 16px;
  }
  .btn-contact {
    margin-top: 16px;
  }
  .text-service {
    margin-top: 56px;
  }
  .text-des-service {
    margin-bottom: 24px;
  }
  .text-solution {
    margin-bottom: 16px !important;
  }
}
@media only screen and (min-width: 1620px) {
  .service-card-sub {
    height: 400px !important;
  }
  .service-card {
    height: 520px !important;
  }
  .rate-comment {
    margin-bottom: 32px;
  }
  .title-about-section {
    margin-top: 0 !important;
  }

  .new-logo {
    margin-top: 72px !important;
  }
  .title-project {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .text-hi-tech {
    margin-top: 32px !important;
    margin-bottom: 16px !important;
  }
  .title-section-3 {
    margin-top: 32px;
  }
  .btn-section-3 {
    margin-bottom: 16px;
  }
  .bg-blue-section {
    padding: 12px 16px;
  }
  .btn-contact {
    margin-top: 16px;
  }
  .text-service {
    margin-top: 56px;
  }
}
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../media/Vector 2.svg");
  background-repeat: no-repeat;
  background-position: right 1em top 50%;
}
select option:nth-child(1) {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
select option:nth-last-child(2) {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.glassmorphism_bg {
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
::-webkit-input-placeholder:after {
  content: "*";
}

:-moz-placeholder:after {
  /* Firefox 18- */
  content: "*";
}

::-moz-placeholder:after {
  /* Firefox 19+ */
  content: "*";
}

:-ms-input-placeholder:after {
  content: "*";
}
.astis::after {
  content: "*";
  color: red;
}
.img-slide {
  transition: opacity 0.5s ease-in-out;
}
.morgate-desc {
  /* text-align: justify; */
  /* hyphens: auto; */
  /* -webkit-hyphens: auto; */
}
/* .loaded_fadeIn {
  animation: fadein 1s ease-in-out;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
} */
.news-container-colum div:last-child div {
  border: none;
}
#mobile-menu-drawer {
  z-index: 999;
}
.contact-by-social {
  z-index: 998;
}
.cardUI * {
  all: inherit;
}
.reset-styles ol {
  list-style: decimal;
  margin-left: 20px;
}
.reset-styles span {
  display: inline-block;
}
.reset-styles ul {
  list-style: unset;
  margin-left: 20px;
}
.reset-styles h2 {
  font-size: larger;
  font-weight: 600;
}
.reset-styles h1 {
  font-size: large;
  font-weight: 600;
}
.reset-styles h3 {
  font-size: medium;
  font-weight: 600;
}
