#hero{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    .role-headings{
        display: flex;
        gap: 10px;
    }

    h1{
      text-align: center;
      margin: auto;
      font-size: clamp(4rem, 10vw, 10rem);
      font-weight: 700;
      line-height: clamp(5.5rem, 11vw, 11rem);
      color: var(--primary-color);
      text-transform: uppercase;
      text-align: center;
    }
 
    h4{
        font-size: clamp(8px, 1.5vw, 1em);
        background-color: white;
        border-radius: 5px;
        padding: 10px 20px;
        margin-bottom: 20px;
        box-shadow: rgb(28, 27, 57) 0px 15px 30px -10px;
        cursor: pointer;
        text-wrap: nowrap;
        text-transform: uppercase;

    }

}

.cta-group{
    display: flex;
    gap: 2vw;
    font-size: 1.2rem;

    a{
        width: 16vw;
        flex-shrink: 0;
        text-wrap: nowrap;
        min-width: fit-content;
        margin-top: 20px;
        text-wrap: nowrap;
        min-width: fit-content;
        color: black;
        text-decoration: none;
        display: inline-block;
        padding: 10px 20px;
        border: 2px solid black;
        border-radius: 5px;
        transition: all 0.3s ease;
        position: relative;

        &:nth-child(2){
          background-color: black;
          color: white;
        }
        &:hover {
          background-color: black;
          color: white;
        }

        & i {
          margin-right: 8px;
          font-weight: lighter;
          
        }
}
}

.loading-wrapper{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 254, 240);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* display: none; */
  }
.loader {
  width: fit-content;
 font-size: clamp(4rem, 10vw, 10rem);
 
  /* font-size: 40px; */
  font-family: hussar, sans-serif;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #0000;
  -webkit-text-stroke: 1px #000;
  --l:#0000 45%,#000 0 55%,#0000 0;
  --g:0/300% 100% no-repeat text;
  background: 
    linear-gradient(-60deg,var(--l)) var(--g),
    linear-gradient( 60deg,var(--l)) var(--g);
  animation: l7 4s linear infinite;
  background-color: rgb(255, 255, 255);

}
.loader:before {
  content: "Loading";
}
@keyframes l7 {
  0%  {background-position: 100%,0   }
  50% {background-position: 0   ,0   }
  to  {background-position: 0   ,100%}
}