

a{
text-decoration: none;
}

h2,h1,p{
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.lista_Valores{
    list-style: none;
}

  /* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::selection{
    background: rgb(0,123,255,0.3);
}
.content{
    max-width: 1250px;
    margin: auto;
    padding: 0 30px;
}
.Navbarr{
    position: fixed;
    width: 100vw;
    z-index: 2;
    padding: 25px 0;
    transition: all 0.3s ease;
}
.Navbarr.sticky{
    background: linear-gradient(rgba(5,7,12,0.25),rgba(5,7,12,0.55))/*#1b1b1b*/;
    padding: 10px 0;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}
.Navbarr .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.Navbarr .logo a{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}
.Navbarr .menu-list{
    display: inline-flex;
}

.menu-list li{
    list-style: none;
}
.menu-list li a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.menu-list li a:hover{
    color: #007bff;
}

.logo a img{
    width: 50px;
    height: 50px;
}

@supports ((-webkit-hyphens:auto) or (hyphens:auto)) {
	#text {
		text-align: justify;
		-webkit-hyphens: auto;
		hyphens: auto;
	}
}

.btn-menu-responsivo{
    display: none;
}

.icon{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.menu-list .cancel-btn{
    position: absolute;
    right: 30px;
    top: 20px;
}

/*Responsive*/
@media screen and (max-width:910px){
    body.disabled{
        overflow: hidden;
    }
    .icon{
        display: block;
    }
    .icon.hide{
        display: none;
    }
    .Navbarr .menu-list{
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        left: -100%;
        top: 0px;
        display: block;
        padding: 40px 0;
        text-align: center;
        background: #222;
        transition: all 0.3s ease;
    }
    .Navbarr.show .menu-list{
        left: 0%;
    }
    .Navbarr .menu-list li{
        margin-top: 45px;
    }
}

