@font-face {
    font-family: 'AktivGrotesk';
    font-style: normal;
    font-weight: normal;
    src: local('AktivGrotesk'),
         url('/static/fonts/AktivGrotesk.otf') format('opentype');
}

@media (max-width: 1130px) {
    .nav-button
    {
        display: none !important; 
    }

    .hero-image 
    {
        display: none;
    }

    .hero-text
    {
        margin-left: 20px;
        width: auto;
    }
}

body {
    margin: 0;
    background: #ffffff;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(232, 232, 232, 1) 100%);
}

.hero
{
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-text
{
    display: flex;
    justify-content: center;
    align-items: flex-start;

    flex-direction: column;
    margin-left: 10vw;
    width: calc(100% - 10vw);
    height: calc(87vh);
}

.hero-main
{
    font-family: 'AktivGrotesk', Arial, Helvetica, sans-serif;
    margin: 0;
}

.blue-text
{
    color: #3655e0;
}

.hero-subtext
{
    margin: 0;
    font-family: 'AktivGrotesk', Arial, Helvetica, sans-serif;
    font-size: x-large;
}

.hero-image
{
    width: 60vw;
    height: 70vh;
}

.nav-links {
    display: flex;
    gap: 20px;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-button
{

    height: 30px;
    width: 8vw;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5rem;
    border: 2px solid #3655e0;
    background-color: #3655e0;

    transition: background-color 0.2s ease;

    font-family: 'AktivGrotesk', Helvetica, sans-serif;
    font-size: 1em;
    letter-spacing: 1px;    
    text-decoration: none;

    color: white;
}


.cta-button
{

    height: 30px;
    width: 8vw;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5rem;
    border: 2px solid #3655e0;
    background-color: #3655e0;

    transition: background-color 0.2s ease;

    font-family: 'AktivGrotesk', Helvetica, sans-serif;
    font-size: 1em;
    letter-spacing: 1px;    
    text-decoration: none;

    color: white;
}

.nav-button:hover {
    color: #3655e0;
    background-color: white;
}

.cta-button:hover
{
    color: #3655e0;
    background-color: white;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    position: relative;
}

.name
{
    margin: 0;
    color: #3655e0;
    font-family: 'AktivGrotesk', Arial, Helvetica, sans-serif;
}

.left, .right {
    display: flex;
    align-items: center;
}

.login
{

    width: 50px;
    height: 50px;
    margin: 8px;
    cursor: pointer;
}