/* Eric Meyer's Reset v2.0 - https://meyerweb.com/eric/tools/css/reset/ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background-color: #060606;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Locomotive Scroll Specific */
[data-scroll-container] {
  position: relative;
  overflow: hidden; /* Ensure content stays within the viewport */
}

/* Completely hide the scrollbar */
html, body {
  height: 100%; /* Ensure the body takes up the full height */
}

body::-webkit-scrollbar {
  display: none; /* Hide scrollbar for WebKit browsers */
}

body {
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}


.hidden {
  display: none;
}

.dpkCursor {
	height: 50px !important;
	width: 50px !important;
	z-index: 999 !important;
	opacity: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1.1em !important;
}

.dpkCursor.hover-active {
    height: 120px !important;
    width: 120px !important;
    padding: 2em;
    border-radius: 5000px;
      opacity: 1;
        transition: opacity 0.25s ease !important;
        text-align: center;
        background-color: rgb(0 0 0 / 88%) !important;
        backdrop-filter: blur(10px); /* Apply a blur effect */
    -webkit-backdrop-filter: blur(10px);
}



.fade-in {
  opacity: 1 !important;
    transition: 1s opacity ease;
}


.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 9999; /* Ensure it sits above all other content */
  overflow: hidden;
}

/* Left Door */
.loader-left, .loader-right {
  position: relative;
  height: 100%;
  width: 50%;
  background-color: #060606; /* Black doors for a sleek look */
  z-index: 1;
}

/* Left Door */
.loader-left {
  transform: translateX(0); /* Initially covers the left half */
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.25s; /* Add 0.5s delay */
}

/* Right Door */
.loader-right {
  transform: translateX(0); /* Initially covers the right half */
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.25s; /* Add 0.5s delay */
}


/* Hidden State */
.loader.open .loader-left {
  transform: translateX(-100%); /* Slides left out of view */
}

.loader.open .loader-right {
  transform: translateX(100%); /* Slides right out of view */
}




/* General Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0); /* Semi-transparent black */
  z-index: 999; /* Ensure it stays on top */
  padding: 30px 20px;
  box-sizing: border-box;
  transition: all 0.5s ease;
}


/* Adds a black background when scrolled past 100px */
.main-header.header-active {
  background-color: rgba(0, 0, 0, 0.8); /* Black background */
}

/* Moves the header out of view when scrolling down */
.main-header.header-scrolled {
  transform: translateY(-200px); /* Slide 200px up out of view */
}

.main-header.header-mobile-is-open {
  background-color: rgba(0, 0, 0, 0) !important;
}



.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 20px;
  cursor: pointer;
}

/* Hamburger Bars */
.bar {
  height: 2px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Active State */
.hamburger.active .bar1 {
  transform: rotate(45deg) translate(5px, 8px);
}

.hamburger.active .bar2 {
  opacity: 0;
}

.hamburger.active .bar3 {
  transform: rotate(-45deg) translate(5px, -8px);
}





.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-list {
  /* display: flex; */
  display: none;
  align-items: center;
  list-style: none;
  margin: 0px 40px;
  padding: 0;
}

.nav-list li {
  margin: 0 20px; /* Spacing between items */
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1em;

  font-family: "Poppins", sans-serif;
  font-weight: 300;
  position: relative;
}


.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px; /* Position underline at the bottom of the link */
  width: 0; /* Initially hidden */
  height: 1px; /* Thickness of the underline */
  background-color: white; /* Color of the underline */
  transition: width 0.4s ease; /* Smooth animation */
}

.nav-list a:hover::after {
  width: 100%; /* Expand underline fully */
}

.nav-list-active a::after {
  width: 100%; /* Initially hidden */
}




.separator {
  color: white;
  font-size: 0.7em;
}

/* Logo Styles */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s opacity ease;
  cursor: pointer;
}

.logo img {
  max-height: 40px; /* Adjust for your logo's size */
  object-fit: contain;
}

/* Hover Effects */
.nav-list a:hover {
  color: #ddd; /* Slightly lighter text on hover */
}


.no-scroll {
  overflow: hidden !important;
}


.mobile-header {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: transparent;
  z-index: 999;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: column;
  gap: 40px;

  pointer-events: none;

  transition: all 1s ease;
}


.mobile-header-active {
  opacity: 1;
  pointer-events: all;
}


.mobile-header:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #060606;
  width: 100%;
  z-index: -1;
  transition: 1s all ease;
  transform: translate(0px, -100%);
}

.mobile-header-active:after {
  transform: translate(0px, 0px);
}





.mobile-header a {
  opacity: 0;
  transform: translateY(20px); /* Start slightly below */
  transition: opacity 0.5s ease, transform 0.5s ease;
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1em;
}

/* Active state */
.ham-link-showing {
  opacity: 1 !important;
  transform: translateY(0) !important; /* Move to original position */
}



.mobile-link-active-page {
  font-weight: 500 !important;
  position: relative;
}


.mobile-link-active-page::before {
  content: "◆";
  margin-right: 25px; /* Space between the character and the text */
  color: white; /* Color of the symbol */
  font-size: 0.6em;
}

/* Add the "◆" after the link */
.mobile-link-active-page::after {
  content: "◆";
  margin-left: 25px; /* Space between the text and the character */
  color: white; /* Color of the symbol */
  font-size: 0.6em;
}


.mobile-header-socials {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}


.mobile-header-socials img{
  height: 18px;
}




.logo-hidden {
  opacity: 0;
}














.cta-container {
  text-align: center;
  padding: 100px 0px 80px 0px;
  box-sizing: border-box;
}

.cta-text {
  text-decoration: none;
}

.cta-text h2 {
  font-family: "ivypresto-headline", serif;
  font-style: italic;
  font-weight: 500;
  color: white;
  font-size: 3em;
  position: relative;
  display: inline-block;

  opacity: 0;
  transition: 1s opacity ease;
}


.cta-text h2::after {
  content: '';
  position: absolute;
  bottom: -170%; /* Center vertically */
  right: 25%; /* Adjust spacing from the h2 */
  height: auto; /* Set the height */
   width: 60%; /* Let the width adjust automatically */
   aspect-ratio: 1 / 1;
  background-image: url('../e-images/icons/footer-arrow.png'); /* Replace with your image path */
  background-size: contain; /* Ensure the image scales correctly */
  background-repeat: no-repeat;
    z-index: 10;
    transition: transform 0.3s ease;
}


.cta-text h2:hover::after {
   /*transform: translate(20px, -50%); */
  transition: transform 0.3s ease; /* Smooth transition */
}

.cta-text h2 span {
  display: block;
}

.cta-text p {
  font-size: 0.85em;
  margin-top: 80px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: grey;

  opacity: 0;
  transition: 1s opacity ease;
}




/* Footer Section */
.footer {
  padding: 0px 0px 80px 0px;
  text-align: center;
}

.footer-content {
  width: 75%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;

  padding-top: 100px;
  box-sizing: border-box;
  border-top: 1px solid #141414;
}


.footer-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-left {
  flex: 1; /* Prevent stretching */
  display: flex;
  justify-content: center; /* Align content to the left */
  align-items: center; /* Ensure vertical alignment */

}

.footer-logo {
  width: 100%;
}

.footer-logo img {
  max-width: 180px;
  display: block;
  width: 100%;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center; /* Center links */
  list-style: none;
  align-items: center;
  gap: 55px; /* Spacing between links */
  margin: 80px 0px 80px 0px;
  padding: 0;

  flex-direction: column;
}

.footer-links a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: grey;
  font-size: 1.1em;
  position: relative;
  transition: 0.5s all ease;
}

.footer-links a:hover {
  color: white;
}

.footer-social a {
  margin: 0px 20px;
}


.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* Position underline at the bottom of the link */
  width: 0; /* Initially hidden */
  height: 1px; /* Thickness of the underline */
  background-color: white; /* Color of the underline */
  transition: width 0.4s ease; /* Smooth animation */
}

.footer-links a:hover::after {
  width: 100%; /* Expand underline fully */
}

.footer-social img {
  height: 20px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-credits {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: grey;
  font-size: 0.7em;

  margin: 80px auto 0px auto;
  line-height: 1.6em;
  width: 75%;
}

.footer-credits a {
  color: #fff;
  position: relative;
  text-decoration: none;
}

.footer-credits a:hover {
  color: #bbb;
}




.footer-credits a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* Position underline at the bottom of the link */
  width: 0; /* Initially hidden */
  height: 1px; /* Thickness of the underline */
  background-color: white; /* Color of the underline */
  transition: width 0.4s ease; /* Smooth animation */
}

.footer-credits a:hover::after {
  width: 100%; /* Expand underline fully */
}


































/* end */
