@font-face {
  font-family: 'Oswald-SemiBold';
  src: url('../fonts/Oswald-SemiBold.eot');
  src: url('../fonts/Oswald-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Oswald-SemiBold.woff2') format('woff2'),
    url('../fonts/Oswald-SemiBold.woff') format('woff'),
    url('../fonts/Oswald-SemiBold.ttf') format('truetype'),
    url('../fonts/Oswald-SemiBold.svg#Oswald-SemiBold') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OpenSans-Medium';
  src: url('../fonts/OpenSans-Medium.eot');
  src: url('../fonts/OpenSans-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/OpenSans-Medium.woff2') format('woff2'),
    url('../fonts/OpenSans-Medium.woff') format('woff'),
    url('../fonts/OpenSans-Medium.ttf') format('truetype'),
    url('../fonts/OpenSans-Medium.svg#OpenSans-Medium') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AvenirArabic-Heavy';
  src: url('../fonts/AvenirArabic-Heavy.eot');
  src: url('../fonts/AvenirArabic-Heavy.eot?#iefix') format('embedded-opentype'),
    url('../fonts/AvenirArabic-Heavy.woff2') format('woff2'),
    url('../fonts/AvenirArabic-Heavy.woff') format('woff'),
    url('../fonts/AvenirArabic-Heavy.ttf') format('truetype'),
    url('../fonts/AvenirArabic-Heavy.svg#AvenirArabic-Heavy') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --mak-primary: #fed001;
  --mak-bg-dark: #050302;
  --mak-text-light: #ffffff;
  --mak-nav-height: 120px;
}
* {
  box-sizing: border-box;
}
html {
  max-width: 2300px;
  margin: 0 auto;
}
body {
  margin: 0;
  font-family: 'OpenSans-Medium' system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  background-color: var(--mak-bg-dark);
  color: var(--mak-text-light);
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.mak-navbar {
  height: var(--mak-nav-height);
  background-color: #050302;
  border-bottom: 1px solid #050302;
  z-index: 1000;
  max-width: 2600px;
  margin: 0 auto;
}
.mak-navbar .navbar-brand img {
  max-height: 70px;
  width: 170px;
}
.mak-navbar .nav-link {
  font-family: 'OpenSans-Medium', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #e0e0e0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
.mak-navbar .nav-link:hover,
.mak-navbar .nav-link:focus,
.mak-navbar .nav-link.active {
  color: #ffffff;
}
.mak-navbar ul .nav-link {
  position: relative;
}
.mak-navbar ul .nav-link::before {
  content: '';
  position: absolute;
  height: 1px;
  background-color: var(--mak-primary);
  width: 10%;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  transition: 0.3s all linear;
}
.mak-navbar ul .nav-link:hover::before {
  bottom: 0;
  opacity: 1;
  width: 80%;
}
.mak-btn-outline,
.mak-btn-filled {
  font-family: 'AvenirArabic-Heavy', system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.6rem 1.8rem;
  border-radius: 0;
  border-width: 1px;
  transition: 0.3s all linear;
}
.mak-btn-outline {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.mak-btn-outline:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
}
.mak-btn-filled {
  background-color: #000000;
  color: #ffffff;
  border-color: var(--mak-primary);
}
.mak-btn-filled:hover {
  background-color: var(--mak-primary);
  color: #000000;
}
.hero {
  position: relative;
  min-height: calc(100vh - var(--mak-nav-height));
  /* background-image: url("../uploads/static-bg.jpg"); */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
  margin-top: var(--mak-nav-height);
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.video-box {
  width: 100%;
  /* height: 700px; */
  min-height: calc(100vh - var(--mak-nav-height));
  max-width: 100%;
}
video#myVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.forces-strip-inner .force-item:first-child > img {
  opacity: 1;
  border-radius: 10px;
  padding: 0.3rem;
  animation: flicker 3s ease-in-out infinite;
}
@keyframes flicker {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }
  25% {
    opacity: 0.9;
    filter: brightness(1.1);
    background: #fff;
  }
  50% {
    opacity: 0.85;
    filter: brightness(0.95);
  }
  75% {
    opacity: 0.95;
    filter: brightness(1.05);
  }
}
.mak7-svgart > svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 40, 0, 0.5));
}
.hero-inner {
  position: absolute;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 2rem 1.25rem;
}
.hero-title {
  font-family: 'Oswald-SemiBold', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
    sans-serif;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
  background: linear-gradient(
    90deg,
    #fed001 0%,
    #ff2700 33%,
    #ffffff 50%,
    #ff2700 66%,
    #fed001 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
.hero-btn-main {
  font-family: 'AvenirArabic-Heavy', system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #000000;
  padding: 0.9rem 2.9rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0px 4px 9px 0px #fed00054;
  border-color: #fff;
  transition: 0.3s all linear;
  border-radius: 0;
  border-width: 1px;
}
.hero-btn-main:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #fff;
  transform: translateY(-3px) !important;
}
.forces-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.6rem;
  padding-inline: 1.75rem;
  z-index: 5;
  width: 100%;
}
.forces-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: nowrap;
}
.force-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.force-item > img {
  width: 130px;
  opacity: 0.25;
  transition: 0.3s all linear;
  cursor: pointer;
  scale: 0.99;
}
.force-item > img:hover {
  opacity: 1;
  scale: 1;
}
.forces-strip-inner .force-item:first-child > img {
  opacity: 1;
}
figure.mak7-svgart {
  z-index: 3;
  height: auto;
  width: 100%;
  max-width: 1200px;
  position: absolute;
  bottom: -15%;
  right: -7.5%;
  opacity: 0.5;
}
/* .title-date {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    letter-spacing: 1px;
    line-height: 2;
}
.title-date h1 {
    background-image: url(../uploads/txtgf.webp);
    background-size: cover;
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    text-transform: uppercase;
    font-family: 'Oswald-SemiBold', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: clamp(2.7rem, 7vw, 6rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-shadow: 0px 0px 4px #ff27004a;
    margin-bottom: 2.5rem;
} */
.cls-1 {
  fill: none;
  stroke: #ff2800;
  stroke-miterlimit: 10;
  stroke-width: 0.75px;
}
.cls-1 {
  fill: none;
  stroke: #ff2800;
  stroke-miterlimit: 10;
  stroke-width: 0.75px;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw 6s ease-in-out infinite;
}
.cls-1:nth-child(1) {
  animation-delay: 0s;
}
.cls-1:nth-child(2) {
  animation-delay: 0.4s;
}
.cls-1:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes draw {
  0%,
  100% {
    stroke-dashoffset: 2000;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
}
@media (max-width: 1400px) {
  figure.mak7-svgart {
    max-width: 1000px;
    bottom: -12%;
    right: -6%;
  }
}
@media (max-width: 1200px) {
  figure.mak7-svgart {
    max-width: 800px;
    bottom: -10%;
    right: -5%;
  }
}
@media (max-width: 1199.98px) {
  .forces-strip-inner {
    gap: 0.9rem;
  }
  .force-item {
    font-size: 0.65rem;
  }
  .force-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}
@media (max-width: 991.98px) {
  .hero {
    background-position: center top;
  }
  .forces-strip {
    bottom: 1.2rem;
    padding-inline: 1.25rem;
  }
  .forces-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .force-item {
    justify-content: center;
  }
  .hero-decor-lines {
    opacity: 0.6;
    width: 70%;
  }
  .forces-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  .force-item:last-child {
    grid-column: 1 / -1;
  }
  .mak-navbar .nav-link {
    padding: 0.4rem 0;
  }
  .mak-navbar .navbar-collapse {
    background-color: #050505;
    padding: 1rem 0.5rem 1rem;
  }
  .mak-nav-actions {
    padding-top: 0.5rem;
    border-top: 1px solid #222;
    margin-top: 0.5rem;
  }
  figure.mak7-svgart {
    max-width: 600px;
    bottom: -8%;
    right: -3%;
  }
}
@media (max-width: 768px) {
  figure.mak7-svgart {
    max-width: 450px;
    bottom: -6%;
    right: 0;
  }
  .force-item > img {
    width: 112px;
    opacity: 0.7;
  }
  .mak-navbar {
    height: 90px;
  }
  .hero {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
  }
  .mak-navbar .navbar-brand img {
    width: 135px;
  }
  .hero-inner {
    margin-bottom: 8rem;
  }
}
@media (max-width: 575.98px) {
  .hero-title {
    letter-spacing: 0.12em;
  }
  .hero-btn-main {
    width: 100%;
    max-width: 260px;
  }
  .forces-strip {
    bottom: 1rem;
  }
  .force-item {
    flex: 0 0 100%;
  }
  .force-icon {
    width: 26px;
    height: 26px;
  }
  figure.mak7-svgart {
    max-width: 95%;
    bottom: 18%;
    right: 3%;
    opacity: 1;
  }
}
