@import url("https://use.typekit.net/sfo8noo.css");

* {
    margin: 0;
    padding: 0;
}

/*navigation*/
.navbar {
    background-color: #3da040;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.brand-title {
    margin: auto;

}

.navbar-links {
    display: none;
    width: 100%
}

.navbar-links ul {
    margin: 0 4rem 0 0;
    padding: 0 0;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.navbar-links li {
    list-style: none;
    text-align: center;
}

.navbar-links li a {
    text-decoration: none;
    color: white;
    display: block;
    margin-left: 50px;
    font-family: Omnes, sans-serif;
    font-size: 20px;
    padding: 6px 2px;

}

.toggle-button {
    position: absolute;
    top: 1.2rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.navbar-links.active {
    display: flex;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 10px;
}

p {
    font-family: Omnes, sans-serif;
}

a {
    font-family: Omnes, sans-serif;
    text-decoration: none
}


/*footer*/
.containers {
    max-width: 1170px;

    margin: auto;
}

.row {
    display: flex;


    /*flex-wrap: wrap;*/
}

.ulfooter {
    list-style: none;
}

.footer {
    background-color: #AD8779;
    padding: 5px 0;
}

.footer-col {
    width: 40%;
    padding: 5px 15px;

}

.footer-col .ulfooter .li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col .ulfooter .li a,
p {
    font-size: 12px;
    color: #000;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
    text-align: right;
    transition: all 0.6s ease;

}

.contactmaps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}



.footer-col .social-links a {
    display: inline-block;
    height: 30px;
    width: 80px;
    font-size: 30px;
    text-align: center;
    line-height: 55px;
    color: #000;
    transition: all 0.6s ease;
}

.footer-col .social-links a:hover {
    color: #3da040;
}

.footer-col .ulfooter .li a:hover {
    color: #3da040;
}

/*CAROUSEL*/


@media(min-width: 640px) {
    .navbar {
        align-items: center;
        flex-direction: row;
        justify-content: center;
    }

    .navbar-links li a {
        padding: 1rem;
        margin-left: 0;

    }

    .navbar-links li {
        transition: all 0.2s ease;
    }

    .navbar-links {
        display: flex;
        text-align: center;
        width: 300px;
        padding: 0 15% 0 0;
    }

    .navbar-links ul {
        flex-direction: row;

    }

    .navbar-links li:hover {
        background-color: #70ff70;
    }

    .toggle-button {
        display: none;
    }




}
