
header {
    font-family: "Montserrat", serif;
    background-image: url(../img/Servicios/headerFondo.jpg);
    background-attachment: fixed;
    /* Efecto Parallax */
    background-position: initial;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
}

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%;
}

nav .links ul {
    display: flex;
    padding: 0;
}

nav .links ul li {
    padding: 1em;
    color: #2B2B2B;
    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: #2B2B2B;
    padding: .5em .5em .5em 1em;
    width: 100px;
    border-radius: 10px;
}


nav .btn_starlink .btn img {
    width: 90%;
}

.content_header{
    display: flex;
    justify-content: right;
    margin: 0 20em;
}

.content_header .content{
    width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4em 0;
}

.content_header .content h3{
    font-size: 2.5em;
    text-align: center;
    font-weight: 800;
    color: #2B2B2B;
    padding-bottom: .5em;
}

.content_header .content h4{
    width: 500px;
    font-size: 1.5em;
    text-align: center;
    color: #0080FF;
    font-weight: 600;
    padding-bottom: .5em;
}

.content_header .content img{
    width: 200px;
}

.toggle {
    display: none;
}

.toggle i {
    font-size: 2em;
}

@media (max-width: 800px){

    header {
        background-position: 60%;
        height: 380px;
    }

    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%;
    }

    .content_header{
        margin: 0;
    }
    
    .content_header .content{
        width: 100%;
        padding: 2em 0;
    }
    
    .content_header .content h3{
        font-size: 1.4em;
        padding: 0 .6em .5em .6em;
    }
    
    .content_header .content h4{
        width: 80%;
        font-size: 1em;
        padding: 0 .6em .6em .6em;
    }
    
    .content_header .content img{
        width: 150px;
    }
}