:root{
    --color-logo: #fff;


    --background-navbar: linear-gradient(90deg, rgb(36, 21, 210) , rgb(116, 1, 218) );
    --background-navbartr: transparent;
    
    
    --color-navbar: #fff;

    --color-ul-li-a:#fff;

    --color-aactive: #000;
    --background-aactive: #fff;


    --color-hamburguer: #fff;
}






header{
    width: 100%;
    height: 85px;
    background: var(--background-navbartr);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    list-style: none;
    /* position: fixed; */
    z-index: 1000;
    

}

.header-principal{


    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7) ), url(../../img/estudio.jpg);
    background-size: cover;
    background-position: center;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.logo{
    display: none;

    height: 75px;

}


.logo-2{
    width: 200px;

}


.hamburguer{
    display: none;
}


.nav-bar ul{
    display: flex;
    list-style: none;

}

.nav-bar ul li a{
    display: block;
    color: var(--color-ul-li-a);
    font-size: 1.05em;
    padding: 10px 10px;
    border-radius: 50px;
    transition: .2s;
    margin: 0 5px;
    list-style: none;
    text-decoration: none;
}

.nav-bar ul li a:hover{
    color: var(--color-aactive);
    background: var(--background-aactive);
}

.nav-bar ul li a.active{
    color: var(--color-aactive);
    background: var(--background-aactive);
}



@media only screen and (max-width: 1300px) {
    header{
        padding: 0 50px;
        background: var(--background-navbartr);
    
    }

}
@media only screen and (max-width: 1100px) {
    header{
        padding: 0 10px;
        background: var(--background-navbartr);

    }
    .logo-2{
        height: 120px;
        width: 122px;
    }
}


@media only screen and (max-width: 900px) {

    header{
        height: 70px;

        padding: 0 50px;
        background: var(--background-navbar);
        position: fixed;
        z-index: 1000;
    
    }
    .logo{
        display: block;

        height: 65px;
    }

    .logo-2{
        display: none;
    
    }
    

    .hamburguer{
        display: block;
        cursor: pointer;
    }
    .hamburguer .line{
        width: 30px;
        height: 3px;
        background: var(--color-hamburguer);
        margin: 6px 0;
    }
    .nav-bar{
        height: 0;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        width: 100vw;
        background: var(--background-navbar);
        transition: .2s;
        overflow: hidden;
        display: flex;
        /* justify-content: center;
        align-items: center; */

    }
    .nav-bar.active{
        height: auto;

        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--background-navbar);
        
    }
    .nav-bar ul{
        display: block;
        width: fit-content;
        margin: 0px auto 0 auto;
        text-align: center;
        transition: .5s;
        opacity: 0;
    }

    .nav-bar.active ul{
        opacity: 1;
    }

    .nav-bar ul li a{
        margin-bottom: 12px;
    }

}

/* _______ Tour _________ */


#header-tour{
    background: linear-gradient(90deg, rgb(36, 21, 210) , rgb(116, 1, 218) );
}








/* _______ scroll _________ */

::-webkit-scrollbar{
    min-height: 30px;
    width: 11px;
}
::-webkit-scrollbar-thumb{
    background-image: #695a5a;
}

::-webkit-scrollbar-thumb{
    background-image: linear-gradient(90deg, rgb(36, 21, 210) , rgb(116, 1, 218) );
    /* border-radius: 6rem; */

}