@font-face {
    font-family: 'helvetica_now_displaybold';
    src: url('../fonts/helveticanowdisplay-bold-webfont.woff2') format('woff2'),
        url('../fonts/helveticanowdisplay-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2') ,
        url('../fonts/Satoshi-Bold.woff') format('woff'),
        url('../fonts/Satoshi-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
        url('../fonts/Satoshi-Medium.woff') format('woff'),
        url('../fonts/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
        url('../fonts/Satoshi-Regular.woff') format('woff'),
        url('../fonts/Satoshi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Satoshi';
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    line-height: 1.1;
}

.wrapper {
    margin: 0 auto;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.clear {
    clear: both;
    font-size: 0px;
    line-height: 0px;
}

.backbg {
    display: none !important;
}

.backbgbox {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Heading Style */
h1, h2, h3, h4, h5, h6 {}

h1 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 8.5rem;
    line-height: 1.1;
}

h2 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 6.5rem;
    line-height: 1.1;
}

h3 {
    font-size: 55px;
    font-weight: 500;
    line-height: 1.2;
}

h4 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

h5 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
}

h6 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
}

p {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Button css */
a.btn.primary-btn {
    background: #D9D9D9;
    border: 0;
    border-radius: 0;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    transition: all .2s;
}

a.btn.primary-btn:hover {
    opacity: 0.8 !important;
}

/* Helper CSS */
@media (min-width: 992px) {
    .py-lg-8 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
    .pt-lg-8{ 
        padding-top: 6rem !important;
    }
    .pb-lg-8{
        padding-bottom: 6rem !important
    }

    .mb-lg-6 {
        margin-bottom: 4rem !important;
    } 
}

@media (min-width: 767px) {
    .py-md-7 {
         padding-top: 5rem !important;
         padding-bottom: 5rem !important;
    }
    .pt-md-7 {
         padding-top: 5rem !important;
    }
    .pb-md-7 {
         padding-bottom: 5rem !important;
    }
}
/* Cursor CSS */
body, a {
  cursor: none !important;
}      
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;   
  height: 10px;  
  background: #fff;
  border-radius: 50%;
  pointer-events: none; 
  transform: translate(-50%, -50%);  
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  z-index: 9999;
} 
/* Hover effect on anchor */
.cursor.active {  
  width: 50px; 
  height: 50px; 
  background: rgba(255,255,255,0.2);
}
/* Header CSS */   
header.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    padding: 20px 0;
}
 /* Menu overlay style */
.popup-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh; 
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .4s ease, visibility .4s ease;
    z-index: 9999;
}
.popup-menu ul {
    text-align: center;
    display:flex;
    flex-direction:column;
}
.popup-menu ul li {
    margin: 20px 0;
}
.popup-menu ul li a:link, .popup-menu ul li a:visited {
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    transition: .3s;
    text-transform: uppercase;
    font-weight: bold;  
}
.popup-menu ul li a:hover {
    opacity: .8;
}
 
.close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 200;
}

/* Active State */
.popup-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
a.web-logo img { 
    height: 80px;
    width: auto;
    display: block;
    margin: 0;
}  
nav.main-menu ul {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
nav.main-menu ul li a:link, nav.main-menu ul li a:visited {
    text-decoration: none; 
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 15px;
    transition: all .2s;
    outline:none;
}
.popup-menu ul li:first-child {
    margin-top: 0; 
}
.popup-menu ul li:last-child {
    margin-bottom: 0;
}
nav.main-menu ul li a:active, nav.main-menu ul li a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

nav.main-menu ul li.highlight-menu a {
    background: rgb(255 255 255 / 20%);
}


section.brand-logo-slider-section {
    background: #000;
}
section.about-brand-axiom-section {
    background: #000;
}
section.brand-events-section {
    background: #000;
}
footer.footer {
    background: #000;
}

section.hero-banner-video-section.background-video {
    position: relative;
    height: 100vh;
}
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.hero-block-content {
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
}

video.hero__video {
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero__overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #000000db, #00000000);
}
.animated-heading span.word {
    opacity: 0;
    display: inline-block;
    transform: translateY(100px);
    animation: fadeUpSmooth 1s forwards;
}
 
@keyframes fadeUpSmooth {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    40% {
        opacity: 0.3;
    }
 
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

section.hero-banner-video-section .container {
    height: 100%;
}

.about-brand-details-block {
    position: absolute;
    right: 0;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-block-content h1 {
    margin: 0;
    width: 100%;
}

.brand-logo-details {
    position: relative;
    width: 120px;
}

.brand-logo-outer-text {
    width: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.brand-logo-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.brand-logo-box img {
    height: 80px;
    width: auto;
}

.brand-logo-outer-text img {
    height: 120px;
    width: auto;
}

.brand-logo img {
    height: 6rem;
}


.brand-logo-outer-text img {
    display: block;
    animation: rotateText 12s linear infinite;
    transform-origin: center center;
}

@keyframes rotateText {
    from { 
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
 
.event-image-inner-block img {
    border-radius:10px;
} 
.event-image{ 
     transform: skew(0deg); 
     padding: 0 15px; 
     transition: transform 0.3s;
     transition: all ease 0.5s;
}
.event-image:hover{
     transform: skew(0deg) scale(1.04);
     transition: all ease 0.5s;
     padding: 0 10px;
}
.event-image img{
    transform: skew(-3deg);
}
.event-image:hover img{
    box-shadow: 0 4px 80px 0 #3684DC;
} 
.about-brand-desc-text p {
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
    font-size: 20px;
}

/* Brand Slider Section */
.brand-slider .item img {
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.brand-slider .item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 3rem;
}

section.brand-logo-slider-section {
    position: relative;
    z-index: 9;
}

section.brand-logo-slider-section::before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 9;
    top: 0;
    height: 100%;
    width: 200px;
    background-image: linear-gradient(to right, black, transparent);
}

section.brand-logo-slider-section::after {
    content: "";
    position: absolute;
    right: 0;
    z-index: 9;
    top: 0;
    height: 100%;
    width: 200px;
    background-image: linear-gradient(to left, black, transparent);
}
.brand-slider {
    padding: 4rem 0;
} 
.scroll-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 13rem;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px #ffffffde;
    display: inline-block; 
    white-space: nowrap;
    animation: scroll-left 50s linear infinite;
    position: relative;
    margin-top: 1.8rem;
}

.scroll-text::after {
    content: attr(data-text);
    padding-left: 30px;
    -webkit-text-stroke: 2px #ffffffde;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.animated-text-background {
    position: absolute;
    width: 100%;
    white-space: nowrap;
    overflow: visible;
    opacity: 0.1;
    text-align: center;
    top: 50%;
    z-index: 0;
    transform: translateY(-50%);
    margin: 0; 
}

/* Event Slider CSS */
.brand-event-slider {
    transform: rotate(-3deg);
}
.event-image-inner-block {
    height: 450px;
}
.event-image-inner-block img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.event-image h5 {
    color: #fff;
}
.brand-slider {
    position: relative;
}

/* About Axiom CSS */
section.about-brand-axiom-section h6 {
    background: linear-gradient(90deg, #00DD00, #3C7FD6, #7A4EAD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Why Axiom */
.brand-foundation-date {
    border-bottom: 2px solid #000;
}

.why-axiom-block h2 {
    color: #000;
}

.axiom-highlight-text-desc-block>* {
    flex: 1;
}

.brand-foundation-date {
    font-size: 30px;
    font-family: 'helvetica_now_displaybold';
    color: #000;
}

.desc-text-box {
    flex: 0 0 auto;
}

.desc-text-box p {
    font-size: 28px;
    line-height: 1.3;
    color: #000;
} 

/* Banner Caption Block css */
.banner-caption-box {
  position: relative; 
  background: #000; 
  overflow: hidden;
}
.hero-slider { 
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
} 

.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease, transform 8s linear;
  transform: scale(1);
}
.banner-slide.zooming {
  transform: scale(1.05);
}
.banner-slide.active {
  opacity: 1;
}

.banner-caption {
  left: 0;
  opacity: 0;
  transform: translateY(25px);
  transition: all .9s ease;
}
.banner-slide.active .banner-caption {
  opacity: 1;
  transform: translateY(0);
}
.banner-slide .container { 
    height: 100%;
}
.banner-slide::before {
    position: absolute;
    top: 0;
    content: "";
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #000000b8, transparent);
}
.banner-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    bottom: 5rem;
    position: relative;
}
/* Progress Bar */
.progress-bar {
    bottom: 5rem;
    border: 2px solid #000;
    background: none;
    overflow: hidden;
    height: 40px;
    position: absolute;
    left: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%; 
    max-width: 1360px;
    margin: 0 auto; 
    padding:0;
    transform: translateX(-50%);
}

.progress-bar span {
    display: block;
    width: 0%;
    transition: width 8s linear;
    height: 100%;
    background: #75D860;
    transform: skewX(-20deg);
    transform-origin: right; 
    display: block;
    margin-left: -10px;
}

/* Footer CSS */
.brand-info-details {
    border-top: 2px solid #D9D9D9;
}

.info-block a {
    color: #fff;
    text-decoration: none;
    align-items: center;
    text-transform: uppercase;
    font-family: 'helvetica_now_displaybold';
    font-size: 22px;
    transition: all .2s;
}

.info-block img {
    height: 30px;  
    width: auto;
    display: block;
}
.info-block a:hover {
    opacity: 0.8;
}
.brand-axiom-logo-copyright a {
    display: block;
}
.brand-axiom-logo-copyright p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}
/* PRELOADER FULLSCREEN */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity .8s ease;
}

/* CENTERED WRAPPER SAME SIZE AS LOGO */
.preloader-content {
  position: relative;
  width: 240px;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:-40px;
}

/* GREY BASE LOGO */
.logo-base img {
  width: 240px;
  opacity: 0.25;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* WHITE WAVE LOGO CLIPPED */
.logo-wave {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(100% 0 0 0); /* fully hidden bottom */
  transition: clip-path .4s linear;
}

/* WHITE LOGO */
.logo-wave img {
  width: 240px;
  filter: brightness(1000%) contrast(1000%);
  position: absolute;
  top: 50%;  
  left: 50%;
  transform: translate(-50%, -50%);
}   
      
/* FULL REVEAL STATE */
.logo-wave-full { 
  clip-path: inset(0 0 0 0) !important;
} 

/* PERCENTAGE TEXT */
#preloader-percent { 
    font-size: 24px;
    color: #ddd;
    text-align: center;
    transition: opacity .3s ease;
    position: absolute; 
    bottom: -40px;
}
  
/* EXIT ANIMATIONS */
.preloader-blast {
  transform: scale(3.5);
  opacity: 0;
  transition: .8s ease;
}   

.preloader-hide {
  opacity: 0;
  pointer-events: none;
}


.reveal-line { 
  opacity: 0.4;
}  
.reveal-char {
  opacity: 0;
  display: inline-block;
  transform: translateY(8px);
} 
.highlight-text h4 {
    color:#000;
}
.hero-banner-video-section h1 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 8.75rem;
  line-height: 1;
  letter-spacing: -.1rem;
}
.hero-banner-video-section h1 span#opaqueText {
    opacity:.6;
}
.popup-menu.active .menu-item-20 {
  display: none;
}
#titleText span:nth-child(2), #titleText span:nth-child(3), #titleText span:nth-child(4), #titleText span:nth-child(5) {
  opacity: .6 !important;
}