*{
    padding: 0px;
    margin: 0px;
    font-family: Arial;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html{
    scroll-behavior: smooth;
}
body{
    overflow-y: scroll!important;
    overflow-x: hidden;
}
body::-webkit-scrollbar{
    width: 0px;
}
@font-face {
    font-family: Arial;
    src: url(../ttf/arial.ttf);
}
#Target{
    position: relative;
    top: 10vh;
    height: 90vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
#Target::-webkit-scrollbar{
    background: #eaf0ff;
    width: .7vh;
}
#Target::-webkit-scrollbar-thumb{
    background: #4965ab;
    float: left;
    border-radius: 10vh;
}

/* Barra */
.Nav{
    background-color: white;
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 10vh;  
}
.Border{
    border: solid black .01vh;
	border-style: none none solid none;
    box-shadow: 1px .1vh 10px rgb(112, 112, 112);
}

/* Logo */
.Nav div{
    width: 25%;
    display: inline-block;
}
.Logo1{
    color: #2A417B;
    font-weight: 900;
    margin-left: 3vw;
    line-height: 10vh;
    text-decoration: none;
    font-size: 5vh;
}
.Logo2{
    color: #2A417B;
    font-weight: 100;
    margin-right:3vw;
    line-height: 10vh;
    text-decoration: none;
    font-size: 5vh;
}

/* Barra */
.BttnCont{
    display: inline-block;
    width: 70%;
    list-style: none;
}
.BttnCont li{
    text-align: left;
    display: inline-block;
}
.BttnCont li a{
    color: #4965ab;
    text-decoration: none;
    font-size: 3vh;
    font-weight: 500;
}
.BttnCont li a:hover{
    font-size: 3.5vh;
    font-weight: 700;
    transition: 0.3s;
}


/* SubMenu */
.SubMenu{
    top: 10vh;
    background-color: white;
    width: 100%;
    position: fixed;
    display: none;
    z-index: 4!important;
    border: solid black .01vh;
    box-shadow: 1px .1vh 10px rgb(112, 112, 112);
	border-style: none none solid none;
}
.SubMenu ul{
    vertical-align: top;
    display: inline-block;
    list-style: none;
    position: relative;
}
.SubMenu ul li{
    height: 5vh;
}
.SubMenu ul li a{
    color: rgb(36, 36, 36);
    text-decoration: none;
}
.SubMenu ul li:hover{
    font-weight: 700;
}
.SubMetd{
    width: 17%; 
    left: 25.3%;
}
.SubCont{
    width: 28%; 
    left: 57.4%;
}


.Actived{
    z-index: 0;
    animation: Anim .3s linear 1;
    display: block;
}
@keyframes Anim {
    0%{
        transform: translateY(-20vh);
    }
    100%{
        transform: translateY(0vh);
    }
}

/* Boton */
.Nav_Button{
    background: none;
    border: none;
    font-size: 4vh;
    padding: 0px 2vh;
    line-height: 19vh;
    display: none;
}

#Contacto{
	height: 8vh;
	background-color: rgb(218, 218, 218);
    border: solid rgb(180, 180, 180) .1vh;
    border-style: solid none none none;
	text-align: center;
}
.ContactCon{
	text-align: center;
}
.ContactBtton{
	line-height: 8vh;
	text-decoration: none;
	color: rgb(37, 37, 37);
	display: inline-block;
	padding: 0 4vw 0 0;
}

@media (max-width: 768px){   
    /* Nav */
    .Nav{
        height: 8vh;  
    }

    /* Logo */
    .Nav div{
        width: 60%;
    }
    .Logo1{
        line-height: 8vh;
        font-size: 2.5vh;
    }
    .Logo2{
        line-height: 8vh;
        font-size: 2.5vh;
    }

     /* Barra */
    .BttnCont{
        flex-direction: row;
        vertical-align: text-top;
        position: absolute;
        background: none;
        left: 0;
        top: 8vh;
        min-height: 25vh;
        width: 100%;
        z-index: 2;
        padding: 2vh 0;
        visibility: collapse;
    }
    .BttnCont li a{
        text-decoration: underline;
        color: white;
        font-size: 1.2vh;
    }
    .BttnCont li a:hover{
        font-size: 1.2vh;
        font-weight: 500;
        transition: 0.3s;
    }
    .Nav_Button{
        position: relative;
        left: 20%;
        line-height: 6vh;
        font-size: 3vh;
        display: inline-block;
        color: black;
    }
    .Nav_Menu_Visible{
        visibility: visible;
        animation: Anim .3s linear 1;
    }

    /* SubMenu */
    .SubMenu{
        padding-top: 6vh;
        top: 7vh;
        width: 100%;
        z-index: 1;
        background-color: #2A417B;
    }
    .SubMenu ul li a{
        color: white;
        font-size: 1vh;
    }
    @keyframes Anim {
        0%{
            transform: translateX(-20vh);
        }
        100%{
            transform: translateX(0vh);
        }
    }

    .Selected{
        color: orange;
    }
    
    #Contacto{
        height: 6vh !important; 
    }
    .ContactBtton{
        line-height: 6vh !important;
        font-size: 2vh;
    }     
}