.header {
    max-width: 1920px;
    height: 750px;
    margin: 0 auto;

    background-image: url('../../assets/imgs/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header .filter {
    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;
    padding: 0 250px;

    position: relative;

    background-color: rgba(29, 39, 49, 0.5);
}

/* Social Navbar */

.header .nav-social ul {
    display: flex;
    flex-direction: column;
    gap: 15px;

    position: absolute;
    top: 50%;
    left: 50px;

    transform: translateY(-50%);
}

.header .nav-social a {
    color: var(--white);
    transition: 0.1s ease;
}


.header .nav-social a:hover {
    color: var(--yellow);
}


/* Content */

.header .container {
    display: flex;
    justify-content: center;
    flex-direction: column;

    color: var(--white);
}

.header .container .header-hr1 {
    width: 250px;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--white);
}

.header .container .header-hr2 {
    width: 150px;
    margin: 15px 0 25px 0;
    border-bottom: 3px solid var(--white);
}

.header .container h1 {
    font-size: 48px;
}

@media only screen and (max-width: 1700px) {
    .header .filter {
        padding: 0 150px;
    }
}

@media only screen and (max-width: 1050px) {
    .header .filter {
        padding: 150px 100px;
    }

    .header .nav-social ul {
        left: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .header {
        height: 550px;
    }

    .header .filter {
        justify-content: center;

        padding: 0 30px;
    }

    .header .nav-social {
        display: none;
    }

    .header .container {
        align-items: center;
    }

    .header .container h1 {
        font-size: 32px;
        text-align: center;
    }

    .header .container p {
        font-size: 14px;
        text-align: center;
    }
}