		/* ============================= */
/* NAVBAR GENERAL */
/* ============================= */
.custom-navbar {
    background: rgba(0, 128, 0, 0.65) !important;
    border: none !important;
    transition: all 0.4s ease;

    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

/* ============================= */
/* LOGO */
/* ============================= */
.custom-navbar .navbar-brand img {
    max-height: 25px;
}

/* ============================= */
/* LINKS */
/* ============================= */
.custom-navbar .navbar-nav > li > a,
.custom-navbar .navbar-brand {
    color: #fff !important;
    padding: 18px 12px;
    display: flex;
    align-items: center;
}

/* HOVER */
.custom-navbar .navbar-nav > li > a:hover {
    color: #d4ffcc !important;
}

/* ============================= */
/* CENTRAR MENÚ EN MÓVIL/TABLET */
/* ============================= */
@media (max-width: 991px) {

    .custom-navbar .navbar-collapse {
        text-align: center;
    }

    .custom-navbar .navbar-nav {
        float: none !important;
        margin: 0 auto;
        display: block;
        width: 100%;
    }

    .custom-navbar .navbar-nav > li {
        float: none;
        display: block;
    }

    .custom-navbar .navbar-nav > li > a {
        display: block;
        text-align: center;
        padding: 12px 0;
    }
}

/* ============================= */
/* BOTÓN HAMBURGUESA */
/* ============================= */
.custom-toggler {
    border: none;
    background: transparent;
    outline: none;
}

/* BARRAS */
.custom-toggler .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #ffffff;
    transition: all 0.4s ease;
}

/* ANIMACIÓN A "X" */
.custom-toggler:not(.collapsed) .top-bar {
    transform: rotate(45deg);
    position: relative;
    top: 8px;
}

.custom-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}

.custom-toggler:not(.collapsed) .bottom-bar {
    transform: rotate(-45deg);
    position: relative;
    top: -8px;
}

/* ESTADO NORMAL */
.custom-toggler.collapsed .top-bar,
.custom-toggler.collapsed .bottom-bar {
    transform: rotate(0);
    top: 0;
}

.custom-toggler.collapsed .middle-bar {
    opacity: 1;
}

/* ============================= */
/* EFECTO SCROLL */
/* ============================= */
.custom-navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.custom-navbar.scrolled .navbar-nav > li > a,
.custom-navbar.scrolled .navbar-brand {
    color: #0a8f3c !important;
}

.custom-navbar.scrolled .navbar-nav > li > a:hover {
    color: #065c27 !important;
}

.custom-navbar.scrolled .custom-toggler .icon-bar {
    background-color: #0a8f3c;
}

/* ============================= */
/* ESPACIO SUPERIOR */
/* ============================= */
body {
    padding-top: 70px;
}