/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
:after,
:before {
  box-sizing: border-box;
}
:root {
  --wac-body-font-family: "Inter", sans-serif;
  --wac-body-font-family-secondary: "Inter", sans-serif;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}
figure {
  position: relative;
  overflow: hidden;
  width: 100%;
}
figure > img,
figure > a > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
}
/* :root {
    --container-gutter-x: 1rem;
    --container-gutter-y: 1rem;
  } */

.magenext-container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  /* sm: 540px, */
  /* md: 720px, */
  /* lg: 960px, */
  /* xl: 80%, */
  /* xxl: 1467px */
}

@media (min-width: 576px) {
  .magenext-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .magenext-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .magenext-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .magenext-container {
    max-width: 80%;
  }
}

@media (min-width: 1600px) {
  .magenext-container {
    max-width: 1300px;
  }
}

header .btn-two {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-radius: 50rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
header .btn-two:hover {
  opacity: 0.8;
}
img {
  user-select: none;
  max-width: 100%;
}

.ttl-50 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* @media (min-width: 992px) {
  .ttl-50 {
    margin-bottom: 34px;
  }
} */
@media (min-width: 1200px) {
  .ttl-50 {
    font-size: 46px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1600px) {
  .ttl-50 {
    font-size: 50px;
  }
}

/* Layout Helpers */
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.position-relative {
  position: relative;
}
.z-1 {
  z-index: 1;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.text-lg-start {
  text-align: left;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-4 {
  margin-top: 1rem;
}

/* Header */
.header {
  position: fixed;
  z-index: 1040;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 0 20px;
  background: transparent;
  font-family: var(--wac-body-font-family-secondary);
  font-weight: 500;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.header.active {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  transform: translateY(-5px);
}
.logo {
  aspect-ratio: 196.5 / 22.8;
  width: 169px;
}
@media (min-width: 768px) {
  .logo {
    width: 196px;
  }
  .header {
    padding: 19px 0 10px;
  }
}
.header .nav {
  display: none;
}
@media (min-width: 1200px) {
  .header .nav {
    display: flex;
    gap: 0;
  }
}
.header .nav_link {
  color: #fff;
  background: none;
  border: none;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-family:"Inter", sans-serif ;
}
.header .nav_link:hover,
.header .nav_link.active {
  opacity: 0.7;
}


/* NOT_Found */
.not_found {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height:94vh;

}

.not_found_wrapper ,.content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content_wrapper {
  padding-top: 12px;
  row-gap: 12px;
}
.content_wrapper h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}
.content_wrapper p {
    text-align: center;
    font-size: 16px;
    line-height: 1.31;
}
.not_found_wrapper .btn-two {
    margin-top: 24px;
    padding: 13px 24px 14px;
  background-color: var(--btn-two-background, #013ad6);
  color: var(--btn-two-color, #fff);
  font-size: var(--btn-two-font-size, 14px);
  font-weight: var(--btn-two-font-weight, 500);
  font-family: var(--wac-body-font-family-secondary);
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: var(--btn-two-lh, 1.21);
  border-radius: 50rem;
  -webkit-tap-highlight-color :transparent
}
@media (min-width: 1200px) {
  .btn-two:hover {
    background-color: var(--btn-two-hover-background, #002bb5);
    color: var(--btn-two-hover-color, #fff);
  }
}


/* Footer */
:root {
  --footer-bg: #111111;
  --footer-text: #f5f5f5;
  --footer-muted: #727273;
  --footer-separator: #555555;
}
.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 40px;
}

.footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer_nav {
  display: flex;
  gap: 40px;
  font-size: 14px;
  color: #afafaf;
}
.footer_nav a {
  color: var(--footer-text);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer_nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.footer_nav .anchor_link {
  cursor: pointer;
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--footer-muted);
  margin-top: 24px;
}

.footer_bottom-left {
  display: flex;
  align-items: center;
  column-gap: 40px;
  row-gap: 20px;
  flex-wrap: wrap;
}

.footer_bottom a {
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.Copyright {
  display: none;
}

.footer_bottom a:hover {
  color: var(--footer-text);
}
.Copyright_two {
  display: none;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .footer_bottom-left > *:not(:last-child)::after {
    content: "";
    height: 10px;
    width: 1px;
    background: #727273;
    display: inline-block;
    /* transition: center; */
    transform: translate(-50%, 50%);
    /* top: 50%; */
    position: absolute;
    /* left: 50%; */
    margin-left: 20px;
  }
}

@media (max-width: 767.98px) {
  
  .footer_bottom-left {
    display: none;
  }
  .footer {
    padding: 60px 32px;
  }

  .footer_top {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer_nav {
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
  }

  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .Copyright {
    display: block;
  }
  .Copyright_one {
    display: none;
  }
  .Copyright_two {
    display: block;
    margin-top: 24px;
  }
  .footer_bottom-left {
    flex-direction: column;
    width: 100%;
    row-gap: 16px;
    margin-bottom: 40px;
  }
  .footer_bottom-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    row-gap: 16px;
    border-top: 1px solid #282828;
  }
}
