:root {
    --primary: #014737;
    --gold: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
}

/* NAVBAR */
.navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: white !important;
    padding: 20px 60px !important;
    position: relative;
    z-index: 9999;
}

.navbar img {
    height: 60px;
}

.navbar ul {
    display: flex !important;
    align-items: center !important;
    gap: 40px !important;
    list-style: none !important;
}

.navbar li {
    list-style: none !important;
}

.navbar a {
    text-decoration: none !important;
    color: #014737 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
}

.btn-project {
    background: #014737 !important;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 30px !important;
}

/* FOOTER */

footer {
    background: #014737 !important;
    color: white !important;
    text-align: center !important;
    padding: 80px 20px !important;
}

footer img {
    width: 120px;
    margin-bottom: 20px;
}

footer h3 {
    margin-bottom: 15px;
}

footer p {
    margin-bottom: 25px;
}

footer a {
    color: #D4AF37 !important;
    text-decoration: none !important;
    margin: 0 15px;
}

/* MOBILE */

@media(max-width:768px) {

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 20px;
    }

}