.banner-contact {
    width: 100%;
    height: 50vh;
    background-image: url('../images/contact/bannerContact.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
}

.blooc-contact {
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding: 0 0 50px 100px;
}

.blooc-h2 {
    font-size: 50px;
}


.contact-section {
    padding: 60px 0;
    color: #3E4939;
}

.form-control {
    border: none;
    border-bottom: 1px solid #aaa;
    border-radius: 0;
    box-shadow: none;
}

.form-control:focus {
    border-color: #000;
    box-shadow: none;
}

.contact-title {
    font-weight: bold;
    margin-bottom: 20px;
    color: #3E4939;
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
}

.btn-send {
    border: none;
    background: none;
    color: #3E4939;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 1px solid #3E4939;
    padding: 10px 25px;
}

.btn-send:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .blooc-contact {
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        /*justify-content: center;*/
        padding: 10px;
    }
    .btn-send{
        margin-bottom: 20px;
    }


    .blooc-h2 {
        font-size: 30px;
    }
}