:root
{
    --bs-font-sans-serif: "Montserrat", sans-serif;
    --accent:#0b479e;
    --yellow: #ffb944;
    --gris: #8f8f8f;
    --grisl: #efefef;
}

h1
{
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--accent);
    line-height: 1;
    margin: 0;
}

h2
{
    color: var(--accent);
}

h3
{
    font-size: 1.3rem;
    font-weight: 500;
    color: #d9911a;
}

.btn
{
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 50px;
    background-color: var(--accent);
    color: #fff;
}

.btn:hover
{
    background-color: var(--yellow);
}

.enfasis
{
    font-size: 24px;
    font-style: italic;
}

.container.center
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 100px auto;
}

.container-fluid.center
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 100px 0;
}

.bg-light
{
    padding: 80px 0;
    background-color: #f3f7ff!important;
}

#contacto
{
    background-color: var(--accent);
    color: #fff;
    padding: 100px 0;
}

#contacto h2
{
    color: #fff;
    font-size: 3rem;
}

#contacto a
{
    color: var(--yellow);
    font-size: 1.5rem;
}

@media (min-width: 0px) and (max-width: 768px)
{
    h1,#contacto h2
    {
        font-size: 2.5rem;
    }

    h2
    {
        font-size: 2rem;
    }
}
