#navbar
{
    background-color: #4d5b34 !important;
    height: 50px;
}

#navbar .container-fluid
{
    background-color: #4d5b34 !important;
}

h1, h2, h3
{
    color: #4c5933;
}

h1
{
    font-size: 2.4rem;
}

h2
{
    font-size: 2rem;
}

h3
{
    font-size: 1.6rem;
}

h4
{
    font-size: 1.2rem;
}

.intro_text
{
    color: #002e2f;
    font-weight: bold;
    font-size: 1.2rem;
}

.hero_image
{
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

/* tabs */
.section.content .nav-link
{
    color: #000;
    background-color: #EDEDED;
    margin-right: 5px;
}

.section.content .nav-link:hover
{
    background-color: #CCC;
}

.section.content .nav-link.active
{
    background-color: #4c5933;
    font-weight: bold;
    color: #FFF;
}

/* Accordion abierto / activo */
.accordion-button:not(.collapsed) {
    background-color: #FFF;
    color: inherit;
    box-shadow: none;
    font-weight: bold;
}

/* Quitar glow al hacer focus */
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button,
.accordion-button:focus,
.accordion-button:active {
    box-shadow: none !important;
    outline: none;
}

.accordion-button:not(.collapsed) {
    background-color: #CCC;
    color: inherit;
}

.section.bg_colored
{
    background-color: #a2b47a3d;
}

@media screen and (orientation: landscape){
    .only_portrait
    {
        display: none;
    }

    #navbar ul
    {
        position: absolute;
        right: 10px;
        top: 12px;
    }

    .logo
    {
        margin-top: 7px;
    }

    .section.hero
    {
        margin-top: 63px;
    }

    .mt_3_landscape
    {
        margin-top: 3rem !important;
    }
}

/* footer */

.footer-principios {
    background-color: #4c5933;
    color: #FFF;
}

.footer_logo
{
    width: 120px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-nav .nav-link {
    padding: 0;
    color: #FFF;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-nav .nav-link:hover {
    opacity: 0.6;
}

.footer-nav .nav-link.active {
    font-weight: 600;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.6;
}

.footer-social i {
    font-size: 1.3rem;
}

/* Mobile */
@media (max-width: 767.98px) {
    .footer-principios {
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-social {
        align-items: center;
    }
}

@media screen and (orientation: portrait){
    .only_landscape
    {
        display: none;
    }

    #navbar
    {
        background-color: #4d5b34 !important;
        height: 70px;
        padding-top: 0;
    }

    .section.hero
    {
        margin-top: 74px;
    }

    h1
    {
        font-size: 1.6rem;
    }

    h2
    {
        font-size: 1.4rem;
    }

    h3
    {
        font-size: 1.2rem;
    }

    .intro_text
    {
        font-size: 1rem;
    }
}