nav a svg:hover path {
    fill: blue;
}
nav .container-fluid{
    padding: 0 2.5rem;
}
.nav-btn-call {
    margin: 0 1rem;
    padding: 0.5rem 0.75rem;
    background-color: blue !important;
    color: white !important;
    border: none;
}
nav a svg {
    width: 35px;
}
.nav-logo{
    width: 50px;
    border-radius: 100px;
}
/* FOOTER  */
#footer {
    background-color: rgb(0, 77, 42) !important; /* Original green color */
    padding: 3rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-section {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-section-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section-logo-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-section img {
    width: 250px;
}

#footer-logo {
    width: 90px;
    margin: 0 10px;
    border-radius: 100px;
}

.logo-text {
    text-decoration: none;
    font-size: 2.6rem !important;
    color: white;
}

.footer-big-text {
    font-size: 1.8rem;
    color: white;
    text-transform: uppercase;
    margin: 1rem 0;
}

.footer-small-text {
    font-size: 1rem;
    color: white;
}

.social-media-container {
    margin: 2rem 0;
}

.social-media-container a {
    margin: 0.5rem;
    padding: 0.5rem;
}

.social-media-container svg {
    width: 40px;
    fill: white;
    height: 80px;
}

.footer-btn {
    width: 25%;
    text-align: center;
    text-decoration: none;
    background-color: blue !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.footer-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.footer-text-section a {
    margin: 0 0.5rem;
    color: white;
}

hr {
    margin: 2rem 0;
    background-color: grey;
    border: none;
    height: 1px;
}

/* Button styles - only for nav/footer */
nav button, nav .btn, 
#footer button, #footer .btn {
    background-color: blue !important;
    color: white !important;
    border: none;
}

@media only screen and (min-width: 500px) and (max-width: 1300px) {
    .footer-big-text {
        font-size: 2rem;
        color: white;
    }

    .footer-container {
        width: 90%;
        margin: 2rem auto;
    }

    .footer-big-text span {
        font-size: 2rem;
        color: white;
    }

    .footer-big-text {
        font-size: 1.5rem;
        color: white;
    }
}

@media (max-width: 500px) {
    .navbar {
        text-align: center !important;
    }
    nav .container-fluid{
        padding: 0;
    }

    .d-flex {
        justify-content: center;
    }

    #footer {
        padding: 1rem 0;
        background-color: rgb(0, 77, 42) !important; /* Original green color */
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-section,
    .footer-section-logo-section {
        width: 90%;
        margin: 2rem auto;
    }

    .footer-section-text {
        padding: 5px;
    }

    .footer-big-text {
        font-size: 1rem;
        color: white;
    }

    .footer-small-text {
        font-size: 0.8rem;
        color: white;
    }

    .footer-text-section p {
        font-size: 10px;
        color: white;
    }

    hr {
        margin: 1rem 0;
    }
}