:root{
      --azul:#2F459B;

    --azul-claro:#4F73D9;

    --azul-oscuro:#22377F;

    --amarillo:#F4BE22;

    --naranja:#F28A28;

    --rojo:#F04A38;

   

    --fondo:#F4F7FA;

    --fondo2:#FFFFFF;

    --gris:#EDF2F7;

    --gris2:#D9E1EA;

    

    --titulo:#233F95;;

    --texto:#5F6678;

    --blanco:#5F6678;

  

    --borde:#D9E1EA;

  

    --shadow1:0 8px 25px rgba(0,0,0,.08);

    --shadow2:0 15px 35px rgba(0,0,0,.12);

    --shadowBlue:0 10px 30px rgba(47,69,155,.20);

  --radiusSmall:10px;
  --radius:20px;
  --radius:35px;

  --transition: .35s ease;
  --transitionSlow:.6s ease;
  --transitionFast:.25s ease;

  --section:120px;
  --container:130px;
}

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}


body{
    font-family: 'Poppins',sans-serif;
    background:var(var(--negro));
    color:var(--blanco);
    overflow-x: hidden;
}

img{
    width: 100;
    display: block;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

button{
    border: none;
    cursor: pointer;
}

section{
    padding:var(--section) 8%;
}

.container{
    width: 100%;
    max-width:var(--container);
    margin: auto;
}



