.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Your existing loader styles */

.wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  box-shadow: inset -10px -10px 15px rgba(255, 255, 255, 1),
    inset 10px 10px 10px rgba(0, 0, 0, 0.1);
}
.wrapper::before {
  content: "";
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  box-shadow: -10px -10px 15px rgba(255, 255, 255, 1),
    10px 10px 10px rgba(0, 0, 0, 0.1);
}

.loader-image {
  position: absolute;
  height: 150px; /* Adjust height as needed */
  width: 150px;  /* Adjust width as needed */
  border-radius: 50%;
  object-fit: cover;
}


.loader-span {
  height: 186px;
  width: 220px;
  position: absolute;
  animation: rotate 5s linear infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.loader-span::before {
  content: "";
  position: absolute;
  height: 30px;
  border-radius: 50%;
  width: 30px;
  background: linear-gradient(45deg, #002823, #00CFB5);
  box-shadow: 0 5px 10px rgb(0 0 0 / 30%);
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;


}
html {
  scroll-behavior: smooth;
  background-color: black;
  color: white;
}

h1, p, a, h2, li, button, div,a{ 
  font-family: "Montserrat", sans-serif;
  
  overflow: hidden;
}
.clip-cut{
  clip-path: polygon(5% 0, 95% 0, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0 95%, 0 5%);
}
.arrow-cut{
  clip-path: polygon(0 38%, 0 0, 100% 0, 100% 32%, 93% 36%, 100% 43%, 100% 100%, 0 100%, 0 48%, 7% 43%);
}

.text-gradient {
  background: linear-gradient(90deg, #2ea85b 38.5%, #1a0299 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* @font-face {
  font-family: "SF UI Display";
  src: url("fonts/sf-ui-display-cufonfonts.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
} */




body {
  font-family: "Montserratsans-serif";
  line-height: auto;
  cursor: url("./image/ProfitSpaceX.png"), auto;
}


/* popup css start */

/* General Styles */

/* Popup Styles */
/* Popup Styling */
/* Popup Styling */
/* General Styles */
.active{
  background-color: red !important;
}

/* 
.hover-transform:hover{
      transform: translate(-2rem, -2rem) rotate(-20deg);
      transition: transform 500ms ease-in-out;
    } */


    /* Custom animations */
      @keyframes animate1 {
        0% {
          transform: translateX(-100%);
        }
        100% {
          transform: translateX(100%);
        }
      }

      @keyframes animate2 {
        0% {
          transform: translateY(-100%);
        }
        100% {
          transform: translateY(100%);
        }
      }

      @keyframes animate3 {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }

      @keyframes animate4 {
        0% {
          transform: translateY(100%);
        }
        100% {
          transform: translateY(-100%);
        }
      }

      .animate1 {
        animation: animate1 2s linear infinite;
      }

      .animate2 {
        animation: animate2 2s linear infinite;
        animation-delay: 1s;
      }

      .animate3 {
        animation: animate3 2s linear infinite;
      }

      .animate4 {
        animation: animate4 2s linear infinite;
        animation-delay: 1s;
      }




/* new cards cs */
@import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css');


/* *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box } */
/* body { min-height: 100vh; padding: 2rem; background-color: #E5E6EB; display: grid; place-items: center; background-image: radial-gradient(circle at top left, transparent 25%, rgb(0 0 0 / .25)) } */
/* img { max-width: 100%} */

.new-cards-ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 2rem;
  list-style: none;
}
.card {
  /* border: 1px solid white; */
  display: flex;
  flex-direction: column;
  max-width: 18rem;
  --iconS: 6rem;
  --iconOffsetX: calc(var(--iconS) / 4);
  --iconOffsetY: calc(var(--iconS) / 2.5);
  margin-top: var(--iconOffsetY);
  margin-inline: var(--iconOffsetX);
  border-radius: 1rem;
  /* font-family: 'Roboto', sans-serif; */
  /* color: #333; */
  /* background-color: #fff; */
  --shadowSurface: 0.5rem 0.5rem 0.5rem rgb(0 0 0 / .25);
  --bgGradient: radial-gradient(circle at bottom right, transparent, rgb(0 0 0 / .1));
  background-image:
    radial-gradient( circle at 
        calc(var(--iconOffsetX) * -1 + var(--iconS) / 2) 
        calc(var(--iconOffsetY) * -1 + var(--iconS) / 2), 
      rgb(0 0 0 / .4) calc(var(--iconS) / 2), 
      transparent calc(var(--iconS) / 1.6)
    ),
    radial-gradient( circle at 
        calc(var(--iconOffsetX) * -1 + var(--iconS) / 2)
        calc(var(--iconOffsetY) * -1 + var(--iconS) / 2),
      var(--accent-color) calc(var(--iconS) / 1.4),
      transparent calc(var(--iconS) / 1.4 + 1px)
    ),
    var(--bgGradient);
  --shadowInsetLight: inset 0.125rem 0.125rem 0.125rem #259876;
  --shadowInsetDark: inset -0.067rem -0.067rem 0.067rem rgb(0 0 0 / .5);
  box-shadow: 
    var(--shadowInsetLight),
    var(--shadowInsetDark),
    var(--shadowSurface)   
}
.card .icon {
  width: var(--iconS);
  aspect-ratio: 1;
  margin-top: calc(var(--iconOffsetY) * -1);
  margin-left: calc(var(--iconOffsetX) * -1);
  margin-bottom: calc(var(--iconS) / 4);
  display: grid;
  place-items: center;
  color: var(--accent-color);
  font-size: calc(var(--iconS) / 3);
  background-color: inherit;
  border-radius: 50%;
  box-shadow:
    var(--shadowInsetLight),
    var(--shadowInsetDark);
  background-image: var(--bgGradient);
}
.icon img{
  padding: 14px 26px 5px 20px;
  margin: 20px 15px -4px 37px;
}
.card .title{
  /* font-size: 1.2rem; */
  font-weight: 600;
  /* color: var(--accent-color); */
  text-align: center;
  text-transform: uppercase
}
.card .content{
  padding: 1rem;
  padding-bottom: 2rem;
  font-size: 0.9em
}