* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik';
}
html {
    scroll-behavior: smooth;
  }
body{
    background-color: #d1d1d1;
    background: linear-gradient(180deg, #d1d1d1 0%, #fff 50%);
}
body::-webkit-scrollbar {
    width: 5px;
    height: 9px;    
    z-index: 2;
}
body::-webkit-scrollbar-thumb {
    background: #0149ff;
    border-radius: 0px;
}
body::-webkit-scrollbar-thumb:hover {
    background: #2261ff;
}
body::-webkit-scrollbar-track {
    background: #ffffff;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    height: 65px;
    width: 100%;
    padding: 0% 7%;
    box-shadow: 0px 0px 8px #1d1d1f42;
}
header .logo_anp{
    width: 160px;
}
header .botones_cabecera{
    display: flex;
}
header .botones_cabecera a{
    margin: 0px 10px;
    color: #333;
    text-decoration: none;
    transition: 0.2s ease-in-out;
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 5px;
}
header .botones_cabecera a:hover{
    color: #0b8dff;
}
header .botones_cabecera .pagina_activa{
    border-bottom: 3px solid #0b8dff;
}
.ir_al_techo{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 30px;
    bottom: 85px;
    z-index: 10;
    font-size: 35px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #0149ff;
    border: 1px solid #fff;
    color: #fff;
}
.ir_al_techo img{
    width: 25px;
    height: 25px;
}
.boton_whatsapp_flotante{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 10;
    font-size: 35px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #47c258;
}
.boton_whatsapp_flotante img{
    width: 25px;
    height: 25px;
}
.boton_whatsapp_flotante ion-icon{
    padding-top: 8px;
}
@media screen and (max-width:1050px){
    header{
        padding: 0% 3%;    
    }
    header .botones_cabecera a{
        margin: 0px 7px;
    }
}

@media screen and (max-width:800px){
    .ir_al_techo{
        right: 10px;
        bottom: 60px;
    }
    .boton_whatsapp_flotante{
        right: 10px;
        bottom: 10px;
    }
}

@media screen and (max-width:690px){
    header{
        flex-direction: column;
        height: max-content;
        justify-content: center; 
    }
    header .logo_anp{
       margin: 10px 0px;
    }
    header .botones_cabecera a{
        text-align: center;
        margin: 5px 7px;
    }
}
@media screen and (max-width:500px){
    header .botones_cabecera a{
        font-size: 13px;
    }
}