@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital@0;1&family=Yeseva+One&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    line-height: 1.5;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    letter-spacing: 0.02em;
}

h1{
    font-family: "Yeseva One", cursive;
    font-size: 64px;
    font-weight: 100;
    line-height: 1.2;
}






  
.hanken-grotesk-bold {
    font-weight: 700;
}

 
  .titlebar{
    display: flex;
    width: 100%;
    padding: 16px 0px;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: fixed;
    left: 0;
    top: 0;

  }

.nav_container{
    display: flex;
    width: 100%;
    max-width: 1040px;
    padding: 0px 0px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    /*background: rgba(44, 44, 22, 1); */
}

.nav_container .logo{
    display: flex;
    width: 172.44px;
    padding: 8px 8px;
    align-items: center;
    flex-shrink: 0;    
}


nav{
    display: flex;
    padding: 0px 0px;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;    
}

nav a{
    text-decoration: none;
    color: var(--Neutral-White, #FFFFFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 1.25 */
    
    display: flex;
    padding: 6px 12px;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}


header{
    display: flex;
    width: 100%;
    height: 760px;
    padding: 40px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-image: url(images/hero-bg.png) ;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}


.hero{
    display: flex;
    width: 1040px;
    max-width: 1040px;
    padding: 0px 0px;
    gap: 24px;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    text-align: center;
    color: var(--Neutral-White, #FFFFFF);
}

.hero h1{
    width:600px;
}

.hero p{
    width: 700px;
    font-size: 20px;
    line-height: 1.3;
}

.hero .actions{
    display: flex;
    padding: 0px 0px;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;    
}

.btn{
    all:unset;
    display: flex;
    padding: 12px 24px;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    outline: none;
    font-size: 20px;
    line-height: 20px;
}

.secondary_white{
    border: 1px solid var(--Neutral-White, #FFFFFF);
    color: #FFFFFF;
    border-radius: 40px;    
}

.secondary_black{
    border: 1px solid var(--Neutral-White, #000000 );
    color: #000000;
    border-radius: 40px;    
}

.primary{
    background: linear-gradient(163.95572deg, #9E5BB6 15%, #6E3694 85%);
    border-radius: 40px;    
}