 
     /* con margin y paddin le quitamos todos los margenes a la web*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none; 
    list-style: none; /*Quita los puntos de las listas <li>*/
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
    
}
::-webkit-scrollbar-track {
    background: #4565ae;
}
::-webkit-scrollbar-thumb {
    background: rgb(11, 13, 112);
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(30, 185, 15);
}

/* all similar content styling codes */  
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about, .services, .skills, .teams, .contact, footer{
    font-family: 'Poppins', sans-serif;
}  
/* navbar styling */
.navbar{
    left: 0%;
    top: 0%;
}

.navbar{
    position: fixed;  /*Cambiamos de fixed a relative para que se pueda*/
    width: 100%;
    z-index: 999;
    padding: 11px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
/* barra del menu emergente
.navbar.sticky{
    padding: 15px 0;
    background: rgb(199, 196, 213);
}*/
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{   
    color: rgb(35, 178, 210);
    font-size: 35px;
    font-weight: 600;
}
/*LOGO DE LA BARRA DEL MENU
.navbar .logo a span{
    color: rgb(21, 125, 141);
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: rgb(84, 135, 217);
}*/
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{ /*propiedades del menu*/
    display: block;
    color: rgb(110, 184, 229);
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: rgb(38, 51, 100);
}
.navbar.sticky .menu li a:hover{
    color: #fff;
}

/* propiedades de la hamburguesa del menu emergente */
.menu-btn{     
    font-size: 33px;
    cursor: pointer;
    display: block;
}
.scroll-up-btn{ /*propiedades del boton inferior de subir*/
    position: fixed;
    height: 45px;
    width: 42px;
    background: rgb(17, 39, 90, 0.6);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: rgb(112, 244, 68);
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
}
 
/* responsive media query start */ 
  
 
@media (max-width: 947px){
    .menu-btn{
        display: block; 
        z-index: 999;
        color: #fff;
    }

          

    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{ /*menu emergente propiedades*/
        position: fixed;
        height: 100vh;
        width:100%;
        left: -100%;
        top: 0;
        /*centrado vertical y horizontal de elementos*/
        display: flex;
        flex-direction: column;
            justify-content: center;
            align-items: center;
        /*background-image: url(imagen/arnulfo-w.jpg); poner imagen en menu emergente*/
        background: rgba(4, 52, 28, 0.9);  /*color de fondo de la web*/
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
        padding-top: 10px;
        transition: all 0.3s ease; /*efecto de aparecer menu*/
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{ /*Propiedades del menu emergente*/
        display: inline-block;
        margin: 2px 0; /*espacio entre links del menu emergente*/
        margin-left: 11px;/*espacio entre margen izq y los links del menu emergente*/
        font-size: 14px; /*tamaño de letras links del menu emergente*/
        color: rgb(243, 205, 35);
    }
    .home .home-content .text-2{
        font-size: 70px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{ 
        max-width: 930px;
    } 
}
@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
 
} 
}