*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
}

body{
    color: white;
    background-color: #2E2E2F;
}

/* Header nav style */

.nav-container{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #2E2E2F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}
    
.logo-header{
    width: 200px;
    height: 120px;
}

.open-nav,
.close-nav{
    display: none;
    background: none;
    border: none;
    
}

    
.nav-list{
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav li a{
    color: white;
    text-decoration: none;
    font-weight: 500;
}

    
.nav li a:hover{
        border-bottom: solid rgba(255, 255, 255, 0.744);
        margin-bottom: -1px;   
}

/* Header Background Text Styles */

.background-header-container{
    background-image: url(/assets/images/header/wall-street-financial-district\ copia.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    height: 650px;
    background-color: #2E2E2F;
}

.tittle-slogan-container{ 
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 1.5rem;
    padding-left: 300px;
    padding-top: 80px;
    
}

.header-tittle{
    font-size: 54px;
    font-weight: 600;
    letter-spacing: 5px;
}

.header-slogan{
    font-size: 48px;
    font-weight: 300;
}



/* footer style */
footer{
    background: #191A1C;
    margin-top: 5rem;
}

.footer-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-logo{
    width: 150px;
    margin-top: 2rem;
}

.footer-nav ul {
    display: flex;

    list-style: none;
    gap: 2rem;
}

.footer-nav ul li a{
    text-decoration: none;
    color: white;
    font-weight: 300;
}

.copy-nav-social{
    display: flex;
    justify-content: space-around;
    padding-bottom: 3rem;
}

.footer-mail{
    padding-top: 2rem;
    padding-bottom: 4rem;
    text-decoration: none;
    color: white;
}

.icon-social-media{
    width: 25px;
    margin-left: 10px;
    text-decoration: none;
}


        /* media query */

/* Tablets */


@media (max-width: 1024px){

    .header-tittle{
        font-size: 48px;
    }
        

    .tittle-slogan-container{
        padding-left: 80px;
    }

    .header-slogan{
        font-size: 40px;
    }

}


        /* smartphones */

@media (max-width: 768px){

    .tittle-slogan-container{
        padding-left: 0px;
        text-align: center;
        padding-top: 70px;
    }

    .header-tittle{
        font-size: 40px;
    }

    .header-slogan{
        font-size: 32px;
    }

/* nav menu */

.nav-container{
    padding: 0 30px;
    flex-wrap: wrap;
}


.open-nav,
.close-nav{
    display: block;
}

.nav{
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 2rem;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(46, 46, 49, .9 );
    padding: 3rem 2rem;
    opacity: 1;
}

.nav.visible{
    opacity: 1;
    visibility: visible;
}


.nav-list{
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}


/* background header */

.background-header-container{
    height: 500px;
}


/* footer */

footer{
    font-size: 13px;
}

.footer-nav ul{
    flex-direction: column;
    align-items: center;
}

.copy-nav-social{
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
}

}



/* big screens */
@media (min-width: 1920px){

    /* nav menu */
    .header-container{
        justify-content: center;
        gap: 33rem;
    }

    .background-header-container{
        height: 1200px;
        object-fit: cover;
        margin: 0 auto;  
    }
}
