.newsletter {
    position: relative;
    margin: 0 auto;
    color: #63470a;
    /*color: white;*/
    overflow-y: hidden;
    padding: 0;
    background-color: #EFEBEB;
}

.newsletter-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: 0%;
    background-repeat: no-repeat;
    background-color: #EFEBEB;
    filter: blur(3px);
}

.newsletter form {
    background-color: #EFEBEB;
    position: relative;
    padding: 50px 50px;
    margin: 0 auto;
    margin-bottom: 3rem;
    margin-top: 3rem;
    width: 70%;
    height: auto;
}

.newsletter h3 {
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
}

.newsletter p {
    font-size: 20px;
    font-weight: 500;
}

.newsletter a {
    color: #c7940d;
    font-weight: bold;
}

.newsletter a:hover {
    color:#63470a;
}

.newsletter-flex {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
}

.newsletter-flex div {
    flex-grow: 1;
    margin-right: 20px;
}

.newsletter label {
    color: #006338;
}

.newsletter .reference {
    width: 50%;
    float: left;
    position: relative;
    padding: 30px 5px 0;
    margin-bottom: 30px;
    padding-right: 5px;
    padding-left: 0;
}

.newsletter .reference label {
    width: 320px;
    position: absolute;
    top: 30px;
    left: 10px;
    transition: all 0.3s ease;
}

.newsletter input[type="text"]
{
    background: rgba(0, 0, 0, 0);
    border: none;
    outline: none;
    border-bottom: 1px solid #006338;
    width: 100%;
}

.newsletter input[type="email"]
{
    background: rgba(0, 0, 0, 0);
    border: none;
    outline: none;
    border-bottom: 1px solid #006338;
    width: 100%;
}

.newsletter .default-button {
    font-weight: 600;
}

.newsletter .reference label.active {
    transform: translate(-30px, -30px) scale(0.8);
}

@media (max-width: 900px) {
    .newsletter form {
        width: 100%;
    }
    .newsletter .reference{
        width: 100%;
    }

    .newsletter-flex {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .newsletter-flex div {
        flex-grow: 1;
        margin-right: 0;
    }
}
