

/* Header */
.logo-header{
    width: 150px;
}
.nav a.nav-link{
    color: black;
    text-transform: uppercase;
    padding: 4px 12px;
}
.link-header-tool{
    padding: 3px 4px;
    color: black;
    font-size: 1.75rem;
}


@media (min-width: 992px) {
    .logo-header{
        margin-right: 70px;
    }
}

@media (min-width: 1200px) {
    .logo-header{
        width: 160px;
        margin-right: 120px;
    }
}

@media (min-width: 1400px) {
    .logo-header{
        width: 170px;
        margin-right: 150px;
    }
}

/* Form */
.form{
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ececec;
}
.btn-send{
    background-color: #00bf69;
    color: white;
    padding: 10px 30px;
}
.btn-send:hover{
    background-color: #037a44;
    color: white;
}


/* Footer */
.bg-green{
    background-color: #00bf69;
    color: white;
}
footer{
    padding: 75px 0;
}
footer a, footer .nav a.nav-link{
    color: white;
    text-decoration: none !important;
    text-transform: none !important;
}
footer img{
    max-height: 40px;
    width: auto;
}
.title-section-footer{
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 20px;
}
.title-section-footer::after{
    display: block;
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    border-radius: 3px;
    background-color: white;
    bottom: 0;
}