header {
    font-family: "Montserrat", serif;
    width: 100%;
    height: 81px;
    background-color: #002046;
}

nav {
    display: flex;
    justify-content: space-around;
    margin: 0 10em;
}

nav .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
}

nav .logo img {
    width: 40%;
}

nav .links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    z-index: 1000;
}

nav .links ul {
    display: flex;
    padding: 0;
}

nav .links ul li {
    padding: 1em;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
}

nav .btn_starlink {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;

}

nav .btn_starlink .btn {
    background-color: #ffffff;
    padding: .5em .5em .5em 1em;
    width: 100px;
    border-radius: 10px;
}


nav .btn_starlink .btn img {
    width: 100%;
}

.toggle {
    display: none;
}

.toggle i {
    font-size: 2em;
    color: #ffffff;
}

@media (max-width: 800px){

    header{
        height: 50px;
    }

    nav {
        justify-content: space-between;
        margin: 0 1em .4em 1em;
        padding: .4em;
    }

    nav .logo {
        width: 30%;
    }

    nav .logo img {
        width: 100%;
    }

    nav .links {
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #ffffff;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }
    
    nav .links ul {
        display: flex;
        padding: 0;
    }
    
    nav .links ul li {
        padding: 1em;
        color: #2B2B2B;
        font-weight: 700;
        font-size: 15px;
    }

    .toggle {
        display: block;
        width: 10%;
        display: flex;
        justify-content: end;
    }

    .links.active {
        height: 320px;
    }

    .links ul {
        flex-direction: column;
        text-align: center;
    }

    .links ul li {
        margin: 15px 0;
    }

    nav .btn_starlink {
        width: 30%;
    }
    
    nav .btn_starlink .btn {
        padding: .3em .2em .3em 1em;
        width: 90px;
        border-radius: 8px;
    }
    
    nav .btn_starlink .btn img {
        width: 95%;
    }
}