@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --text-color: #c8102e;
  --span-color: #878787;
  --white-text-color: #fff;
  --text-black-color: #0c0c0c;
  --bg-bg-whited-color: #fff;
  --bg-bg-black-color: #000;
  --font-weight-regular: 300;
  --font-weight-medium: 400;
  --font-weight-semibold: 500;
  --font-weight-bold: 600;
}

.divide-entire-web {
  background: #888b8d;
  width: 90%;
  height: 1px;
  margin: 0 auto;
  /* margin-top: 172px; */
}

.bg-whited {
  background: var(--bg-bg-whited-color);
}

.bg-blacked {
  background: var(--bg-bg-black-color);
}

.my-mt-5 {
  margin-top: 12rem !important;
}

.my-mtup {
  margin-top: 97px;
}

.default-pad {
  padding: 0px 70px;
}
.project-content-right {
  margin: 0px 0px 0px 44px;
}

/* RESET */
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #000;
  color: var(--white-text-color);
  overflow-x: hidden;
}

h1 {
  font-weight: 600;
}

h2 {
  font-weight: 500;
}

h3 {
  font-weight: 400;
}

h4 {
  font-weight: 300;
}

h5 {
  font-weight: 300;
}

p {
  font-size: 16px;
  font-weight: 300;
}

/* Desktop view */
.desktop-view {
  display: block;
}

.mobile-view {
  display: none;
}

.ptb-80 {
  padding: 130px 0px;
}

/* ================= HEADER ================= */
.mobile-menu-list a:hover {
  color: var(--text-color);
}

.site-header {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    padding 0.28s ease;
}

.site-header.is-sticky {
  position: fixed;
  background: #000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  height: 85px;
}

.site-header.is-at-top {
  background: transparent;
  box-shadow: none;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 93px;
}

.lion-show {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 64vh;
}

.show-lion {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.solution-icon {
  margin-left: 6px;
}

.project-label-box {
  display: flex;
  align-items: start;
  justify-content: center;
  margin-top: 35px;
}

.project-label-all {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 16px;
}

.project-label {
  color: #878787 !important;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
}

.project-icon img {
  width: 9px;
}

.project-icon {
  margin-right: 10px;
}

.main-nav a {
  color: var(--white-text-color);
  text-decoration: none;
  font-size: 20px;
  position: relative;
  font-weight: 400;
  display: flex;
  align-items: center;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}

.main-nav a.active {
  padding: 4px 8px;
  font-size: 14px;
}

.main-nav span {
  color: var(--text-color);
  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: -0.64px;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--white-text-color);
  font-size: 22px;
  cursor: pointer;
}

.solution-dropdown {
  position: relative;
  display: inline-block;
}

/* Link styling */
.solution-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #000;
}

/* Arrow icon */
.solution-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.solution-dropdown:hover .solution-icon {
  transform: rotate(180deg);
}

/* Dropdown menu */
.solution-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow-y: scroll;
  z-index: 100;
}

.solution-menu li {
  border-bottom: 1px solid #f1f1f1;
}

.solution-menu li:last-child {
  border-bottom: none;
}

.solution-menu li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.solution-menu li a:hover {
  background: #f5f5f5;
}

/* Show dropdown */
.solution-dropdown:hover .solution-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* Background Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) -11.95%,
    rgba(0, 0, 0, 0.8) 89.57%
  );
  z-index: 1;
}

.icon.get-in img {
  width: 12px;
}

/* Content above video */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 54px;
  font-style: normal;
  font-weight: 500;
  line-height: 54px;
  letter-spacing: -1.62px;
  color: var(--white-text-color);
}

.hero-title span {
  color: var(--text-color);
  font-family: Montserrat;
  font-size: 90px;
  font-style: italic;
  font-weight: 600;
  line-height: 84px;
  letter-spacing: -0.958px;
}

.hero-subtitle {
  margin-top: 64px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 33px;
}

/* ================= AIMTREX BUTTON ================= */

.aimtrex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 300px;
  height: 63px;
  border: none;
  background: #c2262b;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white-text-color) !important;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.aimtrex-btn .text {
  position: relative;
  display: inline-block;
}

/* Left line */
.aimtrex-btn .text::before,
.aimtrex-btn .text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

/* left line */
.aimtrex-btn .text::before {
  left: 0;
}

/* right line */
.aimtrex-btn .text::after {
  right: 0;
}

/* hover effect */
.aimtrex-btn:hover .text::before,
.aimtrex-btn:hover .text::after {
  width: 50%;
}

/* ================= HAMBURGER ================= */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hamburger-icon-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hamburger-icon-desktop {
  display: none;
}

.hamburger-line {
  display: block;
}

.desktop-burger-flyout {
  display: none;
}

@media (min-width: 1199.99px) and (max-width: 1399px) {
  .shooting-indoor p {
    font-size: 18px !important;
  }
}

@media (min-width: 768px) {
  .desktop-menu {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
  }

  a.mobile-menu-entry.mobile-menu-entry-subitem.mobile-entry-sub-view {
    width: 90% !important;
  }

  .hamburger {
    width: 48px;
    height: 48px;
  }

  .hamburger-icon-mobile {
    display: none;
  }

  .hamburger-icon-desktop {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 22px;
  }

  .hamburger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition:
      top 0.25s ease,
      width 0.25s ease,
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .hamburger-line:nth-child(1) {
    top: 0;
  }

  .hamburger-line:nth-child(2) {
    top: 10px;
  }

  .hamburger-line:nth-child(3) {
    top: 20px;
    left: auto;
    right: 0;
    width: 70%;
  }

  .hamburger.is-open .hamburger-line:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }

  .hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-open .hamburger-line:nth-child(3) {
    top: 10px;
    left: 0;
    right: auto;
    width: 100%;
    transform: rotate(-45deg);
  }

  .desktop-burger-flyout {
    position: fixed;
    top: var(--desktop-burger-offset, 96px);
    left: 0;
    right: 0;
    display: block;
    z-index: 135;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s ease;
  }

  .desktop-burger-flyout.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .desktop-burger-panel {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
      180deg,
      rgba(22, 22, 24, 0.92),
      rgba(10, 10, 11, 0.88)
    );
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(18px);
  }

  .desktop-burger-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(
        circle at 12% 82%,
        rgba(200, 16, 46, 0.16),
        transparent 24%
      ),
      radial-gradient(
        circle at 74% 22%,
        rgba(255, 255, 255, 0.08),
        transparent 24%
      ),
      radial-gradient(
        circle at 84% 68%,
        rgba(18, 157, 255, 0.08),
        transparent 24%
      );
    pointer-events: none;
  }

  .desktop-burger-panel::after {
    content: "";
    position: absolute;
    inset: 10px;
    pointer-events: none;
  }

  .desktop-burger-panel-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 390px) 1fr;
    align-items: center;
    gap: 54px;
    min-height: 300px;
    padding: 58px 52px 46px;
    background: linear-gradient(
      180deg,
      rgba(27, 27, 29, 0.82),
      rgba(21, 21, 22, 0.7)
    );
  }

  .desktop-burger-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  /* target only text span */
  .desktop-burger-link > span:first-child {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
  }

  /* underline */
  .desktop-burger-link > span:first-child {
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: left bottom;
    transition: background-size 0.3s ease;
  }

  /* hover */
  .desktop-burger-link:hover > span:first-child {
    background-size: 100% 2px;
  }

  .desktop-burger-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .desktop-burger-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    text-decoration: none;
    font-size: clamp(20px, 1.45vw, 32px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.1;
    transition:
      transform 0.25s ease,
      color 0.25s ease,
      opacity 0.25s ease;
  }

  .desktop-burger-link:hover {
    color: #fff;
    transform: translateX(6px);
  }

  .desktop-burger-link-arrow {
    display: inline-flex;
    align-items: center;
    width: 22px;
    flex-shrink: 0;
  }

  .desktop-burger-ornament {
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* .desktop-burger-ornament-line {
    display: block;
    width: min(100%, 560px);
    border-top: 1px dashed rgba(18, 157, 255, 0.78);
  } */

  /* .desktop-burger-ornament::before,
  .desktop-burger-ornament::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    border-top: 1px dashed rgba(18, 157, 255, 0.88);
    transform-origin: center;
  }

  .desktop-burger-ornament::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .desktop-burger-ornament::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  } */

  .desktop-burger-panel-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 96px;
    padding: 20px 52px 24px;
    background: rgba(0, 0, 0, 0.92);
    /* border-top: 1px solid rgba(18, 157, 255, 0.28); */
  }

  .desktop-burger-tagline {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 2.8vw, 50px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    text-align: right;
  }

  .desktop-burger-tagline span {
    color: #c8102e;
    font-style: italic;
    font-weight: 600;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .desktop-burger-panel-main {
    gap: 36px;
    min-height: 260px;
    padding: 42px 34px 34px;
  }

  .desktop-burger-panel-footer {
    min-height: 82px;
    padding: 18px 34px 22px;
  }

  .desktop-burger-ornament-line {
    width: min(100%, 420px);
  }
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: 0.4s ease;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu nav a {
  color: var(--white-text-color);
  font-size: 22px;
  text-decoration: none;
  margin: 15px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.anchor-target {
  scroll-margin-top: 140px;
}

.site-header {
  z-index: 120;
}

.aim-main-nav {
  gap: 72px;
}

.aim-main-nav span {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.main-nav-link {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.aim-main-nav .main-nav-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.aim-main-nav .main-nav-link:hover,
.aim-main-nav .main-nav-link.is-current {
  color: #fff;
}

.solutions-nav {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.solutions-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.solutions-nav-trigger .solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  transition: transform 0.3s ease;
}

.solutions-nav.is-open .solutions-nav-trigger .solution-icon {
  transform: rotate(180deg);
}

.solutions-mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(1370px, calc(100vw - 140px));
  transform: translateX(-77%) translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  background: rgba(136, 139, 141, 0.15);
  /* border: 1px solid rgba(255, 255, 255, 0.06); */
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  overflow: hidden;
  z-index: 130;
}

.solutions-mega-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 78%, rgba(200, 16, 46, 0.2), transparent 24%),
    radial-gradient(
      circle at 70% 12%,
      rgba(255, 255, 255, 0.08),
      transparent 28%
    ),
    radial-gradient(circle at 86% 74%, rgba(154, 70, 46, 0.12), transparent 30%);
  pointer-events: none;
}

.solutions-nav.is-open .solutions-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-77%) translateY(0);
}

.solutions-mega-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(0, 0, 0, 0.24);
}

.solutions-mega-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 118px;
  padding: 24px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.03em;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  background: #000;
}

.solutions-mega-tab + .solutions-mega-tab {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.solutions-mega-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #c8102e;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.solutions-mega-tab:hover,
.solutions-mega-tab.is-active {
  background: rgba(255, 255, 255, 0.03);
}

.solutions-mega-tab.is-active::after {
  opacity: 1;
}

.solutions-mega-tab > span:first-child {
  position: relative;
}

.solutions-mega-tab > span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.solutions-mega-tab:hover > span:first-child::after {
  width: 100%;
}

.solutions-mega-tab .solutions-mega-arrow {
  width: 22px;
}

.solutions-mega-panels {
  position: relative;
  z-index: 1;
  min-height: 390px;
}

.solutions-mega-panel {
  display: none;
  padding: 48px 52px 36px;
}

.solutions-mega-panel.is-active {
  display: block;
}

.solutions-mega-columns {
  display: grid;
  gap: 56px;
}

.solutions-mega-columns.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solutions-mega-columns.columns-1 {
  /* grid-template-columns: minmax(0, 520px); */
  grid-template-columns: minmax(0, 230px);
}

.solutions-mega-column {
  position: relative;
}

.solutions-mega-column:not(.is-single-column):not(:first-child)::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.solutions-mega-heading {
  margin: 0 0 18px;
  color: #989898;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.solutions-mega-list,
.solutions-mega-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.solutions-mega-item + .solutions-mega-item {
  margin-top: 14px;
}

/* .solutions-mega-item > .solutions-mega-link,
.solutions-mega-item > .solutions-mega-link-row {
  position: relative;
  padding: 0 28px;
} */

.solutions-mega-item > .solutions-mega-link::before,
.solutions-mega-item > .solutions-mega-link::after,
.solutions-mega-item > .solutions-mega-link-row::before,
.solutions-mega-item > .solutions-mega-link-row::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: #ffffff;
  opacity: 0;
  transform: translateY(-50%) scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.solutions-mega-item > .solutions-mega-link::before,
.solutions-mega-item > .solutions-mega-link-row::before {
  left: 0;
  transform-origin: left center;
}

.solutions-mega-item > .solutions-mega-link::after,
.solutions-mega-item > .solutions-mega-link-row::after {
  right: 0;
  transform-origin: right center;
}

/* .solutions-mega-item:hover > .solutions-mega-link::before,
.solutions-mega-item:hover > .solutions-mega-link::after,
.solutions-mega-item:hover > .solutions-mega-link-row::before,
.solutions-mega-item:hover > .solutions-mega-link-row::after,
.solutions-mega-item:focus-within > .solutions-mega-link::before,
.solutions-mega-item:focus-within > .solutions-mega-link::after,
.solutions-mega-item:focus-within > .solutions-mega-link-row::before,
.solutions-mega-item:focus-within > .solutions-mega-link-row::after {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
} */

.aim-main-nav .solutions-mega-item .solutions-mega-link > span:first-child {
  position: relative !important;
  display: inline-block !important;
}

.aim-main-nav
  .solutions-mega-item
  .solutions-mega-link
  > span:first-child::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -6px !important;
  width: 100% !important;
  height: 2px !important;
  background: #fff !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.3s ease !important;
}

.aim-main-nav
  .solutions-mega-item
  .solutions-mega-link:hover
  > span:first-child::after {
  transform: scaleX(1) !important;
}

.solutions-mega-item .solutions-mega-link > span:first-child {
  background-image: linear-gradient(#c8102e, #c8102e);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: left 100%;
  transition: background-size 0.3s ease;
  padding-bottom: 6px;
}

.solutions-mega-link-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.solutions-mega-link-row .solutions-mega-link {
  /* flex: 1 1 auto; */
  width: auto;
}

.solutions-mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.solutions-mega-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.solutions-mega-link .solutions-mega-arrow {
  width: 20px;
  flex-shrink: 0;
}

.solutions-mega-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.solutions-mega-expand img {
  /* width: 12px; */
  transition: transform 0.25s ease;
}

.solutions-mega-item.is-expanded .solutions-mega-expand img {
  transform: rotate(180deg);
}

.solutions-mega-sublist {
  max-height: 0;
  /* overflow: hidden; */
  opacity: 0;
  visibility: hidden;
  margin-left: 0;
  transition:
    max-height 0.28s ease,
    opacity 0.28s ease,
    visibility 0.28s ease,
    margin-top 0.28s ease;
  padding-left: 10px;
}

.solutions-mega-item.is-expanded .solutions-mega-sublist {
  max-height: 320px;
  opacity: 1;
  visibility: visible;
  margin-top: 16px;
}

.solutions-mega-sublist li + li {
  margin-top: 14px;
}

.solutions-mega-sublink {
  display: inline-flex;
  align-items: flex-start;
  padding-left: 2px;
  color: rgba(255, 255, 255, 0.92);
  width: auto;
  max-width: 100%;
  gap: 10px;
}

.solutions-mega-sublink-containerised {
  display: flex;
  width: 100%;
  max-width: none;
  padding-bottom: 8px;
}

.mobile-menu {
  display: block;
  justify-content: flex-start;
  background:
    radial-gradient(
      circle at 22% 82%,
      rgba(200, 16, 46, 0.22),
      transparent 22%
    ),
    radial-gradient(
      circle at 76% 10%,
      rgba(255, 255, 255, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.97), rgba(12, 4, 6, 0.98));
  z-index: 999;
}

.mobile-menu-shell {
  position: relative;
  width: min(100%, 420px);
  height: 100%;
  margin: 0;
  padding: 0 22px;
}

.mobile-menu-panels {
  position: relative;
  height: 100%;
}

.mobile-menu-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(26px);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    visibility 0.28s ease;
  overflow-y: auto;
  padding: 26px 0 160px;
}

.mobile-menu-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu-topbar,
.mobile-menu-panel-header {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 56px;
}

.mobile-menu-logo {
  display: inline-flex;
  align-items: center;
  width: 165px;
}

.mobile-menu .close-menu {
  top: 18px;
  right: 22px;
  z-index: 4;
  padding: 4px;
  line-height: 1;
}

.mobile-menu .mobile-menu-list,
.mobile-menu .mobile-menu-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.mobile-menu .mobile-menu-entry,
.mobile-menu .mobile-menu-entry.is-button,
.mobile-menu .mobile-menu-entry-action,
.mobile-menu .mobile-menu-back,
.mobile-menu .mobile-menu-heading-action {
  font-family: "Montserrat", sans-serif;
}

.mobile-menu .mobile-menu-entry,
.mobile-menu .mobile-menu-entry.is-button {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* justify-content: start; */
  gap: 18px;
  color: #fff;
  font-size: 20px !important;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: none;
  text-align: left;
}

.mobile-menu .mobile-menu-entry-text-only {
  justify-content: flex-start;
}

.mobile-menu-split-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* justify-content: start !important; */
  gap: 18px;
}

.mobile-menu-split-link .mobile-menu-entry {
  /* flex: 1 1 auto; */
  width: auto;
}

.mobile-menu-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-sublist {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  padding-left: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease,
    visibility 0.25s ease,
    margin-top 0.25s ease;
}

.mobile-menu-accordion.is-open .mobile-menu-sublist {
  max-height: 420px;
  opacity: 1;
  visibility: visible;
  margin-top: 18px;
}

.mobile-menu-entry-subitem {
  font-size: 18px !important;
  padding-left: 20px !important;
}

.mobile-menu-entry-subitem + .mobile-menu-entry-subitem {
  margin-top: 18px;
}

.mobile-menu-entry-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-entry-action img {
  width: 12px;
  transition: transform 0.25s ease;
}

.mobile-menu-accordion.is-open .mobile-menu-entry-action img,
.mobile-menu-accordion.is-open .mobile-menu-heading-chevron img {
  transform: rotate(180deg);
}

.mobile-menu-entry-arrow {
  display: inline-flex;
  align-items: center;
  width: 18px;
  flex-shrink: 0;
}

.mobile-menu-back {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-back-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
}

.mobile-menu-current-link-wrap {
  margin-bottom: 14px;
}

.mobile-menu-current-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.mobile-menu-section-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 32px;
  background: #c8102e;
}

.mobile-menu-heading,
.mobile-menu-heading-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-align: left;
}

.mobile-menu-heading-action {
  cursor: pointer;
}

.mobile-menu-heading-open {
  color: rgba(255, 255, 255, 0.45);
}

.mobile-menu-heading-chevron {
  display: inline-flex;
  align-items: center;
  width: 12px;
  flex-shrink: 0;
}

.mobile-menu-heading-chevron img {
  transition: transform 0.25s ease;
}

.mobile-menu-heading-chevron.is-open img {
  transform: rotate(180deg);
}

.mobile-menu-tagline {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.03em;
  background:
    radial-gradient(
      circle at 22% 82%,
      rgba(200, 16, 46, 0.22),
      transparent 22%
    ),
    radial-gradient(
      circle at 76% 10%,
      rgba(255, 255, 255, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.97), rgba(12, 4, 6, 0.98));
  padding: 20px 0px;
}

.mobile-menu-tagline span {
  color: #c8102e;
  font-style: italic;
  font-weight: 600;
}

@media (max-width: 1399.98px) {
  .aim-main-nav {
    gap: 54px;
  }

  .solutions-mega-menu {
    width: min(1200px, calc(100vw - 80px));
  }
}

@media (max-width: 1199.98px) {
  .aim-main-nav {
    gap: 36px;
  }

  .solutions-mega-tab {
    min-height: 94px;
    font-size: 16px;
    padding: 20px 22px;
  }

  .solutions-mega-panel {
    padding: 34px 34px 30px;
  }

  .solutions-mega-columns {
    gap: 36px;
  }

  .solutions-mega-column:not(.is-single-column):not(:first-child)::before {
    left: -18px;
  }

  .solutions-mega-heading,
  .solutions-mega-link {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .desktop-burger-flyout {
    display: none !important;
  }

  .hamburger-icon-desktop {
    display: none !important;
  }

  .mobile-menu-shell {
    width: 100%;
    padding: 0 20px;
  }

  .mobile-menu .close-menu {
    top: 38px;
    right: 20px;
  }

  .mobile-menu .close-menu-icon {
    width: 15px;
    height: 15px;
  }

  .mobile-menu-panel {
    padding-bottom: 148px;
  }

  .mobile-menu-topbar,
  .mobile-menu-panel-header {
    margin-bottom: 52px;
  }

  .mobile-menu .mobile-menu-entry,
  .mobile-menu .mobile-menu-entry.is-button {
    font-size: 18px !important;
  }
  .mobile-menu-entry.is-button span:hover {
    color: var(--text-color);
  }

  .mobile-menu-entry:hover {
    color: var(--text-color);
  }

  .mobile-menu-entry.mobile-menu-entry-text-only:hover {
    color: var(--text-color);
  }

  .mobile-menu-current-link {
    font-size: 17px;
  }
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--white-text-color);
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-menu-icon {
  width: 20px;
  height: 20px;
}

/* ================= SECTION ================= */
.proud-section {
  background: #000;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  /* border-bottom: 1px solid #888B8D; */
}

.section-title {
  color: var(--white-text-color);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -1px;
  margin-bottom: 80px;
}

/* ================= SWIPER ================= */
.proud-autoscroll {
  width: 100%;
}

.force-box {
  display: flex;
  justify-content: start;
  align-items: center;
}

.proud-autoscroll .swiper-slide {
  text-align: center;
  transition: 0.4s ease;
}

.proud-autoscroll .swiper-slide img {
  height: 90px;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

.proud-autoscroll .swiper-slide p {
  color: var(--white-text-color);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-left: 10px;
  text-align: left;
}

/* CENTER ACTIVE */
.proud-autoscroll .swiper-slide-active {
  opacity: 1;
}

.proud-autoscroll .swiper-slide-active img {
  /* filter: grayscale(0); */
  transform: scale(1.1);
}

/* SIDE FADE */
.proud-autoscroll .swiper-slide-prev,
.proud-autoscroll .swiper-slide-next {
  opacity: 1;
}

/* CLICK ANIMATION */
.proud-autoscroll .swiper-slide.clicked img {
  animation: pulse 0.6s ease;
}

.proud-autoscroll .swiper-wrapper {
  transition-timing-function: linear !important;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1.1);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 20px;
  }

  .proud-autoscroll .swiper-slide img {
    height: 65px;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
  .hero-title {
    font-size: 38px;
  }

  /* .site-header {
        position: relative;
    } */
}

/* ================= FLAGSHIP SECTION ================= */
.flagship-section {
  background: #000;
  padding: 100px 0;
  color: var(--white-text-color);
}

.solution-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-video {
  position: relative;
}

.card-overlay {
  transition: transform 0.4s ease;
}

.card-overlay:hover {
  transform: scale(1.03);
}

/* LEFT CONTENT */
.highlight-label {
  display: inline-block;
  letter-spacing: 0px;
  color: var(--span-color) !important;
  margin-bottom: 20px;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-left: 25px;
  text-transform: uppercase;
}

.high-light-box {
  position: relative;
  margin-top: 30px;
}

.high-light-box .shape {
  left: 0;
  top: 7px;
}

.flagship-content h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -1.8px;
  margin-bottom: 0px;
}

.flagship-content h2 span {
  color: var(--text-color);
  font-weight: 500;
}

.flagship-content p {
  margin-top: 45px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -1px;
}

/* ================= CARDS ================= */
.solution-card {
  position: relative;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

.solution-card-active {
  clip-path: polygon(50px 0%, 100% 0%, 100% 92%, 100% 100%, 0% 100%, 0% 50px);
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.shoot-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.card-overlay h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -1.5px;
  margin-bottom: 0;
  color: var(--white-text-color);
  width: 70%;
}

.arrow {
  align-self: flex-end;
}

.shape {
  width: 11px;
  height: 11px;
  display: grid;
  grid-template-columns: 1fr 2px;
  grid-template-rows: 2px 1fr;
  position: absolute;
  right: 26px;
  top: 20px;
}

.top {
  grid-column: 1 / -1;
  background: var(--text-color);
  /* red */
}

.right {
  grid-row: 2;
  grid-column: 2;
  background: var(--text-color);
}

.center {
  grid-row: 2;
  grid-column: 1;
  background: transparent;
}

.arrow-flag i {
  font-size: 24px;
}

/* Hover effect */
.solution-card:hover img {
  transform: scale(1.08);
  cursor: pointer;
}

/* Heading color change */
.solution-card:hover .card-overlay h4 {
  color: var(--white-text-color);
  /* text-decoration: underline ; */
  cursor: pointer;
}

.solution-card:hover .shoot-content {
  /* color: var(--text-color); */
  cursor: pointer;
}

/* ================= Pioneer SECTION ================= */

.stats-section {
  position: relative;
  color: var(--white-text-color);
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
}

.stats-section .row {
  margin-left: 0;
  margin-right: 0;
}

.stats-title {
  margin-top: 0;
}

.poineer {
  /* background: #0c0c0cc4; */
}

/* .count-pod{
    margin-top: -13%;
} */

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  object-position: top center;
  z-index: -2;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.99) 24.61%, rgba(0, 0, 0, 0) 41.02%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.99) 1.56%, rgba(0, 0, 0, 0) 20.67%);
  top: 0;
}

.stat-left {
  padding-left: 100px;
}

.stat-right {
  padding-right: 100px;
}

.stat-middle {
  padding: 0px 50px;
}

.stats-section .poineer {
  position: relative;
  z-index: 2;
  height: 100vh;
  padding: 80px 70px 80px 70px;
}

.stats-title {
  margin-bottom: 90px;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -1px;
}

.stats-title .red {
  color: var(--text-color);
}

.stats-row {
  align-items: flex-start;
}

.stat h3 {
  font-size: 90px;
  font-style: normal;
  font-weight: 500;
  line-height: 90px;
  letter-spacing: -2.7px;
}

.stat sup {
  font-size: 60px;
  color: var(--text-color);
  font-weight: 500;
}

sup {
  top: -17px;
  left: 5px;
}

.resources-pa {
  margin-top: 6.3%;
}

.count-divider {
  border: none;
  height: 1px;
  background: #888b8d;
  margin: 40px 0;
  width: 100%;
}

.stat h4 {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -1px;
  margin-bottom: 8px;
  color: var(--white-text-color);
}

.stat p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #bfbfbf;
}

/* ================= Our expertise SECTION ================= */
.expertise-section {
  background: #000;
  padding: 80px 0 140px 0px;
  color: var(--white-text-color);
}

.section-tag {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.section-our {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -3px;
}

.section-our span {
  color: var(--text-color);
  font-weight: 500;
}

.expertise-card {
  position: relative;
  display: block;
  height: 572px;
  overflow: hidden;
  clip-path: polygon(50px 0%, 100% 0%, 100% 92%, 100% 100%, 0% 100%, 0% 50px);
}

.expertise-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 50.12%,
      rgba(0, 0, 0, 0.84) 95.31%
    ),
    linear-gradient(47deg, rgba(0, 0, 0, 0) 52.57%, rgba(0, 0, 0, 0.71) 92.97%);
}

.card-overlay .triangle {
  left: 0 !important;
  top: 0px !important;
}

.card-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white-text-color);
}

.card-content h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--white-text-color);
  margin-bottom: 0;
}

/* Hover effect */
.expertise-card:hover img {
  transform: scale(1.08);
  cursor: pointer;
}

/* Heading color change */
.expertise-card:hover .card-overlay h4 {
  color: var(--white-text-color);
  /* text-decoration: underline ; */
  cursor: pointer;
}

.expertise-card:hover .card-content {
  /* color: var(--text-color); */
  cursor: pointer;
}

.arrow img {
  /* width: 20px; */
  transition: 0.3s ease;
  filter: brightness(0) invert(1);
}

.link-header .arrow img {
  filter: inherit !important;
}

.arrow {
  position: relative;
  display: inline-block;
}

.arrow img {
  width: 14px;
  transition: 0.3s ease;
  margin-right: 8px;
}

.arrow-red {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.arrow:hover .arrow-white {
  opacity: 0;
}

.arrow:hover .arrow-red {
  opacity: 1;
}

.expertise-card:hover video {
  transform: scale(1.05);
  transition: 0.5s ease;
}

/* ================= About SECTION ================= */
.about-section {
  position: relative;
  background: #000;
  color: var(--white-text-color);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.empty-down {
  height: 100px !important;
}

.about-table th,
td {
  border: 1px solid #888b8d;
  height: 100px;
  vertical-align: middle;
  border-left: none;
}

.about-right {
  border-right: none !important;
}

.about-table td {
  border: 1px solid #888b8d;
  height: 400px;
  vertical-align: middle;
  border-left: none;
}

/* SIDE EMPTY CELLS */
.empty {
  width: 18%;
  vertical-align: text-bottom !important;
}

/* CENTER CONTENT */
.content-cell {
  width: 78%;
  text-align: center;
  padding: 60px 40px;
  color: var(--white-text-color);
}

.about-label {
  text-align: right;
  margin-right: 22px;
  position: relative;
}

.high-light-table-box .shape {
  position: absolute;
  right: 48%;
  top: 33px;
}

.highlight-table-label {
  margin-top: 13%;
  display: inline-block;
  color: var(--span-color);
  text-transform: uppercase;
  font-weight: 400;
}

/* TEXT STYLING */
.section-label {
  color: #aaa;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: left;
  margin-bottom: 60px;
}

.main-text {
  font-size: 29px;
  font-weight: 300;
  margin-bottom: 30px;
}

.sub-text {
  max-width: 822px;
  margin: 0 40px;
  color: var(--white-text-color);
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 42px;
  letter-spacing: -2px;
}

.read-more-btn {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: -0.33px;
  transition: 0.3s;
  font-weight: var(--font-weight-semibold);
  margin-top: 44px;
}

/* .custom-border{
    margin: 0;
    padding: 0px;
} */

.read-more-btn:hover {
  background: var(--text-color);
  color: var(--white-text-color) !important;
}

.divide-entire-webs {
  background: #888b8d;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  margin-top: 0px;
}

.arrow.nation-trust-view {
  margin-left: 0px;
}

/* ================= Nation SECTION ================= */

.projects-section {
  background: #000;
  color: var(--white-text-color);
  padding: 141px 0px 80px 0px;
  overflow: hidden;
}

.section-tag {
  color: #aaa;
  letter-spacing: 2px;
  font-size: 14px;
}

.projects-title {
  margin: 0px 0;
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -1px;
  margin-top: -8px;
}

.projects-title span {
  color: var(--text-color);
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -3px;
}

.projectSwiper {
  height: 520px;
  overflow: hidden;
  /* margin-top: 18px; */
  margin-top: 0px;
  position: relative;
}

.projectSwiper > .swiper-pagination {
  position: absolute;
  top: 50%;
  right: -52px;
  left: auto;
  bottom: auto;
  width: auto;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.projectSwiper .swiper-slide {
  display: flex;
  align-items: stretch;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.projectSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(80px 0%, 100% 0%, 100% 92%, 100% 100%, 0% 100%, 0% 80px);
  transition: 0.3s ease;
  margin-bottom: 30px;
  position: relative;
}

.projectSwiper > .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: transparent;
  border: 1px solid #8c8c8c;
  opacity: 1;
}

.projectSwiper > .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--text-color) !important;
  border-color: var(--text-color) !important;
  left: 0px !important;
}

.projectSwiper > .swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  left: 0 !important;
}

.projectSwiper {
  padding: 0px 0px 0px 38px !important;
}

.project-icon-red .shape {
  right: 20%;
  top: 30px;
}

.triangle {
  position: absolute;
  top: -8px;
}

.project-info .info-block {
  margin-bottom: 40px;
}

.serve-icon i {
  color: var(--text-color);
  font-size: 30px;
  margin-top: 18px;
  margin-left: 20px;
}

.project-info span {
  color: #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  display: block;
  padding-bottom: 7px;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}

.project-info h4 {
  font-size: 22px;
  margin-top: 5px;
}

.slide-count {
  margin-top: 34%;
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}

.current-b {
  font-weight: 500;
}

.slide-count-divide {
  width: 16%;
  height: 1px;
  background: #bfbfbf;
  margin: 3px 0px 0px 0px;
  display: block;
}

.shooting-indoor.versatile p {
  margin-top: 0px !important;
}

a.view-all {
  display: inline-block;
  margin-top: 30px;
  color: var(--white-text-color);
  text-decoration: none;
  color: var(--white-text-color);
  text-align: right;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: var(--font-weight-medium);
  letter-spacing: -2px;
  background: var(--text-color);
  padding: 10px 40px;
}

a.view-all {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  color: var(--white-text-color);
  text-decoration: none;
  text-align: right;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: var(--font-weight-medium);
  letter-spacing: -2px;
}

/* Underline on text only */
.view-all-label {
  position: relative;
  display: inline-block;
}

.view-all-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: var(--white-text-color);
  transition: width 0.4s ease;
}

a.view-all:hover .view-all-label::after {
  width: 100%;
}

.view-all sup {
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 0px 0px 0px 7%;
}

.project-info.project-box {
  padding: 10px 0px !important;
}

.arrow-white-nation {
  /* width: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* ================= Upcoming Events ================= */
.upcoming-events-section {
  background: #000;
  color: var(--white-text-color);
  padding: 80px 0px 80px;
}

.upcoming-events-section .projects-title {
  margin-top: 12px;
  margin-bottom: 0px;
}

.upcoming-events-section .projects-title span {
  display: block;
}

.event-feature-wrap {
  padding-top: 110px;
}

.event-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}

.event-badge {
  width: 180px;
  height: 180px;
  border: 2px solid #d8c59a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background: #050505;
}

.event-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-divider {
  width: 1px;
  height: 336px;
  background: #525252;
  margin: 0 auto;
}

.event-content-box {
  padding-left: 34px;
}

.event-content-box h3 {
  color: #fff;
  font-family: Montserrat;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -2px;
  margin-bottom: 38px;
  text-transform: uppercase;
}

.event-date {
  color: #fff;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.event-booth-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  color: #000;
  padding: 14px 22px 16px;
  min-width: 314px;
  margin-bottom: 18px;
}

.event-booth-card h4 {
  color: #000;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.8px;
  margin-bottom: 6px;
}

.event-booth-card span {
  color: #222;
  font-family: Montserrat;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.event-venue {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin-bottom: 0px;
}

/* ================= News SECTION ================= */
.news-section {
  background: #000;
  color: var(--white-text-color);
  padding: 80px 0px;
}

.section-tag {
  color: #aaa;
  letter-spacing: 2px;
}

.section-title {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
}

.section-title span {
  color: var(--text-color);
  font-weight: 500;
}

.news-card {
  background: #000;
  overflow: hidden;
  position: relative;
}

/* .news-card img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: 2s ease-in-out;
} */

.triangle img {
  height: 63px !important;
}

/* .news-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
} */

.news-card {
  overflow: hidden;
}

.news-card img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  position: relative;
}

.news-card:hover img {
  transform: scale(1.08);
}

.news-card {
  transition: all 0.4s ease;
}

.news-card.active img {
  height: 420px;
  object-fit: cover;
  clip-path: polygon(50px 0%, 100% 0%, 100% 92%, 100% 100%, 0% 100%, 0% 50px);
}

.news-card:not(.active) img {
  height: 200px;
  object-fit: cover;
  opacity: 0.8;
}

/* .news-card img {
    width: 100%;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
} */

.out-spaces {
  margin-bottom: 40px;
}

.news-content {
  padding: 36px 0 36px 0;
}

.news-content small {
  color: #888;
}

.news-content h4 {
  margin: 10px 0 30px;
  color: #fff;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 33.8px;
  letter-spacing: -1.04px;
}

.news-content a {
  border: 1px solid var(--text-color);
  color: var(--text-color);
  padding: 7px 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
}

a.checkout-more {
  position: relative;
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28.6px;
  letter-spacing: -1.1px;
  text-decoration: none;
}

.checkout-more-label {
  position: relative;
  display: inline-block;
}

.checkout-more-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--text-color);
  transition: width 0.4s ease;
}

a.checkout-more:hover .checkout-more-label::after {
  width: 100%;
}

.news-content a:hover {
  background: var(--text-color);
  color: var(--white-text-color);
}

.rigt-arrow-view {
  color: var(--text-color);
  margin-right: 10px;
}

.checkout {
  display: flex;
  justify-content: end;
  align-items: end;
}

.checkout a {
  color: var(--white-text-color);
  /* height: 162px; */
  display: flex;
  align-items: center;
  background: #c2262b;
  padding: 16px 60px;
}

/* ================= FAQ SECTION ================= */
.faq-section {
  background: var(--white-text-color);
  padding: 120px 0px;
}

.doubt {
  color: #000;
}

.faq-left h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -3px;
}

.faq-left span {
  color: var(--text-color);
  font-weight: 500;
}

.faq-left p {
  color: #0c0c0c99;
  margin: 25px 0;
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
  letter-spacing: -0.5px;
}

/* a.ask-link {
  text-decoration: none;
  color: var(--text-color);
  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: var(--font-weight-semibold);
  line-height: 28.6px;
  letter-spacing: -1.1px;
} */

a.ask-link {
  position: relative;
  text-decoration: none;
  color: var(--text-color);
  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: var(--font-weight-semibold);
  line-height: 28.6px;
  letter-spacing: -1.1px;
  display: inline-block;
}

/* underline lines */
a.ask-link::before,
a.ask-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--text-color);
  transition: width 0.3s ease;
}

/* left side */
a.ask-link::before {
  left: 26px;
}

/* right side */
a.ask-link::after {
  right: 1px;
}

/* hover animation */
a.ask-link:hover::before,
a.ask-link:hover::after {
  width: 50%;
}

.faq-title {
  font-size: 26px;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 34px 0;
  font-size: 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.5px;
  cursor: pointer;
}

.faq-btn .icon {
  width: 16px;
  height: 16px;
  position: relative;
  transition: transform 0.6s ease;
}

.faq-btn .icon::before,
.faq-btn .icon::after {
  content: "";
  position: absolute;
  background: var(--text-color);
}

.faq-btn .icon::before {
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
}

.faq-btn .icon::after {
  width: 2px;
  height: 16px;
  left: 7px;
  top: 0;
  transition: opacity 0.3s ease;
}

/* CONTENT */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.faq-content p {
  padding-bottom: 20px;
  color: #0c0c0c99;
  margin-bottom: 0px;
  line-height: 26px;
  letter-spacing: -0.5px;
  font-size: 18px;
  font-weight: 400;
}

/* ACTIVE STATE */
.faq-item.active .faq-content {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

.faq-item.active .icon::after {
  opacity: 0;
  /* minus icon */
}

/* ================= FAQ SECTION ================= */

.footer-box {
  border-top: 1px solid #888b8d;
  border-bottom: 1px solid #888b8d;
  padding: 0px 75px;
}
.footer-form input::placeholder {
  color: #fff;
}

.footer-form textarea::placeholder {
  color: #fff;
}
.aimtrex-footer {
  background: #000;
  color: #aaa;
  padding: 120px 0px 0px 0px;
  position: relative;
  overflow: hidden;
}

.footer-brand-logo {
  text-align: center;
  margin-bottom: 40px;
}

.whatsapp-sale {
  margin-top: 50px;
}

.footer-main {
  position: relative;
  z-index: 2;
}

.footer-form h5 {
  margin-bottom: 30px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25.2px;
  letter-spacing: -0.5px;
  color: #fff;
}

.project-icon img {
  width: 12px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 10px 0;
  color: var(--white-text-color) !important;
  margin-bottom: 19px;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -1px;
}

.footer-form input,
.footer-form textarea:focus-visible {
  outline: inherit;
}

.footer-form textarea {
  resize: none;
  height: 60px;
}

.form-required-invalid {
  border-color: var(--text-color) !important;
}

.footer-form input.form-required-invalid,
.footer-form textarea.form-required-invalid {
  border-bottom-color: var(--text-color) !important;
}

.footer-btn {
  color: var(--white-text-color);
  text-decoration: none;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.6px;
  letter-spacing: -1.1px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  margin-bottom: 3px;
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  letter-spacing: -0.72px;
}

.footer-sales {
  display: inline-block !important;
}

.other-mb {
  margin-bottom: 20px !important;
}

.footer-links a:hover {
  color: var(--white-text-color);
}

.footer-link-label {
  position: relative;
  display: inline;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: left 100%;
  transition: background-size 0.25s ease;
}

.footer-links a:hover .footer-link-label,
.footer-links a:focus-visible .footer-link-label,
.link-header:hover .footer-link-label,
.link-header:focus-visible .footer-link-label,
.link-about.active .link-header .footer-link-label {
  background-size: 100% 1px;
}

.aimtrex-footer a,
.aimtrex-footer a:visited,
.aimtrex-footer a:hover,
.aimtrex-footer .link-header,
.aimtrex-footer .link-header a,
.aimtrex-footer .dropdown a,
.aimtrex-footer .link-about > a {
  color: #fff !important;
}

.footer-contact .sales-link {
  color: var(--white-text-color);
  text-decoration: none;
  font-size: 18px;
}

.footer-bottom {
  margin-top: 10px;
  align-items: center;
}

.socials i {
  color: #fff;
  margin-left: 15px;
  font-size: 18px;
}

.footer-bottom p {
  margin-top: 0px;
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 50.6px;
  letter-spacing: -0.22px;
}

.footer-bottom span {
  color: var(--text-color);
  font-style: italic;
  font-weight: 500;
}

.serve-icon img {
  width: 24px !important;
}

.makes-lion {
  margin-bottom: 20px;
}

.footer-sales {
  color: var(--white-text-color) !important;
  font-size: 24px !important;
  font-style: normal;
  font-weight: var(--font-weight-semibold) !important;
  line-height: 28.6px !important;
  letter-spacing: -1.1px !important;
  background: #c2262b;
  padding: 14px 22px;
}
.check-red {
  width: 15px;
}

.footer-box {
  border-top: 1px solid #888b8d;
  border-bottom: 1px solid #888b8d;
}

.custom-border {
  padding: 0;
  margin: 0;
}

.rquest-demo {
  border-left: 1px solid #888b8d;
  border-right: 1px solid #888b8d;
  padding: 40px 40px 0px 40px;
}

.footer-box.attchment-border {
  border: none;
}

.about-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.arrowed img {
  width: 14px;
  margin-right: 15px;
}

.link-header {
  display: flex;
  justify-content: start;
  align-items: center;
  /* padding: 10px 0;  */
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 25.2px;
  letter-spacing: -0.72px;
  font-weight: 300;
}

.link-header .arrow {
  margin-left: 9px;
  margin-top: 3px;
}

.link-header .arrow img {
  top: -3px;
}

.link-header:hover {
  color: var(--white-text-color);
}

/* Arrow */
.arrow {
  font-size: 18px;
  transition: transform 0.4s ease;
}

.link-about.active .arrow {
  transform: rotate(0deg);
}

/* Dropdown animation */
.dropdown {
  list-style: none;
  padding-left: 15px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease;
  opacity: 0;
}

.dropdown li {
  padding: 1px 0;
}

.dropdown a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.dropdown a:hover {
  color: var(--white-text-color);
}

.link-about.active .dropdown {
  max-height: 300px;
  opacity: 1;
}

/* ================= About page css ================= */
.values-section {
  background: #000;
  color: var(--white-text-color);
  padding: 120px 0;
}

.section-tag {
  color: #999;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.icon-value {
  display: flex;
  align-items: center;
}

.about-divider-line {
  background: #bfbfbf;
  width: 100%;
  height: 1px;
  margin-top: 0px;
  margin-bottom: 20px;
}

.serve-box {
  width: 100%;
  height: auto;
  padding-right: 80px;
}

.serve-box.last-child {
  padding-right: 0px;
}

.values-title {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -2px;
}

.values-title span {
  color: var(--text-color);
  font-weight: 600;
}

.values-desc {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: -0.5px;
  margin-top: 7.3%;
}

.values-row {
  margin-top: 176px;
}

.value-box {
  margin-bottom: 40px;
  width: 100%;
  padding-right: 60px;
}

.value-box.last-child {
  padding-right: 0;
}

.value-box .icon {
  margin-right: 20px;
}
.value-box .icon img {
  width: 55px;
  height: 64px;
}

.operational-icon {
  width: 40px !important;
}

.uncompromised-icon {
  width: 64px !important;
}

.safety-stand {
  width: 100% !important;
}

.value-box h4 {
  margin-bottom: 0px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -1px;
}

.value-box hr {
  border: none;
  height: 2px;
  background: #d6d6d6;
  margin: 18px 0;
}

.value-box p {
  color: #c1c1c1;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: -0.64px;
  width: 95%;
}

.mobile-sub-text {
  margin-bottom: 0px;
}

.icon-whatsapp img {
  display: inline-block;
  margin-left: 11px;
  width: 33px !important;
  height: 33px !important;
}

.serve-box h4 {
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 107.143% */
  letter-spacing: -1px;
  border-bottom: 1px solid #888b8d;
  padding-bottom: 20px;
  margin-bottom: 0px;
}

.serve-box p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: -0.5px;
  margin-top: 20px;
  color: #c1c1c1;
}

.serve-spaces {
  margin-bottom: 130px !important;
}

/* ================= Project page css ================= */
.spaces-header {
  padding: 40px 0px;
}

.range-section {
  background: #000;
  color: var(--white-text-color);
  padding: 120px 0;
}

.project-info h3 {
  display: flex;
  align-items: center;
}

.police-logo {
  margin-right: 12px;
  border: none !important;
}

.place-show-box {
  margin-bottom: 190px;
  position: relative;
}

.project-show-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.project-arrow-icon {
  width: 16px;
  /* height: 16px; */
}

span.serve-icon {
  border-bottom: none;
}

.mobile-place {
  position: relative;
  overflow: hidden;
}

span.project-arrow-icon {
  border-bottom: none;
}

.tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.tags.indoor-tags {
  margin-bottom: 36px;
}

.small-title {
  color: #888;
  font-size: 14px;
  letter-spacing: 1px;
}

.main-title {
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -2px;
  margin-bottom: 0px;
}

.main-title span {
  color: var(--text-color);
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -2px;
}

.right-text {
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  margin-top: 7.3%;
}

/* Tabs */
.tab-buttons {
  margin-top: 72.55px;
}

.tab-btn {
  background: transparent;
  border: 1px solid #888b8d;
  color: var(--white-text-color);
  padding: 7px 14px;
  margin-right: 7.5px;
  color: #fff;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.3px;
  letter-spacing: -0.44px;
  text-transform: capitalize;
  margin-left: 0px;
}

.tab-btn.active {
  border-color: var(--text-color);
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.3px;
  letter-spacing: -0.44px;
  text-transform: capitalize;
}

/* Content */
.tab-content {
  display: none;
  margin-top: 80.45px;
}

.tab-content.active {
  display: block;
}

.project-info h3 {
  color: #fff;
  font-family: Montserrat;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: -0.84px;
  margin-bottom: 30px;
}

.location {
  color: #888b8d !important;
  font-family: Montserrat;
  font-size: 28px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 32px !important;
  letter-spacing: -2px !important;
  margin-bottom: 30px;
}

.tags span {
  border: 1px solid #888b8d;
  margin-right: 10px;
  padding: 7px 14px;
  align-items: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 14.3px;
  letter-spacing: -0.44px;
  text-transform: uppercase;
}

.indoor-shoot-ranging h3 {
  margin-bottom: 0px;
}

.project-img {
  margin-top: 36px;
  width: 100%;
  height: 409px;
  object-fit: cover;
  overflow: hidden;

  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-img:hover {
  transform: scale(1.08);
}

/* ================= combat page css ================= */
.combat-deliviering {
  font-weight: 500;
  font-size: 20px;
}

.combat-section {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0) 81.58%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 57.08%, #000 101.8%);
  color: var(--white-text-color);
  padding: 160px 0px 60px 0px;
}

/* Title */
.combat-title {
  /* padding: 0px 20px 28px 62px; */
  padding: 0px 20px 28px 55px;
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -1.8px;
  width: 90%;
}

.my-gun {
  width: 120px !important;
}

/* Right text */
.combat-text {
  padding: 20px 45px 20px 20px;
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.combat-text strong {
  font-weight: 500;
  margin-bottom: 7px;
  display: inline-block;
}

/* Video */
/* .video-wrapper {
    margin-top: 80px;
    margin-top: 0;
    overflow: hidden;
    border-radius: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 81.58%, #000 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 57.08%, #000 101.8%);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
} */

.video-wrapper {
  position: relative;
  /* margin-top: 80px; */
  margin-top: -32px;
  overflow: hidden;
}

.image-wrapper.indoor-shooting-img-details img {
  height: 410px;
}

/* Gradient Overlay */
.video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* control fade height */
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0) 81.58%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 57.08%, #000 101.8%);
  z-index: 2;
  pointer-events: none;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.custom-spacing {
  margin: 0;
  padding: 0;
}

.serving-section {
  background: #000;
  color: var(--white-text-color);
  padding: 60px 0 145px 0px;
}

.qc-b {
  margin-top: 20px !important;
}

.section-label {
  color: #888;
  font-size: 14px;
  letter-spacing: 2px;
}

.main-heading {
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
}

.main-heading span {
  color: #e50914;
}

.sub-heading {
  font-size: 42px;
  font-style: normal;
  font-weight: 300;
  line-height: 46px;
  letter-spacing: -0.84px;
}

.section-desc {
  margin: 20px 0 30px;
  color: var(--span-color);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  letter-spacing: -0.72px;
}

.service-links {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.service-links li {
  margin-bottom: 10px;
}

.service-links a {
  color: var(--white-text-color);
  text-decoration: none;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: -2px;
}

.service-links span {
  color: #c8102e;
  margin-left: 12px;
}

.image-wrapper {
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
}

.sub-text {
  max-width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper img:hover {
  transform: scale(1.25);
}

.combat-videos {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.combat-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.combat-video:hover {
  transform: scale(1.25);
}
/* ================= Indoor Shooting css ================= */

.breadcrumb {
  padding: 0px 58px;
}

.breadcrumb-item {
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}

.separator {
  color: var(--text-color);
  margin: 0 4px;
}

.breadcrumb-current {
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}

.shooting-indoor {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}

.shooting-indoor p {
  color: var(--white-text-color);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.5px;
  width: 75%;
  margin-bottom: 0px;
  margin-top: 7.3%;
}

.shooting-indoor span {
  font-weight: 300;
  margin-bottom: 0px;
  display: inline-block;
}

.setting-box {
  display: flex;
  align-items: center;
  justify-content: end;
}

.scalable-micsr p {
  color: #0c0c0c;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.national-bulit h5 {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -1.04px;
  color: var(--white-text-color);
  margin-top: 77px;
  margin-bottom: 70px;
}

.national-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.national-slider img {
  max-height: auto;
  width: auto;
  /* filter: brightness(0) invert(1); */
  transition: 0.3s ease;
  height: 63px;
}

.national-slider img:hover {
  transform: scale(1.1);
}

.national-slider {
  margin-bottom: 150px;
}

.Ballistic .arrow {
  transition: transform 0.3s ease;
}

.Ballistic.active .arrow {
  transform: rotate(180deg);
}

.Ballistic {
  border-bottom: 1px solid #e0e0e0;
  /* margin-bottom: 24px; */
}

.Ballistic-content p {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.Ballistic-content ul li {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 10px;
}

.image-wrapper.indoor-shooting-img-details {
  margin-bottom: 197px;
}

.Ballistic-header {
  padding: 24px 0px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.Ballistic-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 20px;
}

.Ballistic.active .Ballistic-content {
  max-height: 500px !important;
  padding: 15px 20px 25px;
}

.arrow {
  transition: transform 0.3s ease;
  margin-left: 12px;
}

.arrow i {
  color: var(--text-color);
}

/* miscr page css */

.combat-safet {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* padding: 0px 20px 147px 62px; */
  padding: 0px 20px 147px 55px;
  color: var(--white-text-color);
  margin-bottom: 0px;
}

.drodro-box {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: end;
  padding-left: 19%;
  position: relative;
}

.logo-drodo {
  width: 50%;
}

.drodo-line {
  position: absolute;
  width: 10%;
  height: 1px;
  background: #dadada;
  transform: rotate(90deg) !important;
  top: 50%;
  left: 46%;
}

.main-title.versat {
  color: #000;
  font-weight: 400;
}

.full-scalable {
  /* padding: 25px 58px; */
  padding: 25px 38px;
  background: #fff;
  transition: all 0.35s ease;
  cursor: pointer;
}

.full-scalable.battke-testes {
  /* margin-top: 17px; */
}

.full-scalable-header h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -1px;
  color: var(--text-black-color);
}

.full-scalable-divider {
  height: 1px;
  background: #d6d6d6;
  margin: 12px 0 18px 0px;
  transition: all 0.35s ease;
}

.full-scalable p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.8px;
  /* 130% */
  letter-spacing: -0.64px;
  color: #0c0c0c99;
}

.full-scalable-header {
  display: flex;
  align-items: center;
}

.full-scalable-icon {
  margin-right: 30px;
}

.full-scalable-icon img {
  /* width: 35px; */
  width: 100%;
}

.add-traing {
  width: 27px !important;
}

.least-cqr {
  margin-bottom: 0px !important;
}

.request-brohure a {
  position: relative;
  font-size: 28px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -2px;
  text-decoration: none;
  color: var(--text-color);
  display: flex;
  align-items: center;
  width: 99%;
}

/* underline */
.request-brohure a::after {
  content: "";
  position: absolute;
  left: 27px;
  bottom: -5px; /* adjust spacing */
  width: 0;
  height: 2px;
  background-color: var(--text-color);
  transition: width 0.4s ease;
}

/* hover effect */
.request-brohure a:hover::after {
  width: 46%;
}

.setting-boxs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fully-scalable {
  padding: 80px 100px 0px 81px;
}

.compromise-box {
  margin-top: 130px;
}

.compromise-photo {
  margin-bottom: 163px;
}

.compromise-end {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: end;
  margin-bottom: 163px;
}

.compromise-end {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: end;
}

.compromise-content h5 {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -1px;
}

.compromise-content p {
  font-size: 20px;
  font-style: normal;
  width: 90%;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.compromise-content ul li {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.divider-default {
  background: #888b8d;
  height: 1px;
  width: 100%;
}

.news-insight-box.pl-target.last-atarget-box {
  margin-bottom: 0px !important;
}

.news-insight-box.pr-target.last-target-content-show {
  margin-bottom: 0px;
}

.target-system .swiper {
  padding-left: 80px;
}

.target-card {
  background: #000;
  margin-top: 81px;
}

.target-card img {
  width: 100%;
  height: 379px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  clip-path: polygon(11% 0%, 100% 0%, 100% 92%, 100% 100%, 0% 100%, 0% 8%);
}

.target-card h4 {
  color: var(--white-text-color);
  margin-top: 20px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -1px;
}

/* Hover Effect */
.target-card:hover img {
  transform: scale(1.05);
}

.target-card:hover h4 {
  color: var(--white-text-color);
}

/* View All */
.target-system-header {
  text-align: right;
  margin-bottom: 30px;
}

.view-all {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.view-all span {
  color: var(--text-color);
  margin-bottom: -3px;
}

.view-all:hover {
  color: var(--white-text-color);
}

a.view-all.feature-project {
  color: #000;
}

.view-all-label.miscr-b {
  color: #fff;
}

.view-all-label.miscr-w {
  color: #fff;
}

.arrowed i {
  color: var(--bg-bg-black-color);
}

.stat {
  position: relative;
}

.projects-done h2 {
  margin: 0;
  font-size: 90px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: -1.1px;
  margin-bottom: 8px !important;
}

.suffix-plus {
  font-size: 90px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: -1.1px;
  position: absolute;
  top: 2px;
  left: 26%;
}

.suffix {
  font-size: 90px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: -1.1px;
  position: absolute;
  top: 0px;
  left: 34%;
}

.force-section {
  display: flex;
  width: 100%;
  height: 600px;
  font-family: "Poppins", sans-serif;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff !important;
}
.swiper-pagination-bullet {
  background: transparent !important;
  border: 1px solid #fff !important;
  opacity: 1 !important;
}

.shooting-indoor.resources-pa h5 {
  width: 100% !important;
}

.shooting-indoor.resources-pa p {
  width: 100% !important;
  margin-top: 0px !important;
}
.compromise-photo {
  overflow: hidden;
}

.compromise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.compromise-photo:hover img {
  transform: scale(1.25);
}
/* .compromise-photo img {
  width: 100%;
} */
/* LEFT PANEL */
.projects-done {
  background: #000;
  color: #fff;
  padding: 90px 50px 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(15% 0%, 100% 0%, 100% 92%, 100% 100%, 0% 100%, 0% 15%);
  height: 469px;
  padding-bottom: 0px;
}

.projects-done .stat {
  margin-bottom: 10px;
}

/* .projects-done h2 {
    font-size: 110px;
    font-weight: 700;
    margin: 0;
} */

.projects-done p {
  opacity: 0.8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20.8px;
  letter-spacing: -0.64px;
  color: var(--bg-bg-whited-color);
}

/* RIGHT SLIDER */
.force-slider {
  position: relative;
}

.force-slider img {
  width: 100%;
  height: 469px;
  object-fit: cover;
}

/* Overlay */
.slide-image {
  position: relative;
}

.slide-overlay {
  position: absolute;
  bottom: 30px;
  left: 0px;
  color: #fff;
  width: 100%;
  padding: 0px 40px;
}

.force-slider .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 22px !important;
}

.overlay-bg {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.63%, #000 86.93%);
  position: absolute;
  width: 100%;
  bottom: 1px;
  height: 469px;
}

.slide-overlay h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.6px;
  letter-spacing: -1.1px;
  width: 80%;
}

.slide-overlay p {
  font-size: 18px;
  opacity: 0.9;
  width: 100%;
  text-align: right;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--text-color);
  opacity: 1;
}

.project-making {
  margin-top: 80px;
}

.slide-view-project {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slide-view-project-content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 0;
  width: 64%;
  margin: 0 0 0 auto;
}

.stat.project-static {
  margin-top: 40px !important;
}

.gallery-content p {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -2px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.gallery-content span {
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
  height: 750px;
  background: #000;
  padding: 76px 0px 0px 0px;
}

/* POSITIONING */
.left {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.middle-top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.middle-bottom {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.right-gallery {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-popup.active {
  display: flex;
}

.popup-content {
  width: 85%;
  max-width: 1200px;
  position: relative;
}

.popup-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.gallerySwiper img {
  width: 100%;
  height: 80vh;
  object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.shooting-indoor h5 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -1px;
  text-align: left !important;
  width: 75%;
}

.shooting-indoor h6 {
  width: 75%;
}

.shooting-indoor ul li {
  width: 100%;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.shooting-indoor ul {
  width: 75%;
}

.contact-aim {
  margin: 0 auto;
  width: 49%;
}

.news-insight-box {
  margin-bottom: 118px;
  /* padding-top: 84px; */
}

.news-insight-box .project-info {
  padding: 0px 48px 0px 0px;
  justify-content: flex-start;
  min-height: 100%;
}

.news-insight-box .mobile-place {
  position: relative;
}

.news-insight-box .mobile-place img {
  height: 500px;
  object-fit: cover;
  width: 100%;
  /* clip-path: polygon(52px 0%, 100% 0%, 100% 92%, 100% 100%, 0% 100%, 0% 52px); */
}

.combat-safet.combat-month {
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: -2px;
  color: #888b8d;
}

.news-insight-box .project-info h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -2px;
  text-transform: none;
  display: block;
  margin-bottom: 28px;
}

.news-insight-box .project-info p {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #878787;
  margin-bottom: 30px;
}

.news-insight-box .project-info .location {
  color: #6c6c6c !important;
  font-size: 28px !important;
  line-height: 32px !important;
  letter-spacing: -1px !important;
  margin-bottom: 28px;
}

.news-insight-teaser {
  max-width: 82%;
}

.news-insight-corner {
  position: absolute;
  top: 26px;
  right: 28px;
  z-index: 2;
}

.read-more-btn.newsight {
  width: 124px;
  height: 30px;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.33px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  text-decoration: none;
  padding: 0px;
}

.target-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.left-target {
  border-top: none !important;
}

.middle-target {
  border-top: none !important;
}

.target-right {
  border-right: none !important;
  border-top: none !important;
}

.empty-down {
  height: 100px !important;
}

.target-table th {
  border: 1px solid #888b8d;
  height: 100px;
  vertical-align: middle;
  border-left: none;
}

.target-table td {
  border: 1px solid #888b8d;
  height: 400px;
  vertical-align: middle;
  border-left: none;
}

/* SIDE EMPTY CELLS */
.empty {
  width: 18%;
  vertical-align: text-bottom !important;
}

/* CENTER CONTENT */
.content-cell {
  width: 78%;
  text-align: center;
  padding: 62px 40px;
  color: var(--white-text-color);
}

.main-warriors {
  padding: 52px 0px;
}

.icon-combat-banner {
  position: relative;
}

.comabt-icon-banner-view {
  position: absolute;
  top: 35px;
  right: 29px;
}

.comabt-icon-banner-view img {
  width: 12px;
  height: 12px !important;
}

.divide-support {
  width: 100%;
  background: #d6d6d6;
  height: 1px;
  margin-top: 12px;
  margin-bottom: 18px;
}

.shoot-wrapper img {
  width: 100%;
  height: 749px;
  object-fit: cover;
}

.ptb-150 {
  padding: 150px 0px 130px 0px;
}

.combat-safet.mcisr-content {
  padding-bottom: 33px;
}

.compromise-content h5 {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
}

.red-icon-ball img {
  width: 12px;
  margin: 0;
  padding: 0px;
}

.red-icon-ball {
  display: grid;
}

.pl-miscr {
  padding-right: 59px;
}

.pr-miscr {
  padding-left: 59px;
}

.left-cqr {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.right-gallery-cqr {
  grid-column: 8 / 4;
  grid-row: 1 / 3;
}

.target-system-ed {
  margin-bottom: 80px;
}

.indoor-shoot-ranging h3 {
  text-transform: uppercase !important;
  margin-bottom: 10px;
}

.pr-target {
  padding-right: 25px;
}

.target-label span {
  text-transform: capitalize !important;
}

/* .last-photo img {
  margin-top: 9.5%;
} */

.shot-show {
  margin-top: 4%;
}

.newsight {
  margin-top: 0px;
}

.news-details-extra {
  padding: 0px 64px;
}

.new-details-format {
  margin-bottom: 0px !important;
  padding-bottom: 16px !important;
}

.news-content-stay {
  padding-bottom: 0px !important;
}

.news-content-stay {
  padding-bottom: 18px !important;
  margin: 0px 59px;
  padding-left: 0px;
}

.news-content-stay {
  border-bottom: 1px solid #888b8d;
}

.pl-target {
  padding-left: 25px;
}
.news-details-contented {
  margin-top: 0px !important;
}

.legal-page {
  background: #000;
  color: var(--white-text-color);
  padding-bottom: 38px;
}

.legal-intro {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.5px;
  max-width: 1180px;
  margin: 0px 0px 0px 60px;
  padding: 0px;
}

.legal-divider {
  margin: 28px 60px 0px;
}

.legal-content-section {
  background: #000;
  color: var(--white-text-color);
  padding: 28px 0px 90px;
}

.legal-block {
  margin: 0px 60px 62px;
  max-width: 1320px;
}

.legal-block:last-child {
  margin-bottom: 0px;
}

.legal-block h3 {
  color: #fff;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.legal-block p,
.legal-block li {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.legal-block p {
  margin-bottom: 10px;
}

.legal-block ul {
  margin: 0px 0px 14px 0px;
  padding-left: 22px;
}

.legal-block li {
  margin-bottom: 5px;
}

.cookie-popup[hidden] {
  display: none !important;
}

.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cookie-popup__panel {
  position: relative;
  z-index: 1;
  width: min(475px, calc(100vw - 48px));
  background: #fff;
  padding: 36px;
}

.cookie-popup__content p {
  color: #111;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}

.cookie-popup__content a {
  color: #111;
  text-decoration: underline;
}

.cookie-popup__actions {
  display: flex;
  gap: 18px;
}

.cookie-popup__actions--stacked {
  flex-direction: column;
  gap: 12px;
}

.cookie-popup__btn {
  appearance: none;
  border: 0;
  background: #c2262b;
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.4px;
  min-height: 54px;
  flex: 1 1 0;
  padding: 14px 20px;
}

.cookie-popup__btn--full {
  width: 100%;
  margin-bottom: 20px;
}

.cookie-popup__settings-list {
  margin: 0px 0px 24px;
}

.cookie-popup__settings-item {
  padding: 14px 0px;
  border-bottom: 1px solid #d8d8d8;
}

.cookie-popup__settings-item strong,
.cookie-popup__settings-item span {
  display: block;
  color: #111;
  font-family: Montserrat;
}

.cookie-popup__settings-item strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 4px;
}

.cookie-popup__settings-item span {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

body.cookie-popup-open {
  overflow: hidden;
}

.shooting-indoor.careers p {
  width: 100% !important;
  margin-bottom: 18px;
  font-weight: 300 !important;
  margin-top: 0px;
}

.careers-content-sec {
  margin-top: 0px !important;
}

.shooting-indoor.careers h5 {
  width: 100% !important;
  margin-top: 38px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #fff;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  line-height: 32px;
  letter-spacing: -1px;
}

.shooting-indoor.careers ul {
  width: 100% !important;
  padding-left: 20px;
  margin-bottom: 0px;
}

.shooting-indoor.careers ul li {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.5px;
}

.careers-hero-section,
.contact-page-section {
  background: #000;
  padding: 170px 0px 96px 0px;
}

.careers-page-title,
.contact-page-title {
  width: 100%;
  padding-bottom: 18px;
}

.careers-page-subtitle,
.contact-page-subtitle {
  padding: 0px 20px 0px 55px;
  margin: 0px;
  color: #fff;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: -0.8px;
}

.careers-divider {
  margin: 36px 55px 0px;
}

.careers-copy-row {
  margin-top: 84px;
}

.careers-copy-block {
  padding: 0px 0px 0px 55px;
  max-width: 1080px;
}

.careers-copy-block p,
.contact-page-copy p {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.careers-cta-wrap {
  margin-top: 38px;
}

.careers-cta-wrap .aimtrex-btn,
.contact-page-cta-wrap .aimtrex-btn {
  min-width: 242px;
  justify-content: center;
  text-decoration: none;
}

.careers-openings-section {
  padding: 86px 0px 96px;
}

.careers-openings-row {
  align-items: flex-start;
}

.careers-openings-title {
  margin-top: 10px;
  margin-bottom: 0px;
}

.careers-jobs-column {
  justify-content: flex-start;
}

.careers-job-portal {
  width: 100%;
  padding-left: 18px;
}

.careers-job-filter {
  margin-bottom: 26px;
}

.job-filter {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-input {
  padding: 11px 38px 11px 14px;
  border: 1px solid #888b8d;
  background: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.44px;
  color: #000;
  width: 176px;
}

.job-feild-show {
  position: relative;
}

.feild-icon-search {
  position: absolute;
  top: 11px;
  right: 14px;
}

.filter-input::placeholder {
  color: #000 !important;
}

.search-btn {
  background: #c8102e;
  color: #fff;
  border: none;
  padding: 11px 18px;
  cursor: pointer;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: -0.44px;
}

/* Job Item */
.job-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #d3d3d3;
}

.job-left {
  width: 74%;
}

.job-title {
  margin-bottom: 2px;
  color: #0c0c0c;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.job-location {
  margin: 0 0 2px 0;
  color: #0c0c0c;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.job-exp {
  display: block;
  margin-bottom: 18px;
  color: #0c0c0c;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  color: #0c0c0c;
}

.job-desc {
  color: #0c0c0c;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 19px;
  max-width: 94%;
  margin-bottom: 0;
}

.job-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 130px;
}

.job-type {
  color: #0c0c0c;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.5px;
}

.job-arrow {
  font-size: 22px;
  color: #c8102e;
  cursor: pointer;
  margin-top: 30px;
}

/* Pagination */
.job-pagination {
  margin-top: 52px;
  text-align: center;
}

.page-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #c8102e;
  background: transparent;
  color: #c8102e;
  font-size: 18px;
  margin: 0 10px;
  cursor: pointer;
}

.page-btn.next {
  background: #c8102e;
  color: #fff;
}

.filter-input:focus {
}

.filter-input:focus-visible {
  box-shadow: none;
  border: 1px solid #888b8d;
  outline-offset: 1px;
  outline: #888b8d;
}

.flag-ship-icon-arrow {
  position: absolute;
  right: 12px;
  top: 12px;
}

.flag-ship-icon-arrow img {
  width: 9px !important;
  height: 9px !important;
}

.flag-col {
  width: 35.3%;
}

.flag-vide {
  width: 64.6666667%;
}

/* feedback 27 feb */

.combat-section.project-section {
  padding: 120px 0px 0px 0px;
}

.count-pod {
  position: relative;
  z-index: 999;
}

/* .arrow.nation-trust-view img {
    margin-right: 15px;
} */

.job-together {
  color: #0c0c0c99;
  margin-top: 38px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  letter-spacing: -0.5px;
  max-width: 310px;
}

.space-btw {
  margin-top: 177px;
}

.view-last {
  text-align: left;
  width: 100%;
  margin-top: 40px;
}

.contact-page-row {
  margin-top: 118px;
  min-height: 285px;
}

.contact-page-copy {
  padding: 0px 55px 0px 55px;
  max-width: 760px;
}

.contact-page-copy p:last-child {
  margin-bottom: 0px;
}

.contact-page-cta-wrap {
  display: flex;
  justify-content: flex-end;
  padding-right: 55px;
}

.customer-info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 0px 0px 0px 7%;
}

.customer-info span {
  color: #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  display: block;
  padding-bottom: 7px;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}

.customer-info h4 {
  font-size: 22px;
  margin-top: 5px;
  margin-bottom: 48px;
}

.solution-card,
.expertise-card {
  position: relative;
  overflow: hidden;
}

.solution-card::after,
.expertise-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* change to top:0 if needed */
  width: 0;
  height: 3px;
  background: var(--text-color);
  transition: width 0.4s ease;
}

.solution-card:hover::after,
.expertise-card:hover::after {
  width: 100%;
}

/* ===============================
   IMAGE WRAPPER
================================= */

.target-card .image-box {
  position: relative;
  overflow: hidden;
}

/* Your original image code */
.target-card img {
  width: 312px;
  height: 379px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  clip-path: polygon(11% 0%, 100% 0%, 100% 92%, 100% 100%, 0% 100%, 0% 8%);
}

/* ===============================
   BOTTOM LINE EFFECT
================================= */

.target-card .image-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: var(--text-color);
  transition: width 0.4s ease-in-out;
}

/* Hover */
.target-card .image-box:hover::after {
  width: 100%;
}
/* feedback 27 feb */

.indoor-bottom {
  margin-bottom: 76px;
}

.serve-iconed {
  border-bottom: none !important;
  padding: 0px !important;
  margin-left: 36px;
}

.mcisr-label {
  margin: 0px 62px;
  border: 1px solid #c2262b;
  color: #c8102e;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 11px; /* 78.571% */
  letter-spacing: -0.33px;
  text-transform: uppercase;
  padding: 9px 14px;
  margin-bottom: 20px;
  display: inline-block;
}

.cqcr-photo img {
  width: 100% !important;
  clip-path: polygon(
    50px 0%,
    100% 0%,
    100% 92%,
    100% 100%,
    0% 100%,
    0% 50px
  ) !important;
}

.target-main-mb h3 {
  text-transform: capitalize !important;
}

.place-show-box:last-child {
  margin-bottom: 0px;
}

.bg-house-expertise {
  /* background: url("../../images/expertise.png"); */
  height: 800px;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
}
.bg-house-innovation {
  /* background: url("../../images/Innovation.png"); */
  height: 800px;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
}
.house-expertise {
  position: relative;
  overflow: hidden;
}

.house-expertise img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.house-expertise::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 82.55%, #000 100%), linear-gradient(251deg, rgba(0, 0, 0, 0.00) 15.75%, rgba(0, 0, 0, 0.85) 72.22%), lightgray 50% / cover no-repeat; */
  z-index: 1;
}

.expertise-content {
  position: absolute;
  bottom: 60px;
  left: 9%;
  color: #fff;
  z-index: 2;
  max-width: 600px;
}

.expertise-content.right-side {
  right: 9%;
  left: inherit;
  bottom: 12%;
}

.expertise-content h2 {
  margin-bottom: 55px;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: -0.84px;
}

.expertise-content li {
  margin-bottom: 20px;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: -2px;
}

.expertise-content ul {
  padding-left: 18px;
}

.serve-section {
  padding: 120px 0px;
}

.global-stand h2 {
  color: #0c0c0c;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -1px;
  margin-bottom: 41px;
}

.stand-desc {
  max-width: 420px;
  color: #0c0c0c;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: -0.5px;
}

.point p {
  color: #0c0c0c;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.64px;
  width: 80%;
}

.global-stand h2 {
  width: 80%;
}

.india-logo {
  width: 80px;
}

.stand-points .point {
  position: relative;
}

.point .corner {
  position: absolute;
  top: 2px;
  right: 45px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #f9452d;
  border-right: 2px solid #f9452d;
}

.time-linear-space {
  margin-top: 89px;
}

.global-stand {
  display: grid;
  gap: 33px;
  grid-template-columns: repeat(2, 1fr);
  align-items: self-start;
}

.global-stand img {
  width: 36%;
}

.about-nation {
  position: relative;
}

.stand-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.stand-shape img {
  width: 84%;
}

.arrow-flag img {
  width: 77%;
}

/* timelinear */
.timeline-section {
  background: #000;
  color: #fff;
  padding: 42px 0 34px;
  overflow: hidden;
}

.timeline-shell {
  position: relative;
}

.timeline-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.timeline-viewport::-webkit-scrollbar {
  display: none;
}

.timeline-wrapper {
  --side-space: 28px;
  --line-top: 278px;
  --fill-width: 0px;
  position: relative;
  display: flex;
  gap: 44px;
  width: max-content;
  min-width: 100%;
  min-height: 676px;
  padding: 0 var(--side-space);
}

.timeline-line {
  position: absolute;
  top: var(--line-top);
  left: var(--side-space);
  right: var(--side-space);
  height: 2px;
  background: #3a3a3a;
  z-index: 3;
}

.timeline-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--fill-width);
  background: #c8102e;
}

.timeline-item {
  position: relative;
  flex: 0 0 240px;
  min-height: 676px;
  cursor: pointer;
}

.timeline-item .dot {
  position: absolute;
  left: 50%;
  top: calc(var(--line-top) - 4px);
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border: 2px solid #e00d2f;
  border-radius: 50%;
  background: #000;
  box-sizing: border-box;
  transition: all 0.35s ease;
  z-index: 5;
}

.timeline-item.active .dot {
  width: 26px;
  height: 26px;
  top: calc(var(--line-top) - 7px);
  border: none;
  background: #d90f31;
}

.timeline-img-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 430px;
  height: 240px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    width 0.35s ease,
    height 0.35s ease,
    top 0.35s ease;
  z-index: 2;
}

.timeline-item.top-side .timeline-img-box {
  top: 24px;
}

.timeline-item.bottom-side .timeline-img-box {
  top: 302px;
}

.timeline-item.active .timeline-img-box {
  opacity: 1;
  visibility: visible;
}

.timeline-item.top-side.active .timeline-img-box {
  width: 590px;
  height: 350px !important;
}

.timeline-item.bottom-side.active .timeline-img-box {
  width: 590px;
  height: 350px;
  top: 308px;
}

.timeline-img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.38); */
  z-index: 1;
}

.timeline-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.timeline-item.top-side .timeline-img-box::after {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.92) 13.87%,
    rgba(0, 0, 0, 0) 100%
  );
}

.timeline-item.bottom-side .timeline-img-box::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92) 13.87%,
    rgba(0, 0, 0, 0) 100%
  );
}

.timeline-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.74;
}

.timeline-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 272px;
  text-align: center;
  z-index: 3;
  transition: all 0.35s ease;
}

.timeline-item.top-side .timeline-text {
  top: 42px;
}

.timeline-item.bottom-side .timeline-text {
  top: 380px;
}

.timeline-text h2 {
  margin: 0 0 8px;
  color: rgba(136, 139, 141, 0.8);
  font-family: Montserrat;
  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: 66px;
  letter-spacing: -2.16px;
}

.timeline-text p {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.5px;
}

.timeline-item.active .timeline-text {
  width: 360px;
}

.timeline-item.active .timeline-text h2 {
  color: #d90f31;
}

.timeline-item.top-side.active .timeline-text {
  top: 86px;
}

.timeline-item.bottom-side.active .timeline-text {
  top: 374px;
}

.timeline-item.active .timeline-text p {
  max-width: 316px;
  margin: 0 auto;
}

.timeline-nav-group {
  display: none;
}

.timeline-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s ease;
}

.timeline-nav:hover {
  background: #c8102e;
  border-color: #c8102e;
}

.timeline-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 1199px) {
  .timeline-wrapper {
    --line-top: 250px;
    gap: 28px;
    min-height: 598px;
  }

  .timeline-item {
    flex-basis: 218px;
    min-height: 598px;
  }

  .timeline-img-box {
    width: 360px;
    height: 210px;
  }

  .timeline-item.top-side .timeline-img-box {
    top: 22px;
  }

  .timeline-item.bottom-side .timeline-img-box {
    top: 276px;
  }

  .timeline-item.top-side.active .timeline-img-box {
    width: 400px;
    height: 350px;
  }

  .timeline-item.bottom-side.active .timeline-img-box {
    width: 470px;
    height: 288px;
    top: 282px;
  }

  .timeline-item.bottom-side .timeline-text {
    top: 344px;
  }

  .timeline-item.bottom-side.active .timeline-text {
    top: 344px;
  }

  .timeline-text h2 {
    font-size: 60px;
    line-height: 56px;
  }

  .timeline-item.active .timeline-text {
    width: 320px;
  }
}

@media (max-width: 991px) {
  .timeline-section {
    padding: 22px 0 24px;
  }

  .timeline-wrapper {
    --side-space: 16px;
    --line-top: 78px;
    gap: 16px;
    min-height: 365px;
    padding: 0 var(--side-space);
    scroll-snap-type: x mandatory;
  }

  .timeline-line {
    left: var(--side-space);
    right: var(--side-space);
  }

  .timeline-item {
    flex: 0 0 calc(100vw - 32px);
    min-height: 365px;
    scroll-snap-align: center;
  }

  .timeline-item .dot {
    top: calc(var(--line-top) - 4px);
  }

  .timeline-item.active .dot {
    top: calc(var(--line-top) - 7px);
  }

  .timeline-img-box {
    width: 100%;
    height: 220px;
    top: 110px !important;
  }

  .timeline-text,
  .timeline-item.top-side .timeline-text,
  .timeline-item.bottom-side .timeline-text {
    top: 112px;
    width: 82%;
  }

  .timeline-item.active .timeline-text,
  .timeline-item.top-side.active .timeline-text,
  .timeline-item.bottom-side.active .timeline-text {
    top: 145px;
    width: 78%;
  }

  .timeline-text h2 {
    font-size: 44px;
  }

  .timeline-text p {
    font-size: 14px;
  }

  .timeline-nav-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }
}

@media (max-width: 575px) {
  .timeline-wrapper {
    --side-space: 14px;
    --line-top: 72px;
    min-height: 335px;
  }

  .timeline-item {
    flex-basis: calc(100vw - 28px);
    min-height: 335px;
  }

  .timeline-img-box {
    height: 200px;
    top: 98px !important;
  }

  .timeline-item.active .timeline-text,
  .timeline-item.top-side.active .timeline-text,
  .timeline-item.bottom-side.active .timeline-text {
    top: 128px;
    width: 80%;
  }

  .timeline-text h2 {
    font-size: 38px;
  }

  .timeline-text p {
    font-size: 13px;
  }
}
/* timelinear */

.teams-member-ship {
  padding-top: 60px;
}

.teams-member-profile .swiper-slide {
  transform: scale(0.75);
  transition: all 0.4s ease;
  /* opacity: 0.6; */
}

/* .teams-member-profile .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
} */

.team-card {
  position: relative;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 549px;
  text-align: center;
  object-fit: cover;
}

.team-card.big-member img {
  width: 100%;
  height: 673px;
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 78.37%);
  text-align: center;
}

.team-info h4 {
  margin-bottom: 4px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -1px;
}

.team-info p {
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
}

.news-card.active h4 {
  width: 98%;
}

.composite-up {
  padding-top: 5%;
}

.news-insight-head h3 {
  text-transform: capitalize !important;
}

.news-details-banner-view {
  position: relative;
}

.news-details-banner-view::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0) 81.58%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 57.08%, #000 101.8%);
  z-index: 2;
  pointer-events: none;
}

.teams-member-ship {
  display: flex;
  gap: 20px;
  align-items: flex-start !important; /* important */
}

.teams-member-profile {
  flex: 1;
  min-width: 0;
}

.sub-text.home-tab {
  margin-bottom: 40px;
}

p.location.phonelive {
  font-family: Montserrat;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 24px !important;
  letter-spacing: -0.5px !important;
}

.compromise-photo.lsat-phone-comprise {
  margin-bottom: 0px;
}

.last-end-compromise {
  margin-bottom: 0px !important;
}

.compromise-content ul li:last-child {
  margin-bottom: 0;
}

ul {
  margin-bottom: 0px;
}

.miscr {
  /* margin-right: 15px; */
}

.form-indoor {
  margin-top: 30px;
}
a.mobile-menu-entry.mobile-menu-entry-subitem.mobile-entry-sub-view {
  width: 100% !important;
}

.cms-front-page .cms-detail-title {
  font-size: 60px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 60px !important;
  letter-spacing: -1.8px !important;
  max-width: 100% !important;
}
.solutions-mega-tab,
.solutions-mega-link,
.mobile-menu .mobile-menu-entry,
.mobile-menu-current-link,
.mobile-menu-heading,
.mobile-menu-heading-action {
  min-width: 0;
}

.solutions-mega-tab {
  flex-wrap: wrap;
  text-align: center;
}

.solutions-mega-tab > span:first-child,
.solutions-mega-link > span:first-child,
.mobile-menu .mobile-menu-entry > span:first-child,
.mobile-menu-current-link > span:first-child,
.mobile-menu-heading > span:first-child,
.mobile-menu-heading-action > span:first-child {
  overflow-wrap: anywhere;
  word-break: break-word;
  text-wrap: balance;
}

.solutions-mega-link,
.mobile-menu-current-link {
  align-items: flex-start;
}

.solutions-mega-link .solutions-mega-arrow,
.mobile-menu-entry-arrow {
  margin-top: 0.2em;
}

.mobile-menu-split-link,
.mobile-menu-heading,
.mobile-menu-heading-action {
  align-items: flex-start;
}

.cms-front-page .cms-detail-hero {
  padding-top: 140px;
}

.cms-front-page .cms-detail-copy {
  max-width: 980px;
}

.cms-front-page .cms-detail-title {
  margin-bottom: 18px;
  max-width: 12ch;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.cms-front-page .cms-detail-subtitle {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.cms-front-page .cms-detail-media .shoot-wrapper {
  overflow: hidden;
  border-radius: 30px 0 30px 0;
}

.cms-front-page .cms-detail-media img {
  width: 100%;
  aspect-ratio: 16 / 8;
  max-height: 560px;
  object-fit: cover;
}

.cms-front-page .cms-detail-background-video {
  width: 100%;
  aspect-ratio: 16 / 8;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.cms-front-page .cms-detail-overview {
  padding-top: 84px;
  padding-bottom: 100px;
}

.cms-front-page .cms-detail-heading {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.cms-front-page .cms-detail-content {
  margin-left: 0;
}

.cms-front-page .cms-detail-body {
  max-width: 100%;
  /* padding-left: clamp(0px, 2vw, 24px); */
}

.cms-front-page .cms-detail-body p {
  max-width: 64ch;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.8;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.cms-front-page .cms-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.setting-box.cms-detail-content.aos-init.aos-animate {
  flex-direction: column !important;
  align-items: start !important;
}

.solutions-mega-link.solutions-mega-sublink {
  width: 100%;
}

.tags.tactical-tage-bottom {
  margin-bottom: 36px;
}

.airbone-contet-view {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -1px;
  margin-top: 24px;
  margin-bottom: 0;
  width: 80%;
}

.airbone-head-shpw h4 {
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px; /* 114.286% */
  letter-spacing: -2px;
}

.coming-soon-page {
  background: #000;
}

.coming-soon-outer {
  padding: 0;
}

.coming-soon-shell {
  background: #000;
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.coming-soon-shell .site-header .row {
  align-items: center;
}

.coming-soon-main {
  position: relative;
  overflow: hidden;
}

.coming-soon-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 202px 24px 20px;
  text-align: center;
}

.coming-soon-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin-top: -18px;
}

.coming-soon-copy h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -1.8px;
}

.coming-soon-subtitle {
  margin: 0 auto;
  max-width: 680px;
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -1px;
  margin-bottom: 80px;
}

.coming-soon-notify {
  display: inline-flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 58px;
}

.coming-soon-notify input {
  width: 292px;
  min-width: 292px;
  height: 32px;
  padding: 0 14px;
  border: 1px solid #888b8d;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.44px;
  text-align: center;
  outline: none;
  border-radius: 0;
}

.coming-soon-notify input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.coming-soon-notify button {
  min-width: 101px;
  height: 32px;
  padding: 0 18px;
  border: 0;
  background: #c8102e;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.44px;
  border-radius: 0;
}

.train-force-forece {
  width: 47%;
}

.airbone-content.-shpw p {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 0px;
}

.airbone-divider {
  width: 100%;
  background: #505051;
  height: 1px;
  margin: 40px 0px;
}

.force-gallery-section .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 24px;
  height: auto;
  padding-top: 76px;
}

.force-gallery-section .gallery-item,
.force-gallery-section .mobile-first-gallery {
  grid-column: auto;
  grid-row: auto;
  height: auto;
  border-radius: 0px;
}

.force-gallery-section .gallery-item img {
  display: block;
}

@media (max-width: 991.98px) {
  .force-gallery-section .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 0;
  }

  .force-gallery-section .gallery-item,
  .force-gallery-section .mobile-first-gallery {
    height: 280px;
  }
}

.each-eagle-strike {
  color: #fff;
}

.strike-eagle-includes-head {
  max-width: 540px;
  margin-bottom: 36px;
}

.strike-eagle-includes-head h2 {
  margin: 0 0 18px;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
}

.strike-eagle-includes-head p {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  color: #888b8d;
}

.strike-eagle-card {
  height: 100%;
  padding-right: 70px;
}

.strike-eagle-count {
  margin: 0 0 30px;
  font-size: 90px;
  font-style: normal;
  font-weight: 500;
  line-height: 90px; /* 100% */
  letter-spacing: -2.7px;
  color: #888b8d;
}

.strike-eagle-card-line {
  width: 100%;
  height: 1px;
  margin-bottom: 40px;
  background: #d6d6d6;
}

.strike-eagle-card h3 {
  margin: 0;
  max-width: 320px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 116.667% */
  letter-spacing: -1px;
}

@media (max-width: 991.98px) {
  .strike-eagle-includes-head h2 {
    font-size: 38px;
  }

  .strike-eagle-card {
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  .strike-eagle-includes-head {
    margin-bottom: 28px;
  }

  .strike-eagle-includes-head h2 {
    font-size: 31px;
  }

  .strike-eagle-includes-head p {
    font-size: 15px;
    line-height: 1.5;
  }

  .strike-eagle-divider {
    height: 24px;
    margin-bottom: 32px;
  }

  .strike-eagle-badge {
    min-width: 40px;
    height: 32px;
    font-size: 16px;
  }

  .strike-eagle-count {
    margin-bottom: 18px;
    font-size: 64px;
  }

  .strike-eagle-card-line {
    margin-bottom: 22px;
  }

  .strike-eagle-card h3 {
    max-width: none;
    font-size: 20px;
  }
}

.strike-eagle-card.last-child {
  padding-right: 0px !important;
  padding-left: 70px;
}

.project-info.project-box.indoor-shoot-ranging h3 a {
  display: flex;
  align-items: center;
}

.rope-view {
  width: 100% !important;
}

.composite-up.rope-view.light-rope {
  font-weight: 300;
}

.desgned-phone.rope-view.bold-rope {
  font-weight: 600;
}

.main-title.verstail-phone.smart-rope {
  padding: 0px 1px;
}

.flag-ship-icon-arrow-home img {
  position: absolute;
  top: 18px;
  right: -31%;
  width: 12px;
  height: 12px !important;
}

.project-live {
  margin: 0px 20px 0px 55px;
}

.thumb-live-project {
  margin-top: 36px;
}

.thubs-img {
  height: 131px;
  object-fit: cover;
  width: 100%;
}

.live-projrect-view {
  width: 100%;
  height: 680px !important;
}

.phone-news-details {
  font-size: 36px;
  font-weight: 500;
  line-height: 38px;
}

.details-news-inner img {
  width: 100%;
}

.live-news-swtails {
  align-items: start !important;
  justify-content: flex-start;
}

.address p {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  margin-top: 54px;
  border-right: 1px solid #888b8d;
}

.info-communtion a {
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
}

.socials {
  margin-bottom: 30px;
}

.want-spce-live {
  padding-top: 94px;
}

.tags.project-live-label span {
  text-transform: capitalize !important;
}

.live-btn-checkout {
  position: relative;
}

.checkout-more.live-check-out {
  position: absolute;
  top: -110px;
}

.gallery-popup > .swiper-button-next,
.swiper-button-prev,
.swiper-button-next {
  color: var(--text-color) !important;
}

.cricle-icon-live {
  font-size: 36px !important;
  font-weight: 600 !important;
  top: -34px !important;
}
