@font-face {
  font-family: "Isomer";
  src: url("../fonts/Isomer-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Isomer Semi Condensed Bold";
  src: url("../fonts/Isomer-SemiCondensedBold.woff2") format("woff2");
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Isomer", sans-serif !important;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto !important;
}
header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sticky-nav {
  height: 72px !important;
  position: fixed;
  max-width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  background: #1d448d;
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: all 0.5s ease;
}
.nav-wrap {
  height: 72px !important;
}
.hero-section {
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease;
}
.hero-background {
  background-size: cover;
  background-position: center;
  /* animation: zoomBackground 6s linear infinite; */
  transition: all 0.5s ease;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 75%,
    rgba(0, 0, 0, 0.1) 100%
  );
  width: 300px;
  /* background: linear-gradient(
    180deg,
    rgba(7, 32, 60, 1) 0%,
    rgba(14, 46, 117, 1) 15%,
    rgba(31, 76, 239, 1) 100%
  ); */

  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}
.nav-link {
  font-size: 18px;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #00a9f4 !important;
}
.carousel-item {
  transition: opacity 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel-item.active {
  opacity: 1;
  position: relative;
}
input:focus {
  outline: none;
}
.footer-section {
  /* background-image: url("../images/footer_bg.jpg"); */
  background-size: cover;
  background-position: center;
}
.footer-section .border-t p {
  font-size: 14px;
}

.logo,
.logo2 {
  max-height: 24px;
  transition: all 0.3s ease;
}
nav button.sticky-lang {
  color: #1f2937;
}

#hero-carousel h1,
#news_content h3,
#services h2,
#careers h2,
#news h2,
#about .title,
#contact .title,
.hero-banner h1,
.services-lists h3,
.careers-list h3,
#services-desc .content-wrap p,
#careers-desc .content-wrap p {
  font-family: "Isomer Semi Condensed Bold";
}

.bg-fixed-cover {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.limit-text-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.limit-text-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.limit-text-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.news_item img:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* Button Style */
.more-btn {
  display: flex;
  position: relative;
}

.more-btn .button {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 0 1.5rem;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.more-btn .arrow {
  fill: #fff;
  position: absolute;
  pointer-events: none;
  width: 24px;
  right: 0;
  top: -3px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.more-btn .button:hover {
  letter-spacing: 2px;
}

.more-btn .button:hover ~ .second {
  opacity: 0.66;
  right: -20px;
  transition-delay: 50ms;
}

.more-btn .button:hover ~ .third {
  opacity: 0.33;
  right: -40px;
  transition-delay: 100ms;
}

.more-btn .second,
.more-btn .third {
  opacity: 0;
}
/* End */

/* Mobile Style */
@media (max-width: 768px) {
  header nav {
    padding: 0 8px;
  }

  #hero-carousel {
    padding: 0 8px;
    text-align: center;
  }
}
