.section_1_div {
    width: 100%;
    text-align: justify;
}

.div_1_wrapper {
    padding: 150px 5% 35px 5%;
    width: 70%;
    margin: 0 auto;
}

.section_1_div h1 {
    font-size: 60pt;
    font-weight: bold;
    text-align: center;
}

.section_1_div h2 {
    font-size: 40pt;
    font-weight: bold;
    text-align: center;
}

.section_1_div h3 {
    border-top: 1px dashed #cccccc;
    margin-top: 15px;
    padding-top: 25px;
    font-size: 25pt;
    font-weight: normal;
}

#contactform {
    text-align: center;
    padding-bottom: 200px;
}

.contact_form_title {
    font-weight: normal;
    font-size: 28pt;
    padding: 20px 0px 30px 0px;
}

.contactform {
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-transition: height 0.5s;
    -ms-transform: height 0.5s;
    transform: height 0.5s;
    transition: height 0.5s;
}

.contactform form {
    width: 67%;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.contactform input {
    padding: 0.7em;
    margin: 0.3em;
    display: inline-block;
    border: 1px solid #909090;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    box-sizing: border-box;
    width: 100%;
    font-size: 12pt;
}

.contactform textarea {
    width: 100%;
    height: 8em;
    padding: 0.7em;
    margin: 0.3em;
    resize: none;
    display: inline-block;
    border: 1px solid #909090;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 12pt;
}

input:focus,
textarea:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid #ca8443;
    outline: none;
}

 ::placeholder {
    color: #d2d2d2;
    opacity: 1;
}

 :-ms-input-placeholder {
    color: #eeeeee;
}

 ::-ms-input-placeholder {
    color: #eeeeee;
}

.contactform input[type=submit] {
    display: block;
    float: right;
    box-shadow: inset 0px 1px 0px 0px #ca925d;
    background-color: #ca8443;
    border-radius: 6px;
    border: 1px solid #af723a;
    cursor: pointer;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    text-shadow: 0px 1px 0px #ffee66;
    transition: 0.3s;
    color: #eeeeee;
    width: 8em;
    height: 3em;
}

.contactform input[type=submit]:hover {
    background-color: #a6672f;
    color: #bbbbbb;
}

.g-recaptcha {
    display: block;
    float: right;
    padding: 6px;
    width: 304px;
}

@media only screen and (max-width: 768px) {
    .contactform form {
        width: 92%;
    }
    .section_1_div h1 {
        font-size: 40pt;
        font-weight: bold;
        text-align: center;
    }
    .section_1_div h2 {
        font-size: 28pt;
        font-weight: bold;
        text-align: center;
    }
    .section_1_div h3 {
        text-align: center;
    }
}