html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
   
}

body {
    font-family: "Poppins-Medium", sans-serif;
    flex: 1;
}

.container-fluid {
    flex: 1 0 auto;
}

.content {
    flex: 1;
}

footer {
    flex-shrink: 0;
    background-color: #131f38;
    position: sticky;
    bottom: 0;
    width: 100%;
}

.footer-logo {
    max-width: 150px;
}

.footer-social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #ffffff !important;
    transition: color 0.3s;
}

.footer-social-icons a:hover {
    color: #95c93d !important;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.nav-item {
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.nav-link {
    color: white !important;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s;
}

.nav-item a.nav-link:hover {
    color: #95c93d !important;
}

.nav-item:not(:last-child)::after {
    content: "|";
    margin-left: 8px;
    margin-right: 8px;
    color: #ffffff !important;
}

.thin-text {
    font-weight: 300 !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  footer {
    padding: 40px 40px !important; /* Padding intermedio para tablets */
  }
}

@media (max-width: 768px) {
    .footer-social-icons a {
        margin: 0 5px;
    }

    .nav-item {
        margin-bottom: 10px;
    }

    .nav-item:not(:last-child)::after {
        display: none;
    }
    footer {
       padding: 40px 20px !important; /* Reducir padding lateral en dispositivos móviles */
  }
}
/* custom scroll widget */
.scroll-progress {
    position: fixed;
    right: 20px;
    z-index: 111;
    top: 50%;
    transition: all .3s linear;
    opacity: 0;
    transform: translateY(-50%);
    mix-blend-mode: difference;
}

.scroll-progress.visible {
    opacity: 1;
}

.scroll-progress .scroll-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.scroll-progress .scroll-line {
    width: 2px;
    height: 60px;
    position: relative;
    background-color: rgba(255, 255, 255, .15);
    display: block;
}

.scroll-progress .scroll-point {
    display: inline-block;
    width: 2px;
    position: absolute;
    background-color: #ffffff;
    top: 0;
    left: 0;
}

.scroll-progress .scroll-text {
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
}
/* end of custom scroll widget */


/* FOOTER */
.footer {
    padding: 20px 0;
    background-color: #f8f9fa;
    text-align: center;
    position: relative;
    z-index: 10;
    clear: both;
}


/* FOOTER */
.footer {
    padding: 20px 0;
    background-color: #f8f9fa;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 20px;
    clear: both;
}

#wrapper-navbar {
    overflow-x: hidden;
    width: 100%;
}

.nav-link-scrolled {
  color: black !important;
  transition: color 0.3s;
}

.btn-scrolled {
	background-color: #A3B75F !important;
	color: white !important;
	transition: background-color 0.3s, color 0.3s;
}