/*Global Properties*/
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
    height: auto;
    margin: 0 auto;
    font-family: "Georgia", serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4;
    color: #000;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/*Form Fields*/
input,
textarea,
select {
    font-family: "Georgia", serif;
    font-size: 14px;
} /*font inside of the text area*/

textarea {
    overflow: auto;
}

/*The Box The Content Is In*/
.content-box {
    height: auto;
    top: 0;
    padding: 30px 30px 10px;
    margin: 0 auto;
    background: #EDE9E9;
}

/*The Core of The Widget*/
.blackbox {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

.blackbox h3,
.blackbox h2 {
    box-sizing: border-box;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    text-transform: none;
    color: inherit;
    letter-spacing: 1px;
}

.blackbox h3 {
    font-size: 14px;
    line-height: 1;
    padding: 12px 30px;
}

.blackbox p {
    padding-top: 5px !important;
    top: 0 !important;
    color: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    display: block;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}

.blackbox form {
    padding: 0px;
}

.blackbox .field {
    background-color: #fff;
    font-size: 18px;
    line-height: 1;
    padding: 14.5px 20px;
    border: 0;
    width: 100%;
    max-width: 250px;
    margin-bottom: 0;
    margin-right: 8px;
    max-width: calc(100% - 166px);
    border-radius: 5px 0 0 5px;
}

.blackbox .dropdown {
    background-color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border: 0;
    width: 200px;
    margin-bottom: 15px;
}

.blackbox .dropdown:focus {
    background-color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border: 0;
    width: 200px;
    margin-bottom: 15px;
}

.blackbox .submit {
    padding: 16px 22px;
    background: #000;
    color: #fff;
    line-height: 1;
    font-size: 18px;
    cursor: pointer;
    margin-left: -10px;
    -webkit-appearance: button;
    border: none;
    border-radius: 5px;
    font-family: "Lato";
    vertical-align: top;
    font-weight: bold;
    text-transform: uppercase;
}

.blackbox .submit:hover {
    background: #58595b;
    color: #fff;
}

/*Footer*/
.footer {
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.footer a {
    color: #fff;
}

.newsletter-image {
    max-width: 75px;
    float: left;
    margin: 5px 20px 25px 0;
}

.legal {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 5px;
    margin-bottom: 15px;
    font-family: Lato;
    color: #333;
}

.legal a {
    color: #333;
}

.legal a:hover {
    color: #245db7;
}

select {
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    position: relative;
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    width: 20px;
    height: auto;
}

.drop-d {
    padding-bottom: 10px;
    padding-top: 5px;
}

.signup-left {
    padding-right: 60px;
}

.signup-left,
.signup-right {
    flex-basis: 50%;
}

#headline {
    letter-spacing: 0;
    font-size: 28px;
    padding-top: 15px;
    font-style: italic;
    font-weight: bold;
    font-family: "Georgia";
}

#body-text {
    font-size: 16px;
    line-height: 1.25;
    color: #1a1a1a;
}


@media screen and (max-width: 900px) {
    .content-box {
        padding: 30px 15px;
    }

    .blackbox {
        flex-direction: column;
    }    

    .blackbox .field,
    .blackbox .submit {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .blackbox .field {
        margin-bottom: 10px;
    }

    .blackbox .submit {
        margin: 0;
    }

    .signup-left {
        padding-right: 0;
        padding-bottom: 20px;
        text-align: center;
    }

    .signup-left,
    .signup-right {
        flex-basis: 100%;
    }

    .newsletter-image {
        float: none;
        margin: 0 auto 10px;
        width: 60px;
        display: block;
    }

    .legal {
        text-align: center;
        padding-top: 10px;
        line-height: 1.25;
    }

    .blackbox .submit {
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 14px;
        margin: 0;
    }
}
