body {
  overflow-x: hidden !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}
/* color scheme */
/* DARK Blue #363AFF */
/* Light White #FFFFFF */
@font-face {
  font-family: 'ClashDisplay';
  src: url('../includes/fonts/ClashDisplay-Extralight.woff2') format('woff2');
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../includes/fonts/ClashDisplay-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../includes/fonts/ClashDisplay-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../includes/fonts/ClashDisplay-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../includes/fonts/ClashDisplay-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../includes/fonts/ClashDisplay-Semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('../includes/fonts/ClashDisplay-Variable.woff2') format('woff2');
}

/* header starts */
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 183px;
  height: 55px;
  border: 1px solid #363aff;
  background-color: transparent;
  color: #ffffff;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Arrow */
.button-arrow {
  display: flex;
  align-items: center;
  color: #363aff;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.button-outline:hover {
  background-color: #363aff;
  color: #ffffff;
}

.button-outline:hover .button-arrow {
  transform: translate(4px, -4px);
}
/* NAV LINKS */
.navbar-nav {
  align-items: center;
  gap: 30px;
}

header .navbar {
  padding: 28px 0;
}

.navbar-brand img {
  max-width: 200px;
  height: auto;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1) grayscale(1);
}

.nav-link {
  border-bottom: 1px solid transparent;
  color: #ffffff;
  padding-bottom: 6px;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #363aff;
}
/* Advance Toggler Bootstrap */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 10px;
}

.custom-toggler:focus {
  box-shadow: none;
}

.custom-toggler .line {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #fff;
  margin: 10px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Bootstrap adding automatically */
.custom-toggler[aria-expanded='true'] .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.custom-toggler[aria-expanded='true'] .line:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Footer */
.ucw-footer {
  background-color: #0e0e15;
}

.ucw-footer p {
  color: #ffffff;
  font-size: 14px;
  margin-top: 20px;
  font-family: 'ClashDisplay', sans-serif;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid #fff;
  opacity: 1;
}

.ucw-footer-pages {
  width: max-content;
  min-width: 150px;
  margin-left: auto;
  font-family: 'ClashDisplay', sans-serif;
}

.ucw-footer-pages-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.ucw-footer-pages hr {
  width: 100%;
  margin: 0 0 18px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.ucw-footer-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: flex-start;
}

.ucw-footer-menu .nav-link {
  display: inline-flex;
  padding: 0;
  color: #ffffff;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
}

.ucw-footer-menu .nav-link:hover {
  color: #363aff;
}
/* Outline BTN */
.btn-outline-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 183px;
  height: 55px;
  border: 1px solid #363aff;
  background-color: transparent;
  color: #ffffff;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Arrow */
.btn-outline-footer-arrow {
  display: flex;
  align-items: center;
  color: #363aff;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.btn-outline-footer:hover {
  background-color: #363aff;
  color: #ffff;
  border: 1px solid #363aff;
}

.btn-outline-footer:hover .button-arrow {
  transform: translate(4px, -4px);
}
/* Footer END */

/* MOBILE FIX */
@media (max-width: 1199px) {
  .navbar-nav {
    gap: 18px;
  }

  .navbar-brand img {
    max-width: 165px;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 16px;
    padding: 22px 18px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(14, 14, 24, 0.96);
    text-align: center;
    gap: 20px;
  }

  .navbar-nav {
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0 0 20px;
  }

  .navbar-nav .menu-item,
  .navbar-nav li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.2;
  }

  .button-outline {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .hero-button {
    margin-top: 8px;
  }

  /* footer */
  .ucw-footer .row {
    row-gap: 30px;
  }

  .ucw-footer .navbar-brand img {
    max-width: 165px;
  }

  .ucw-footer-pages {
    width: 100%;
    max-width: 280px;
    margin-top: 32px;
    margin-left: 0;
  }

  .ucw-footer .section-six-action {
    justify-content: flex-start;
  }

  .btn-outline-footer {
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 576px) {
  header .navbar {
    padding: 14px 0;
  }

  .navbar-brand img {
    max-width: 145px;
  }

  .navbar-collapse {
    padding: 18px 16px 20px;
  }

  .ucw-footer {
    text-align: center;
  }

  .ucw-footer p {
    font-size: 13px;
    line-height: 1.55;
  }

  .ucw-footer-pages {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .ucw-footer-menu {
    align-items: center;
  }

  .ucw-footer .section-six-action {
    justify-content: center;
  }

  .footer-bottom p {
    text-align: center !important;
  }
}
