*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
select,
textarea {
  background-color: transparent;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: 0;
}

body {
  min-height: 100vh;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

:root {
  --primary-color: #222222;
  --secondary-color: #ffffff;
  --background-color: #d92626;
  --orange-color: #f66929;
  --yellow-color: #e9b312;
  --blue-color: rgb(0, 61, 228);
  --skyblue-color: #02ccfe;
  --green-color: #51cd0a;
  --btn-green-color: #82ce34;
  --loading-color: rgb(187, 1, 1);
  --gray-color: #686868;
  --dark-blue-color: #1700c5;
  --viber-color: #7360f2;
  --skype-color: #00AFF0;
  --zalo-color: #006AF5;
  --facetime-color: #00FF00;
  --linear-gradient-color: linear-gradient(
    10deg,
    var(--primary-color) 0%,
    var(--background-color) 50%,
    var(--primary-color) 100%
  );
  --angle: 45deg;
  --opacity: 0.5;
}

.btn-error {
  background: var(--background-color);
}

.btn-success {
  background: var(--btn-green-color);
}

.limit-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.error {
  color: red;
}

#preloader-wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  flex-direction: column;
}
#preloader-wrap .preloader {
  position: relative;
  width: 100px;
  height: 100px;
  perspective: 750px;
}
#preloader-wrap .loading-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#preloader-wrap .loading-circle-one {
  left: 0;
  top: 0;
  border-bottom: 4px solid var(--loading-color);
  animation: loading-circle-one 10s infinite linear;
}
#preloader-wrap .loading-circle-two {
  right: 0;
  top: 0;
  border-right: 4px solid var(--loading-color);
  animation: loading-circle-two 10s infinite linear;
}
#preloader-wrap .loading-circle-three {
  right: 0;
  bottom: 0;
  border-top: 4px solid var(--loading-color);
  animation: loading-circle-three 10s infinite linear;
}
#preloader-wrap .preloader_company {
  margin-top: 2rem;
}
#preloader-wrap .preloader_company h2 {
  color: var(--loading-color);
  font-size: 3rem;
  display: flex;
  align-items: center;
}
#preloader-wrap .preloader_company h2 span {
  animation: animate_company 4s linear infinite;
}
#preloader-wrap .preloader_company h2 span:nth-child(1) {
  animation-delay: 0s;
}
#preloader-wrap .preloader_company h2 span:nth-child(2) {
  animation-delay: 0.1s;
}
#preloader-wrap .preloader_company h2 span:nth-child(3) {
  animation-delay: 0.2s;
}
#preloader-wrap .preloader_company h2 span:nth-child(4) {
  animation-delay: 0.3s;
}
#preloader-wrap .preloader_company h2 span:nth-child(6) {
  animation-delay: 0.4s;
}
#preloader-wrap .preloader_company h2 span:nth-child(7) {
  animation-delay: 0.5s;
}
#preloader-wrap .preloader_company h2 span:nth-child(8) {
  animation-delay: 0.6s;
}

header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.2);
}
header li {
  list-style-type: none;
}
header .navbar {
  align-items: center;
  transition: 1s ease-in-out;
  height: 60px;
}
header .navbar-logo {
  max-width: 200px;
  max-height: 50px;
  margin-top: 3px;
}
header .navbar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  header .navbar-logo {
    max-width: 150px;
  }
}
header .navbar li {
  padding: 0 0.5rem;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  header .navbar li {
    padding: 0 0.2rem;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  header .navbar li {
    padding: 0 0.08rem;
  }
}
@media only screen and (max-width: 575.98px) {
  header .navbar li {
    transform: translateY(-50px);
    transition: 0.3s ease;
    opacity: 0;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  header .navbar li {
    transform: translateY(-50px);
    transition: 0.3s ease;
    opacity: 0;
  }
}
header .navbar li a {
  color: var(--primary-color);
}
header .navbar li a.nav-link {
  position: relative;
  color: var(--secondary-color);
  font-size: 1.3rem;
  padding: 10px 0;
  transition: 0.3s ease;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  header .navbar li a.nav-link {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  header .navbar li a.nav-link {
    font-size: 0.8rem;
  }
}
header .navbar li a.nav-link.active {
  color: var(--secondary-color) !important;
}
header .navbar li a.nav-link.active::before {
  content: "";
  position: absolute;
  background: var(--secondary-color);
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.5s ease;
}
header .navbar li a.nav-link::before {
  content: "";
  position: absolute;
  background: var(--secondary-color);
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.5s ease;
}
header .navbar li a.nav-link:hover {
  color: var(--secondary-color);
}
header .navbar li a.nav-link:hover::before {
  width: 100%;
}
header .navbar-toggler {
  z-index: 1;
  border: none !important;
  color: var(--secondary-color);
}
@media only screen and (max-width: 575.98px) {
  header .navbar-collapse {
    background-color: var(--primary-color);
    transform: translateY(-50px);
    transition: 0.3s ease;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  header .navbar-collapse {
    background-color: var(--primary-color);
    transform: translateY(0);
    transition: 0.3s ease;
  }
}
header .navbar .lang-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
header .navbar .lang-list img {
  width: 1.2rem;
}
header .navbar .lang-item {
  transform: translateY(0);
  opacity: 1;
}
header .navbar .lang-item a:hover::before {
  width: 0%;
}
@media only screen and (max-width: 575.98px) {
  header .navbar-collapse.show {
    background-color: var(--primary-color);
    text-align: center;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  header .navbar-collapse.show {
    background-color: var(--primary-color);
    text-align: center;
  }
}
header .navbar-collapse.show .navbar {
  transition: 0.3s ease;
}
@media only screen and (max-width: 575.98px) {
  header .navbar-collapse.show .nav-item {
    transform: translateY(0);
    transition-delay: calc(0.15s * var(--i));
    opacity: 1;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  header .navbar-collapse.show .nav-item {
    transform: translateY(0);
    transition-delay: calc(0.15s * var(--i));
    opacity: 1;
  }
}
header .navbar-nav {
  align-items: center;
}

.home {
  position: relative;
}
.home .background-page img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.home .background-page::before {
  content: "";
  position: absolute;
  background: rgb(0, 0, 0);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 1399.99px) {
  .home .carousel-inner {
    height: 100vh;
  }
}
.home .carousel-item {
  background-color: var(--primary-color);
}
.home .carousel img {
  opacity: 0.2;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  height: 100vh;
}
.home .carousel-content {
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--secondary-color);
  line-height: 1.5;
  width: 80%;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  opacity: 0;
  transition: all 0.5s ease;
  animation: loadContentCarousel 1s ease forwards;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .home .carousel-content {
    flex-direction: column;
    padding-top: 100px;
  }
}
@media only screen and (max-width: 575.98px) {
  .home .carousel-content {
    flex-direction: column;
    padding-top: 100px;
  }
}
.home .carousel-content .content-image {
  position: static;
  z-index: 999;
  flex: 1;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .home .carousel-content .content-image {
    width: 80%;
  }
}
.home .carousel-content .content-image img {
  opacity: 1;
  object-fit: contain;
  border: none;
  outline: none;
  border-radius: 5px;
  height: 100%;
}
.home .carousel-content .content-desc {
  flex: 1;
}
.home .carousel .content-desc {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}
.home .carousel h1 {
  font-size: 3rem;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .home .carousel h1 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .home .carousel h1 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .home .carousel h1 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .home .carousel h1 {
    font-size: 3rem;
  }
}
.home .carousel .carousel-desc {
  padding-top: 0.5rem;
  line-height: 1.5;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .home .carousel .carousel-desc {
    padding: 1.5rem 0;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .home .carousel .carousel-desc {
    padding: 1.3rem 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .home .carousel .carousel-desc {
    padding: 0.2rem 0;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .home .carousel .carousel-desc {
    padding: 1.5rem 0;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .home .carousel .btn-custom {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .home .carousel .btn-custom {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .home .carousel .btn-custom {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .home .carousel .btn-custom {
    font-size: 1rem;
  }
}

section {
  padding: 100px 0;
}
section .section-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8rem;
  text-align: center;
  text-shadow: 2px -6px 3px rgba(128, 0, 0, 0.43);
}
@media only screen and (max-width: 575.98px) {
  section .section-title {
    font-size: 2rem;
    font-weight: 800;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  section .section-title {
    font-size: 3rem;
  }
}
section .section-title span {
  color: crimson;
}
section .section-desc {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: start;
  color: var(--primary-color);
  padding: 50px 0;
  margin: 0 auto;
  width: 80%;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  section .section-desc {
    padding: 10px 40px;
    width: 100%;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  section .section-desc {
    padding: 10px 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  section .section-desc {
    padding: 10px 20px;
    width: 100%;
  }
}

.btn-custom {
  background: linear-gradient(-30deg, #480c0c 50%, #600707 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: var(--secondary-color);
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
}
.btn-custom::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.btn-custom:hover::before {
  opacity: 0.1;
}
.btn-custom span {
  position: absolute;
}
.btn-custom span::nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  border-radius: 5%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}
.btn-custom span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  border-radius: 5%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}
.btn-custom span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  border-radius: 5%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}
.btn-custom span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  border-radius: 5%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

.toTop {
  display: none;
  background: #600707;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 12px;
  border-radius: 5px;
  z-index: 999;
  cursor: pointer;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .toTop {
    padding: 20px 25px;
  }
}
@media only screen and (min-width: 1399.99px) {
  .toTop {
    padding: 20px 25px;
  }
}
.toTop i {
  color: var(--secondary-color);
  font-size: 1rem;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .toTop i {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1399.99px) {
  .toTop i {
    font-size: 1.2rem;
  }
}
.toTop:hover {
  scale: 1.2;
  transition: all 0.5s linear;
}

.clientList .slick-prev::before,
.clientList .slick-next::before {
  color: var(--gray-color);
}
.clientList .slick-track {
  display: flex;
  align-items: center;
}
.clientList .slick-slide {
  display: inline-block;
  padding: 20px !important;
}

.service-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.service-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  flex-wrap: wrap;
}
.service-bottom .item {
  flex: 20;
  padding-top: 100px;
  color: black;
}
@media only screen and (max-width: 575.98px) {
  .service-bottom .item {
    flex: auto;
    padding-top: 50px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .service-bottom .item {
    flex: auto;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .service-bottom .item {
    flex: auto;
  }
}
.service-item {
  height: 420px;
  border: 1px dashed var(--primary-color);
  box-shadow: rgba(38, 45, 118, 0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .service-item {
    height: auto;
  }
}
@media only screen and (max-width: 575.98px) {
  .service-item {
    height: auto;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .service-item {
    height: auto;
  }
}
.service-item .item-light {
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border-radius: 20px;
  top: -2px;
  position: absolute;
  overflow: hidden;
  z-index: -10;
  background-color: var(--secondary-color);
}
.service-item .item-light::before {
  content: "";
  background: conic-gradient(transparent 270deg, var(--blue-color), transparent);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  width: 200%;
  animation: rorate 3s linear infinite;
}
.service-item .item-light::after {
  content: "";
  background: inherit;
  border-radius: inherit;
  position: absolute;
  inset: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
.service-content {
  margin-top: -15%;
  color: black;
}
@media only screen and (max-width: 575.98px) {
  .service-content {
    margin-top: 0;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .service-content {
    margin-top: -10%;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .service-content {
    margin-top: 0;
  }
}
.service-content h2 {
  line-height: 1.2;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  font-size: 1.5rem;
  color: black;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .service-content h2 {
    height: auto;
    font-size: 1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.service-content p {
  overflow: hidden;
  padding: 20px 20px 0 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: black;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .service-content p {
    padding: 0px 10px;
  }
}
.service-icon {
  width: 150px;
  height: 150px;
  border: 1px dashed var(--primary-color);
  border-radius: 100%;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
}
.service-icon::before {
  content: "";
  background: conic-gradient(transparent 270deg, var(--blue-color), transparent);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  width: calc(100% + 10px);
  animation: rorate 3s linear infinite;
}
.service-icon::after {
  content: "";
  background: inherit;
  border-radius: inherit;
  position: absolute;
  inset: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 10;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .service-icon {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .service-icon {
    width: 150px;
    height: 150px;
  }
}
@media only screen and (max-width: 575.98px) {
  .service-icon {
    width: 100px;
    height: 100px;
  }
}

.service-page .service-bottom .program-list {
  z-index: 999;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .service-page .service-bottom .program-list {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 575.98px) {
  .service-page .service-bottom .program-list {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .service-page .service-bottom .program-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-page .service-bottom .program-item {
  height: 300px;
  margin: 0.5rem;
  border: 1px solid black;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
}
.service-page .service-bottom .program-title {
  font-size: 1.8rem;
  height: fit-content;
  background: var(--linear-gradient-color);
  padding: 20px 0px;
  color: var(--secondary-color);
}
.service-page .service-bottom .program .list-content {
  text-align: center;
  margin: auto 0;
  font-size: 1.2rem;
  flex-shrink: 0;
  padding: 10px;
}
.service-page .service-bottom .program .list-item {
  margin: 10px 0;
  padding: 10px 0;
  line-height: 1.5;
}

.page-service__item {
  height: 100vh;
  position: relative;
  line-height: 1.5;
  margin: 100px 0;
}
.page-service__item .main {
  display: flex;
  position: absolute;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  align-items: center;
  padding: 0 0.5rem;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .page-service__item .main {
    padding: 2rem;
  }
}
@media only screen and (min-width: 1399.99px) {
  .page-service__item .main {
    padding: 2rem;
  }
}
.page-service__item .main-left {
  text-align: center;
  flex: 1;
  border-radius: 24px;
  color: white;
  background-color: red;
}
.page-service__item .main-left .title {
  font-size: 1.5rem;
  padding: 0.2rem;
}
.page-service__item .main-left .btn {
  float: right;
  margin-top: 2rem;
  color: yellow;
}
.page-service__item .main-right {
  flex: 6;
  color: white;
  padding: 2rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 575.98px) {
  .page-service__item .main-right {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .page-service__item .main-right {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .page-service__item .main-right {
    font-size: 1.3rem;
  }
}
.page-service__item .main-right ul.list-desc {
  list-style-position: outside;
}

#outsource {
  margin-top: 0;
  padding-top: 0;
  width: 100%;
  background: url("../assets/images/service/background/1.png") no-repeat center/cover;
}
#outsource::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}

#web {
  width: 100%;
  background: url("../assets/images/service/background/2.png") no-repeat center/cover;
}
#web::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}

#mobile {
  width: 100%;
  background: url("../assets/images/service/background/3.png") no-repeat center/cover;
}

#system {
  width: 100%;
  background: url("../assets/images/service/background/4.png") no-repeat center/cover;
}

#software .main {
  flex-direction: row-reverse;
}
#software .main-right {
  display: flex;
  gap: 20px;
  color: var(--primary-color);
}
@media only screen and (max-width: 575.98px) {
  #software .main-right {
    flex-direction: column;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  #software .main-right {
    flex-direction: column;
  }
}
#software .main-right__content {
  margin: 3rem;
}
#software .main-right__bottom {
  color: white;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(140, 140, 140) 2%, rgb(78, 78, 78) 4%, rgb(0, 0, 0) 100%);
}
#software .main-right__bottom p {
  margin: 1rem;
}
#software .main-right__bottom ul {
  margin: 0 1rem;
}
#software .main-right .service-item {
  margin-top: 1rem;
  background-color: red;
  width: 80%;
  margin: 1rem auto;
  height: auto;
}
#software .main-right .service-item .title {
  color: white;
}
#software .main-right .service-item .btn-link {
  color: yellow;
}

.programs {
  padding-bottom: 0px;
}
.programs .service-bottom {
  width: 100%;
  height: 100%;
  background: url("../assets/images/computer.jpeg");
  background-size: cover;
  position: relative;
  padding: 40px 0;
}
.programs .service-bottom::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}

.productions {
  padding: 0px 0px;
}
@media only screen and (max-width: 575.98px) {
  .productions .section-title {
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .productions .section-title {
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .productions .section-title {
    letter-spacing: 0;
  }
}
.productions .production-main {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 575.98px) {
  .productions .production-main {
    flex-direction: column;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .productions .production-main {
    flex-direction: column;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .productions .production-main {
    flex-direction: column;
    font-size: 1.3rem;
  }
}
.productions .production-left {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex: 1;
  flex-shrink: 0;
  background: #861400;
}
@media only screen and (max-width: 575.98px) {
  .productions .production-left {
    padding: 0;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .productions .production-left {
    padding: 0;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .productions .production-left {
    padding: 0;
  }
}
.productions .production-left__list {
  padding: 20px 0;
}
@media only screen and (max-width: 575.98px) {
  .productions .production-left__list {
    display: flex;
    margin: 0 !important;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .productions .production-left__list {
    display: flex;
    margin: 0 !important;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .productions .production-left__list {
    display: flex;
    margin: 0 !important;
  }
}
.productions .production-left__item {
  list-style-type: none;
  padding: 10px 5px;
  font-size: 2rem;
  text-align: start;
  letter-spacing: 0.5rem;
}
@media only screen and (max-width: 575.98px) {
  .productions .production-left__item {
    font-size: 1rem;
    letter-spacing: 0.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .productions .production-left__item {
    font-size: 1rem;
    letter-spacing: 0.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .productions .production-left__item {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.productions .production-left__item span {
  color: #ec2b00;
  font-size: 4rem;
}
@media only screen and (max-width: 575.98px) {
  .productions .production-left__item span {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .productions .production-left__item span {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .productions .production-left__item span {
    font-size: 4rem;
  }
}
.productions .production-left .vertical-text {
  color: var(--secondary-color);
  opacity: 0.6;
  display: inline-block;
  font-size: 16px;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .productions .production-left .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
@media only screen and (max-width: 575.98px) {
  .productions .production-left .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .productions .production-left .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
.productions .production-left__desc {
  font-size: 1rem !important;
  letter-spacing: 2px;
}
.productions .production-right {
  flex: 4;
  position: relative;
}
@media only screen and (max-width: 575.98px) {
  .productions .production-right {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .productions .production-right {
    margin-top: 1.5rem;
  }
}
.productions .production-right__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.productions .production-right__top {
  flex: 1;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .productions .production-right__top {
    padding-left: 1rem;
  }
}
@media only screen and (min-width: 1399.99px) {
  .productions .production-right__top {
    padding-left: 1rem;
  }
}
.productions .production-right__list {
  padding: 0;
}
@media only screen and (max-width: 575.98px) {
  .productions .production-right__list {
    margin: auto 0;
  }
}
.productions .production-right__item {
  list-style-type: none;
  padding: 5px 0;
  text-align: start;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media only screen and (max-width: 575.98px) {
  .productions .production-right__item {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .productions .production-right__item {
    font-size: 1.2rem;
  }
}
.productions .production-right__item span {
  font-size: 2rem;
  font-weight: 600;
}
@media only screen and (max-width: 575.98px) {
  .productions .production-right__item span {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .productions .production-right__item span {
    font-size: 1.5rem;
  }
}
.productions .production-right__bottom {
  flex: 2;
  padding-top: 50px;
}
.productions .production-right__bottom img {
  width: 65%;
  margin: 0 auto;
}
.productions .production-slogan {
  background: #4b0700;
}
.productions .production-slogan p {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  padding: 40px 20px;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--secondary-color);
}

.dropdown:hover > .dropdown-menu {
  display: block;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.dropdown-toggle {
  color: white;
  padding: 0;
}
.dropdown-toggle:active {
  pointer-events: none;
}
.dropdown-menu {
  top: 85% !important;
  padding: 0.5rem;
  margin: 0 !important;
  border: none;
}
@media only screen and (max-width: 575.98px) {
  .dropdown-menu .service-bottom {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .dropdown-menu .service-bottom {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
.dropdown-menu .service-bottom .item {
  padding-top: 20px;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .dropdown-menu .service-bottom .item {
    width: 50%;
  }
}
@media only screen and (max-width: 575.98px) {
  .dropdown-menu .service-bottom .item {
    width: 100%;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .dropdown-menu .service-bottom .item {
    width: 100%;
  }
}
.dropdown-menu .service-item {
  height: auto;
}
.dropdown-menu .service-item:hover {
  background-color: #d92626;
}
.dropdown-menu .service-item:hover .service-title {
  color: var(--secondary-color);
}
.dropdown-menu .service-title {
  color: inherit;
  font-size: 0.8rem;
}
@media only screen and (max-width: 575.98px) {
  .dropdown-menu .service-title {
    height: auto;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .dropdown-menu .service-title {
    height: auto;
  }
}
.dropdown-menu .service-icon {
  width: 80px;
  height: 80px;
}
@media only screen and (max-width: 575.98px) {
  .dropdown-menu .service-icon {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .dropdown-menu .service-icon {
    width: 40px;
    height: 40px;
  }
}

.project li {
  list-style-type: none;
}
.project-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 1399.99px) {
  .project-list {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .project-list {
    flex-direction: row;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .project-list {
    flex-direction: column;
  }
}
.project-list .project-left {
  flex: none;
  height: 400px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .project-list .project-left {
    height: auto;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .project-list .project-left {
    flex: 2;
    width: 850px;
    height: 640px;
  }
}
@media only screen and (min-width: 1399.99px) {
  .project-list .project-left {
    flex: 2;
    width: 850px;
    height: 640px;
  }
}
.project-list .project-left .left-image {
  width: 100%;
  height: 100%;
}
.project-list .project-left .left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.project-list .project-left .left-desc {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 25px;
  line-height: 1.5;
  z-index: 999;
  color: var(--secondary-color);
  font-family: "Work Sans";
}
.project-list .project-left .left-desc .desc-wrapper {
  border-left: 2px solid var(--secondary-color);
  padding-left: 1rem;
  transform: scaleY(0);
  animation: scaleUpBorder 1s forwards cubic-bezier(0.85, 0, 0.15, 1);
  overflow: hidden;
}
.project-list .project-left .left-desc .desc-wrapper .text-wrapper {
  transform: translateX(calc(-100% - 1rem));
  animation: slideTextRight 1s 0.5s forwards cubic-bezier(0.85, 0, 0.15, 1);
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .project-list .project-left .left-desc .desc-wrapper .text-wrapper p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
  }
}
@media only screen and (max-width: 575.98px) {
  .project-list .project-left .left-desc .desc-wrapper .text-wrapper p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
  }
}
.project-list .project-left .left-desc::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  opacity: 0.7;
  background-color: var(--primary-color);
}
.project-list .project-left .left-desc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  filter: blur(50px);
}
.project-list .project-right {
  flex: 1;
}
.project-list .project-right .right-list .right-item {
  padding: 10px 0;
  margin: 10px 0;
  border: none;
  outline: none;
  background: var(--secondary-color);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.project-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  border-radius: 5px;
  padding: 10px 10px;
  box-shadow: 0px 10px 30px rgba(38, 45, 118, 0.08);
}
.project-item .project-icon {
  flex: 1;
  width: 123px;
  height: 94px;
}
.project-item .project-icon img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-item .project-info {
  flex: 2;
}
.project-item .project-info h6 {
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.5;
}
.project-item .project-info p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gray-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .project-item {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  .project-item {
    flex-basis: 50%;
  }
}
.project-item p {
  margin: 0 0;
}
@media only screen and (max-width: 575.98px) {
  .project .btn-show {
    font-size: 0.8rem;
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .project .btn-show {
    padding: 20px 20px;
    font-size: 0.8rem;
  }
}

.product li {
  list-style-type: none;
}
.product .project-left img {
  object-fit: contain !important;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .product .project-list {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1399.99px) {
  .product .project-list {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .product .project-item {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1399.99px) {
  .product .project-item {
    flex-direction: row-reverse;
  }
}

.project-page {
  padding: 100px 20px;
}
.project-page .section-title {
  margin-bottom: 100px;
}
@media only screen and (min-width: 1399.99px) {
  .project-page .project {
    height: 680px;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .project-page .project {
    height: 680px;
  }
}
.project-page .project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1, 1fr));
  grid-template-rows: 1fr 1fr;
  grid-gap: 40px;
}
@media only screen and (min-width: 1399.99px) {
  .project-page .project-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .project-page .project-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.project-page .project-item {
  padding: 20px 20px;
}
.project-page .project-bottom {
  background: none;
}
.project-page .project-item {
  width: 100%;
  height: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.project-page .project-item img {
  flex-shrink: 0;
  width: 180px;
  height: 200px;
  object-fit: contain;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .project-page .project-item img {
    width: 300px;
  }
}
@media only screen and (max-width: 575.98px) {
  .project-page .project-item img {
    width: 150px;
  }
}
.project-page .project-item .project-image {
  flex: 2;
}
.project-page .project-item .project-content {
  flex: 3;
}
.project-page .project-name {
  text-transform: capitalize;
  font-size: 1.8rem;
  padding: 0 20px;
}
.project-page .project-desc {
  margin: 10px 0;
  padding: 0px 20px;
  color: var(--gray-color);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .project-page .project-desc {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .project-page .project-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .project-page .project-desc {
    margin: 10px 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.project-page .btn-custom {
  padding: 15px 25px;
  font-size: 16px;
}

#pagination-container {
  margin-top: 1em;
  padding-top: 2em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#pagination-container .pagination {
  display: flex;
  align-items: center;
}
#pagination-container .pagination-item {
  list-style-type: none;
  display: inline-block;
  border-right: 1px solid #d7dadb;
  transform: scale(1) rotate(19deg) translateX(0px) translateY(0px) skewX(-10deg) skewY(-20deg);
}
#pagination-container .pagination-item:hover, #pagination-container .pagination-item.is-active {
  background: var(--linear-gradient-color);
  border-right: 1px solid #fff;
}
#pagination-container .pagination-item:hover .pagination-link, #pagination-container .pagination-item.is-active .pagination-link {
  color: #fff;
}
#pagination-container .pagination-item .first-number {
  border-left: 1px solid #d7dadb;
}
#pagination-container .pagination-link {
  padding: 1.1em 1.6em;
  display: inline-block;
  text-decoration: none;
  color: #8b969c;
  transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(20deg) skewY(0deg);
}
#pagination-container .pagination-item--wide {
  list-style-type: none;
  display: inline-block;
}
#pagination-container .pagination-item--wide.first {
  margin: 0 1em 0 0;
}
#pagination-container .pagination-item--wide.last {
  margin: 0 0 0 1em;
}
#pagination-container .pagination-link--wide {
  text-decoration: none;
  color: #8b969c;
  padding: 1.1em 1.6em;
}
#pagination-container .pagination-link--wide:hover {
  color: #fa4248;
}
#pagination-container .pagination-link--wide::before, #pagination-container .pagination-link--wide::after {
  font-family: "entypo";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pagination-container .page-link {
  background-color: transparent !important;
  border: none !important;
}

.sectionModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 200ms ease-in-out opacity;
  z-index: 9999;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .sectionModal {
    height: auto;
  }
}
.sectionModal-content {
  color: #000;
  margin: auto 0;
  background-color: #fff;
  padding: clamp(1.5rem, 100vw, 1rem);
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
  border-radius: 0.5em;
  transition: 200ms ease opacity, 200ms ease transform;
}
@media only screen and (max-width: 575.98px) {
  .sectionModal-content {
    height: 800px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .sectionModal-content {
    height: 800px;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .sectionModal-content {
    height: 980px;
  }
}
.sectionModal .modal-header {
  width: 100%;
  display: inline-block;
}
.sectionModal .modal-header h3 {
  width: 100%;
  text-align: center;
}
.sectionModal .close-form {
  cursor: pointer;
  user-select: none;
}
.sectionModal .close-form i {
  float: right;
  color: var(--gray-color);
  font-size: 2rem;
}

.showSectionModal {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  z-index: 9999;
}

.modal {
  z-index: 10000;
}

.modal-main {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .modal-main {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 575.98px) {
  .modal-main {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .modal-main {
    flex-direction: column;
    align-items: center;
  }
}

.modal-left {
  flex: 1;
}
.modal-left h1 {
  margin-bottom: 2rem;
}
.modal-left p {
  line-height: 1.5;
}
.modal-left th {
  font-weight: 600;
}

.modal-right {
  flex: 2;
}
.modal-right .carousel-item {
  height: 480px;
}
@media only screen and (max-width: 575.98px) {
  .modal-right .carousel-item {
    height: 200px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .modal-right .carousel-item {
    height: 200px;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .modal-right .carousel-item {
    height: 380px;
  }
}
.modal-right .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-right .carousel-indicators img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.modal-right .carousel-indicators button {
  width: max-content !important;
}
.modal-right .carousel-indicators {
  position: unset;
}
.modal-right .carousel-control-next i,
.modal-right .carousel-control-prev i {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.modal-dialog {
  --bs-modal-width: calc(100% - 15%);
  font-size: 0.8rem;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .modal-dialog {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .modal-dialog {
    width: 50%;
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1399.99px) {
  .modal-dialog {
    width: 50%;
    font-size: 1.5rem;
  }
}

.modal-content {
  height: 95%;
}
@media only screen and (max-width: 575.98px) {
  .modal-content {
    height: fit-content;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .modal-content {
    height: fit-content;
  }
}

.modal-body > * {
  height: 100%;
}

.checkbox-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.checkbox-container .checkboxes {
  width: 140px;
  height: 45px;
  position: relative;
  margin: 0 6px;
}
.checkbox-container .checkboxes input {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
  appearance: none;
  -webkit-appearance: none;
}
.checkbox-container .checkboxes input:checked ~ .box {
  border: 2px solid var(--loading-color);
}
.checkbox-container .checkboxes input:checked ~ .box img {
  filter: grayscale(0);
}
.checkbox-container .checkboxes input:checked ~ .checkbox-skype {
  border: 2px solid var(--skype-color) !important;
}
.checkbox-container .checkboxes input:checked ~ .checkbox-zalo {
  border: 2px solid var(--zalo-color) !important;
}
.checkbox-container .checkboxes input:checked ~ .checkbox-viber {
  border: 2px solid var(--viber-color) !important;
}
.checkbox-container .checkboxes input:checked ~ .checkbox-facetime {
  border: 2px solid var(--facetime-color) !important;
}
.checkbox-container .checkboxes input:checked ~ .checkbox-other {
  border: 2px solid var(--loading-color) !important;
}
.checkbox-container .checkboxes input:checked ~ .box p {
  transform: translateY(-30px);
}
.checkbox-container .checkboxes input:checked .box p::before {
  transform: translateY(30px);
}
.checkbox-container .checkboxes .box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  border: 2px solid var(--secondary-color);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 1s;
}
.checkbox-container .checkboxes .box img {
  margin-right: 0.3rem;
  filter: grayscale(1);
}
.checkbox-container .checkboxes .box p {
  transition: all 0.5s;
  margin-bottom: 0;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .checkbox-container .checkboxes .box p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1399.99px) {
  .checkbox-container .checkboxes .box p {
    font-size: 1.2rem;
  }
}
.checkbox-container .checkboxes .box p:before {
  content: attr(data-text);
  font-weight: bold;
  position: absolute;
  transform: translateY(30px);
}

.jconfirm .jconfirm-box .jconfirm-buttons button {
  border: 1px solid #333333;
}

.bg-main-button {
  background-color: #333333;
  color: #fff;
}

/* .jconfirm .jconfirm-box .jconfirm-buttons button */
.jconfirm .jconfirm-box .jconfirm-buttons button.bg-main-button:hover {
  border: 1px solid #333333;
  background-color: #fff;
  color: #333333;
  transition: 0.5s;
}

#modalAlert .modal-confirm {
  color: #636363;
  width: 325px;
  font-size: 14px;
}
#modalAlert .modal-confirm .modal-content {
  padding: 20px;
  border-radius: 5px;
  border: none;
}
#modalAlert .modal-confirm .modal-header {
  border-bottom: none;
  position: relative;
}
#modalAlert .modal-confirm h4 {
  text-align: center;
  font-size: 26px;
  margin: 30px 0 -15px;
}
#modalAlert .modal-confirm .form-control, #modalAlert .modal-confirm .modal-confirm .btn {
  min-height: 40px;
  border-radius: 3px;
}
#modalAlert .modal-confirm .close {
  position: absolute;
  top: -5px;
  right: -5px;
}
#modalAlert .modal-confirm .modal-footer {
  border: none;
  text-align: center;
  border-radius: 5px;
  font-size: 13px;
}
#modalAlert .modal-confirm .icon-box {
  color: #fff;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -70px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  z-index: 9;
  padding: 15px;
  text-align: center;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
#modalAlert .modal-confirm .icon-box i {
  font-size: 58px;
  position: relative;
  top: 3px;
}
#modalAlert .modal-confirm .modal-dialog {
  margin-top: 80px;
}
#modalAlert .modal-confirm .btn {
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s;
  line-height: normal;
  border: none;
}
#modalAlert .modal-confirm .btn:hover, #modalAlert .modal-confirm .modal-confirm .btn:focus {
  background: #6fb32b;
  outline: none;
}
#modalAlert .modal-confirm .trigger-btn {
  display: inline-block;
  margin: 100px auto;
}

.customer-top__content {
  height: 500px;
  position: relative;
}
.customer-top__desc {
  width: 30% !important;
  color: var(--secondary-color) !important;
  position: absolute;
  margin: 1rem 3rem !important;
}
.customer-top__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-bottom .flex-column {
  max-width: 260px;
  padding: 0 40px;
}
.customer-bottom .flex-column > * {
  padding: 40px 0;
}
.customer-bottom .scale {
  transform: scaleY(1.05);
  padding-top: 5px;
}
.customer-bottom .section-desc {
  padding: 50px 0;
}
.customer-bottom .slick-track {
  display: flex;
  align-items: center;
}
.customer-bottom .slick-list {
  margin: 0 -1.5rem;
}
.customer-bottom .slick-slide {
  margin: 0 1.5rem;
  width: 238px;
}

.contact-bottom {
  background: url("../assets/images/contact-bg.png") no-repeat center/cover;
  padding: 100px 0;
}
.contact-main {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
  gap: 60px;
}
@media only screen and (max-width: 575.98px) {
  .contact-main {
    flex-direction: column;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .contact-main {
    flex-direction: column;
  }
}
.contact-item {
  display: flex;
  gap: 20px;
  padding: 1rem 0;
}
.contact-item i {
  font-size: 2rem;
  margin: 0;
}
.contact-item p {
  line-height: 1.5;
}
.contact-title {
  margin-bottom: 3rem;
}
.contact-map iframe {
  text-align: center;
  width: -webkit-fill-available;
}

.contact-page .contact-bottom {
  background: none;
  padding: 50px 0;
}
.contact-page .contact-main {
  display: block;
  color: var(--primary-color);
}
.contact-page .contact-info {
  text-align: center;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .contact-page .contact-info {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .contact-page .contact-info {
    font-size: 0.8rem;
  }
}
.contact-page .contact-info ul {
  text-align: start;
  margin: 2rem 2rem;
}
.contact-page .contact-info ul li {
  padding: 0.5rem 0;
}
.contact-page .contact-info > * {
  padding: 0.3rem 0;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .contact-page .contact-item i {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .contact-page .contact-item i {
    font-size: 0.8rem;
  }
}
.contact-page .contact-item__left {
  display: flex;
  gap: 20px;
}
.contact-page .contact .business-fields {
  flex-direction: column;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .contact-page .contact .business-fields.active {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1399.99px) {
  .contact-page .contact .business-fields.active {
    flex-direction: row;
  }
}

.about .our {
  display: flex;
  gap: 40px;
  flex-direction: row;
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .about .our {
    flex-direction: column;
  }
}
@media only screen and (max-width: 575.98px) {
  .about .our {
    flex-direction: column;
  }
}
.about .our-left {
  flex: 1;
}
.about .our-item {
  padding: 20px;
  margin: 20px 0;
  position: relative;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-left: 2px solid var(--background-color);
  font-size: 1.2rem;
}
.about .our-item.active {
  color: var(--secondary-color);
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .about .our-item.active::before {
    display: none;
  }
}
@media only screen and (max-width: 575.98px) {
  .about .our-item.active::before {
    display: none;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .about .our-item.active::after {
    display: none;
  }
}
@media only screen and (max-width: 575.98px) {
  .about .our-item.active::after {
    display: none;
  }
}
.about .our-item:nth-child(n).active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 1;
  height: 60px;
  width: 30px;
  margin-top: -30px;
}
.about .our-item:nth-child(n).active::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid transparent;
  top: 50%;
  left: 100%;
  margin-top: -30px;
}
.about .our-item:nth-child(1) {
  border-left: 2px solid var(--background-color);
  background-color: rgba(255, 3, 3, 0.246);
}
.about .our-item:nth-child(1).active {
  border-left: 3px solid var(--background-color);
  background: var(--background-color);
}
.about .our-item:nth-child(1).active::before {
  background: linear-gradient(45deg, var(--background-color) 17px, rgba(0, 0, 0, 0.2) 17px, rgba(0, 0, 0, 0.2) 21px, transparent 21px), linear-gradient(135deg, var(--background-color) 17px, rgba(0, 0, 0, 0.2) 17px, rgba(0, 0, 0, 0.2) 21px, transparent 21px);
  background-position: left 0px, right bottom;
  background-size: 100% 50%;
  background-repeat: no-repeat;
}
.about .our-item:nth-child(1).active::after {
  border-left: 30px solid var(--background-color);
}
.about .our-item:nth-child(2) {
  border-left: 2px solid var(--yellow-color);
  background-color: rgba(234, 255, 3, 0.246);
}
.about .our-item:nth-child(2).active {
  background: var(--yellow-color);
}
.about .our-item:nth-child(2).active::before {
  background: linear-gradient(45deg, var(--yellow-color) 17px, rgba(0, 0, 0, 0.2) 17px, rgba(0, 0, 0, 0.2) 21px, transparent 21px), linear-gradient(135deg, var(--yellow-color) 17px, rgba(0, 0, 0, 0.2) 17px, rgba(0, 0, 0, 0.2) 21px, transparent 21px);
  background-position: left 0px, right bottom;
  background-size: 100% 50%;
  background-repeat: no-repeat;
}
.about .our-item:nth-child(2).active::after {
  border-left: 30px solid var(--yellow-color);
}
.about .our-item:nth-child(3) {
  border-left: 2px solid var(--orange-color);
  background-color: rgba(255, 104, 3, 0.246);
}
.about .our-item:nth-child(3).active {
  background: var(--orange-color);
}
.about .our-item:nth-child(3).active::before {
  background: linear-gradient(45deg, var(--orange-color) 17px, rgba(0, 0, 0, 0.2) 17px, rgba(0, 0, 0, 0.2) 21px, transparent 21px), linear-gradient(135deg, var(--orange-color) 17px, rgba(0, 0, 0, 0.2) 17px, rgba(0, 0, 0, 0.2) 21px, transparent 21px);
  background-position: left 0px, right bottom;
  background-size: 100% 50%;
  background-repeat: no-repeat;
}
.about .our-item:nth-child(3).active::after {
  border-left: 30px solid var(--orange-color);
}
.about .our-item:nth-child(4) {
  border-left: 2px solid var(--green-color);
  background-color: rgba(3, 255, 28, 0.246);
}
.about .our-item:nth-child(4).active {
  background: var(--green-color);
}
.about .our-item:nth-child(4).active::before {
  background: linear-gradient(45deg, var(--green-color) 17px, rgba(0, 0, 0, 0.2) 17px, rgba(0, 0, 0, 0.2) 21px, transparent 21px), linear-gradient(135deg, var(--green-color) 17px, rgba(0, 0, 0, 0.2) 17px, rgba(0, 0, 0, 0.2) 21px, transparent 21px);
  background-position: left 0px, right bottom;
  background-size: 100% 50%;
  background-repeat: no-repeat;
}
.about .our-item:nth-child(4).active::after {
  border-left: 30px solid var(--green-color);
}
.about .our-item:nth-child(5) {
  border-left: 2px solid var(--blue-color);
  background-color: rgba(11, 3, 255, 0.246);
}
.about .our-item:nth-child(5).active {
  background: var(--blue-color);
}
.about .our-item:nth-child(5).active::before {
  background: linear-gradient(45deg, var(--blue-color) 17px, rgba(0, 0, 0, 0.2) 17px, rgba(0, 0, 0, 0.2) 21px, transparent 21px), linear-gradient(135deg, var(--blue-color) 17px, rgba(0, 0, 0, 0.2) 17px, rgba(0, 0, 0, 0.2) 21px, transparent 21px);
  background-position: left 0px, right bottom;
  background-size: 100% 50%;
  background-repeat: no-repeat;
}
.about .our-item:nth-child(5).active::after {
  border-left: 30px solid var(--blue-color);
}
.about .our-right {
  flex: 3;
  text-align: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border: 3px solid var(--background-color);
}
.about .our-content {
  height: 480px;
  padding: 40px;
  color: var(--secondary-color);
  position: relative;
}
@media only screen and (max-width: 575.98px) {
  .about .our-content {
    height: auto;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .about .our-content {
    height: auto;
  }
}
.about .our-content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../assets/images/about/human.png");
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -10;
}
.about .our-content::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.7;
  z-index: -1;
}
.about .our-title {
  margin-bottom: 20px;
}
.about .our-title h3 {
  font-size: 2.5rem;
  color: red;
}
.about .our-desc ul {
  text-align: start;
}
.about .our-desc ul li {
  padding: 20px 0;
  font-size: 1.2rem;
  line-height: 1.5;
}
.about .humanImage::before {
  background-image: url("../assets/images/about/human.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
.about .workingImage::before {
  background-image: url("../assets/images/about/working.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
.about .serviceImage::before {
  background-image: url("../assets/images/about/service.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
.about .techImage::before {
  background-image: url("../assets/images/about/tech.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
.about .culImage::before {
  background-image: url("../assets/images/about/cul.png");
  background-repeat: no-repeat;
  background-size: 100%;
}

.core .about-bottom {
  margin-top: 50px;
}
.core-list {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: column;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .core-list {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1399.99px) {
  .core-list {
    flex-direction: row;
  }
}
.core-item {
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  width: 33.3%;
  height: 480px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
@media only screen and (max-width: 575.98px) {
  .core-item {
    width: 100%;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .core-item {
    width: 100%;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .core-item {
    width: 100%;
    height: 100%;
  }
}
.core-img {
  margin-bottom: 50px;
}
.core-img img {
  width: 50%;
  margin: 0 auto;
}
.core-title {
  color: var(--loading-color);
}
.core-desc {
  text-align: center;
  padding: 20px;
  margin: 0 auto;
  line-height: 1.5;
}

.teams ul {
  list-style-type: none;
}
.teams .about-team .person {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .teams .about-team .person {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1399.99px) {
  .teams .about-team .person {
    flex-direction: row;
  }
}
.teams .about-team .person-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 5px;
  background: var(--secondary-color);
  line-height: 1.5;
  width: 100%;
  height: 380px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .teams .about-team .person-item {
    width: 33.3%;
    height: 480px;
  }
}
@media only screen and (min-width: 1399.99px) {
  .teams .about-team .person-item {
    width: 33.3%;
    height: 480px;
  }
}
.teams .about-team .person-title {
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
}
.teams .about-team .person-img {
  margin-top: 1rem;
}
.teams .about-team .person-img img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 100%;
  margin: 0 auto;
}
.teams .about-team .person-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.teams .about-team .person-main {
  margin: auto;
  padding: 20px 0;
  display: block;
  padding: 10px 20px;
}
.teams .about-team .team-person__bot .list-person {
  border-radius: 20px;
  border: 1px dashed var(--primary-color);
  position: relative;
  background: var(--secondary-color);
}
.teams .about-team .team-person__bot .list-person::after, .teams .about-team .team-person__bot .list-person::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgb(145, 3, 3), rgb(253, 29, 29), rgb(255, 125, 125));
  background-size: 400%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
  animation: animate 25s linear infinite;
}
.teams .about-team .team-person__bot .list-person::after {
  filter: blur(4px);
}
.teams .about-team .team-person__bot .item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 10px 20px;
}
@media only screen and (max-width: 575.98px) {
  .teams .about-team .team-person__bot .item-title {
    margin: 10px 5px;
  }
}
@media only screen and (max-width: 575.98px) {
  .teams .about-team .team-person__bot .item-title h5 {
    font-size: 1rem;
  }
}
.teams .about-team .team-person__bot .item-icons ul {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 3rem;
}
@media only screen and (max-width: 575.98px) {
  .teams .about-team .team-person__bot .item-icons ul {
    font-size: 1.2rem;
    padding: 0;
  }
}
.teams .about-bottom {
  margin-top: 100px;
  background-image: url("../assets/images/about/bg.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.teams .about-bottom::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.7;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.teams .team-person__top,
.teams .team-person__bot {
  position: relative;
  z-index: 10;
}
.teams .person-list {
  gap: 20px;
  flex-direction: column;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .teams .person-list {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1399.99px) {
  .teams .person-list {
    flex-direction: row;
  }
}

.company-trip .about-bottom {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media only screen and (max-width: 575.98px) {
  .company-trip .about-bottom {
    height: 480px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .company-trip .about-bottom {
    height: 480px;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .company-trip .about-bottom {
    height: 780px;
  }
}
.company-trip .carousel-folder-trip {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #cccccc;
}
.company-trip .carousel-folder-trip .carousel {
  height: inherit;
}
.company-trip .carousel-folder-trip .carousel-inner {
  height: inherit;
}
.company-trip .carousel-folder-trip .carousel-item {
  height: inherit;
}
.company-trip .carousel-folder-trip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.company-trip .trip {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.company-trip .trip-list {
  position: absolute;
  inset: 40px 200px 40px 200px;
  background: #ccc;
  border-radius: 5px;
}
@media only screen and (max-width: 575.98px) {
  .company-trip .trip-list {
    inset: 40px 40px 200px 40px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .company-trip .trip-list {
    inset: 40px 40px 200px 40px;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .company-trip .trip-list {
    inset: 40px 40px 200px 40px;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .company-trip .trip-list {
    inset: 40px 100px 80px 100px;
    height: 480px;
  }
}
@media only screen and (min-width: 1399.99px) {
  .company-trip .trip-list {
    height: 580px;
  }
}
.company-trip .trip-item {
  position: absolute;
  top: 110%;
  transform: translate(0, -50%);
  width: 100px;
  height: 100px;
  background: var(--img);
  background-size: cover;
  background-position: center;
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media only screen and (max-width: 575.98px) {
  .company-trip .trip-item {
    width: 100px;
    height: 100px;
    top: initial;
    bottom: -170px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .company-trip .trip-item {
    width: 100px;
    height: 100px;
    top: initial;
    bottom: -170px;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .company-trip .trip-item {
    width: 100px;
    height: 100px;
    top: initial;
    bottom: -170px;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .company-trip .trip-item {
    width: 90px;
    height: 90px;
  }
}
.company-trip .trip-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.company-trip .trip-item:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(0, 0);
  border-radius: 0;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0);
  background-size: cover;
}
@media only screen and (max-width: 575.98px) {
  .company-trip .trip-item:nth-child(1) {
    top: initial;
    bottom: 0px;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .company-trip .trip-item:nth-child(1) {
    top: initial;
    bottom: 0px;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .company-trip .trip-item:nth-child(1) {
    top: initial;
    bottom: 0px;
  }
}
.company-trip .trip-item:nth-child(1) > .trip-content {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.5s;
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media only screen and (max-width: 575.98px) {
  .company-trip .trip-item:nth-child(1) > .trip-content h2 {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .company-trip .trip-item:nth-child(1) > .trip-content h2 {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .company-trip .trip-item:nth-child(1) > .trip-content h2 {
    font-size: 1.5rem;
  }
}
.company-trip .trip-item:nth-child(1) > .trip-content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary-color);
  opacity: 0.5;
  z-index: -1;
}
.company-trip .trip-item:nth-child(2) {
  left: 0px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(2) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(2) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(3) {
  left: 120px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(3) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(3) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(4) {
  left: 240px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(4) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(4) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(5) {
  left: 360px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(5) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(5) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(6) {
  left: 480px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(6) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(6) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(7) {
  left: 600px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(7) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(7) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(8) {
  left: 720px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(8) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(8) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(9) {
  left: 840px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(9) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(9) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(10) {
  left: 960px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(10) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(10) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(11) {
  left: 1080px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(11) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(11) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(12) {
  left: 1200px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(12) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(12) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(13) {
  left: 1320px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(13) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(13) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(14) {
  left: 1440px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(14) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(14) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
.company-trip .trip-item:nth-child(15) {
  left: 1560px;
  background-size: cover;
  align-items: center;
  flex-wrap: wrap;
}
.company-trip .trip-item:nth-child(15) > .trip-content {
  position: relative;
  padding: 20px;
  transform: translateY(0);
}
.company-trip .trip-item:nth-child(15) > .trip-content h2 {
  font-size: 0.8rem !important;
  color: var(--primary-color);
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .company-trip .trip-item:nth-child(n+8) {
    opacity: 0;
  }
}
@media only screen and (max-width: 575.98px) and (max-width: 1024px) {
  .company-trip .trip-item:nth-child(n+5) {
    opacity: 0;
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) and (max-width: 1024px) {
  .company-trip .trip-item:nth-child(n+7) {
    opacity: 0;
  }
}
.company-trip .trip-item:nth-child(n+16) {
  opacity: 0;
}
.company-trip .trip .buttons {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 20px;
}
.company-trip .trip .buttons span {
  position: relative;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.company-trip .trip .buttons span:active {
  opacity: 0.5;
}
.company-trip .trip .buttons span::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 4px solid white;
  border-left: 4px solid white;
  transform: rotate(135deg) translate(2px, 2px);
}
.company-trip .trip .buttons span:nth-last-child(2)::before {
  transform: rotate(315deg) translate(2px, 2px);
}
.company-trip .trip .trip-content {
  position: absolute;
  padding: 40px;
  transition: 0.25s;
  transition-delay: 0s;
  transform: translateY(40px);
  z-index: 10000;
}
@media only screen and (max-width: 575.98px) {
  .company-trip .trip .trip-content {
    padding: 10px;
    transform: translateY(10px);
  }
}
@media only screen and (min-width: 575.99px) and (max-width: 767.98px) {
  .company-trip .trip .trip-content {
    padding: 15px;
    transform: translateY(15px);
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .company-trip .trip .trip-content {
    padding: 20px;
    transform: translateY(20px);
  }
}
.company-trip .trip .trip-content h2 {
  font-size: 4rem;
  color: var(--secondary-color);
}
.company-trip .trip .trip-content p {
  color: var(--secondary-color);
}
.company-trip .video-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.company-trip .video-container .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 24px;
  padding: 15px 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.company-trip .video-container .video-play-button:hover {
  background: rgba(0, 0, 0, 0.9);
}
.company-trip .video-container .video-volume-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 20px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 100000;
}
.company-trip .video-container .video-volume-button:hover {
  background: rgba(0, 0, 0, 0.9);
}

.recruit-bottom {
  display: flex;
  flex-wrap: wrap;
}
.recruit-bottom .recruit-left {
  width: 100%;
  padding: 1rem;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .recruit-bottom .recruit-left {
    width: 33.3333333333%;
  }
}
@media only screen and (min-width: 1399.99px) {
  .recruit-bottom .recruit-left {
    width: 33.3333333333%;
  }
}
.recruit-bottom .recruit-right {
  width: 100%;
  padding: 1rem;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .recruit-bottom .recruit-right {
    width: 66.6666666667%;
  }
}
@media only screen and (min-width: 1399.99px) {
  .recruit-bottom .recruit-right {
    width: 66.6666666667%;
  }
}
.recruit-item {
  padding: 20px 10px;
  margin: 10px 0;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: 0.5s;
  font-size: 1.2rem;
  list-style-type: none;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .recruit-item {
    font-size: 1rem;
  }
}
.recruit-item a {
  color: var(--primary-color);
}
.recruit-item:hover {
  color: var(--background-color);
  box-shadow: 0 0 5px var(--background-color);
  text-shadow: 0 0 5px var(--linear-gradient-color);
}
.recruit-item.active {
  background: var(--linear-gradient-color);
  box-shadow: 0 0 5px var(--background-color);
}
.recruit-item.active a {
  color: white;
}
.recruit-right {
  text-align: center;
}
.recruit-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .recruit-info {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1399.99px) {
  .recruit-info {
    flex-direction: row;
  }
}
.recruit-info > * {
  width: 100%;
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .recruit-info > * {
    width: 33.3333333333%;
  }
}
@media only screen and (min-width: 1399.99px) {
  .recruit-info > * {
    width: 33.3333333333%;
  }
}
.recruit .info-item {
  border: 1px solid var(--primary-color);
  padding: 20px;
  margin: 5px 0;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit .info-item p {
  margin: 0;
}
@media only screen and (min-width: 767.99px) and (max-width: 1199.97px) {
  .recruit .info-item {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 1199.98px) and (max-width: 1399.98px) {
  .recruit .info-item {
    margin: 0 5px;
  }
}
@media only screen and (min-width: 1399.99px) {
  .recruit .info-item {
    margin: 0 5px;
  }
}
.recruit-content {
  margin-top: 40px;
  list-style-type: disc;
  font-family: "Work Sans" !important;
  border: 1px solid var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.recruit-content .title {
  font-size: 28px;
  color: #333399;
  vertical-align: baseline;
  font-weight: bold;
  text-transform: uppercase;
  text-indent: 0;
}
.recruit-content .subtitle {
  font-size: 28px;
  color: red;
  font-weight: bold;
  vertical-align: baseline;
  text-transform: uppercase;
}
.recruit-content .content {
  text-align: left;
}
.recruit-content .content-top {
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.recruit-content .content-top:nth-child(1) {
  color: var(--dark-blue-color);
}
.recruit-content .content-bottom {
  padding: 0 20px;
  text-align: start;
  line-height: 1.5;
}
.recruit-content .content-btn .btn-apply {
  font-size: 1.2rem;
  padding: 20px 20px;
}
.recruit .btn-apply {
  margin-top: 20px !important;
  width: 33%;
  display: inline-block;
  margin: 0 auto;
  padding: 10px 20px;
  border: 1px solid var(--dark-blue-color);
  border-radius: 10px;
}
.recruit .btn-apply:hover {
  background-color: var(--dark-blue-color);
}
.recruit .btn-apply:hover a {
  color: white;
}

.footer {
  background-image: url("../assets/images/footer.jpeg");
  background-size: cover;
  position: relative;
  z-index: 1;
}
.footer::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: -1;
}
.footer a {
  color: var(--secondary-color);
}
.footer-main {
  color: var(--secondary-color);
}
.footer-column {
  padding: 2rem 2rem;
}
.footer-links {
  display: inline-block;
  padding: 0.3rem;
  font-size: 1.2rem;
}
.footer-links i {
  font-size: 1.2rem;
  margin: 0;
}
.footer-item {
  display: flex;
  padding: 0.5rem 0;
  align-items: center;
  gap: 1rem;
}
.footer .column-info > * {
  padding: 1rem 0;
  line-height: 1.5;
}
.footer .social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer .social-item {
  color: var(--secondary-color);
  font-size: 2rem;
}
.footer .social-item .fa-facebook:hover {
  color: #0866ff;
  transition: 0.3s ease-in-out;
}
.footer .social-item .fa-instagram {
  border-radius: 20px;
  border: none;
}
.footer .social-item .fa-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  transition: 0.3s ease-in-out;
}
.footer .social-item .fa-youtube:hover {
  color: red;
  transition: 0.3s ease-in-out;
}
.footer .social-item .fa-linkedin:hover {
  color: #0a66c2;
  transition: 0.3s ease-in-out;
}
.footer .copyright {
  color: #afb5c0;
}

@keyframes loading-circle-one {
  0% {
    transform: rotateX(40deg) rotateY(-40deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(40deg) rotateY(-40deg) rotateZ(3600deg);
  }
}
@keyframes loading-circle-two {
  0% {
    transform: rotateX(50deg) rotateY(15deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(15deg) rotateZ(3600deg);
  }
}
@keyframes loading-circle-three {
  0% {
    transform: rotateX(15deg) rotateY(50deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(15deg) rotateY(50deg) rotateZ(3600deg);
  }
}
@keyframes animate_company {
  0%, 100% {
    color: var(--secondary-color);
    filter: blur(2px);
    text-shadow: 0 0 10px var(--background-color), 0 0 20px var(--background-color);
  }
  25%, 75% {
    color: var(--loading-color);
    filter: blur(0px);
    text-shadow: none;
  }
}
@keyframes animate {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes scaleUpBorder {
  to {
    transform: scaleY(1);
  }
}
@keyframes slideTextRight {
  to {
    transform: translateX(0%);
  }
}
@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes loadproject {
  100% {
    opacity: 1;
  }
}
@keyframes showContent {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes rorate {
  from {
    transform: translate(-50%, -50%) scale(1.4) rotate(0turn);
  }
  to {
    transform: translate(-50%, -50%) scale(1.4) rotate(1turn);
  }
}
@keyframes loadContentCarousel {
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
