@charset "UTF-8";

.first-view {
    height: 250px;
    /*background-image: url(../images/company/company.JPG);
    background-color: rgba(255,255,255,0.5);*/
    background-color: #9e9e9e;
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.first-view-text {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 5px 5px 10px #4b2c14;
}

.first-view-text h1 {
    line-height: 80px;
    font-size: 70px;
}

.first-view-text p {
    margin-top: 15px;
    margin-left: 5px;
    font-size: 20px;
}

.contact {
    width: 930px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
}

.contact p {
    line-height: 1.5;
}

.contact-information {
    margin-top: 25px;
    margin-bottom: 25px;
    border-left: 1px solid #aaaaaa;
}

.form-area {
    background-color: #f8f8f8;
    border: 1px solid #aaaaaa;
    margin-top: 30px;
    padding: 30px;
}

.form-area th {
    width: 200px;
    padding: 15px 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
}

.form-area td {
    width: calc(100% - 100px);
}

.highlight {
    color: red;
}

.confirm-text {
    font-size: 14px;
    line-height: 25px;
    margin-top: 20px;
}

.submit-button {
    background-color: rgb(194, 255, 255);
    /*display: inline-block;*/
    display:flex ;
    min-width: 140px;
    line-height: 38px;
    border-radius: 10px;
    border: 1px solid #5a5a5a;
    font-family: 'Montserrat',  sans-serif;
    color: #5a5a5a;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    /*margin-left: 70px;
    margin-bottom: 15px;*/
}

.submit-button:hover {
    background-color: #2383ff;
}

.reset-button {
    background-color: rgb(194, 255, 255);
    /*display: inline-block;*/
    display: flex;
    min-width: 140px;
    line-height: 38px;
    border-radius: 10px;
    border: 1px solid #5a5a5a;
    font-family: 'Montserrat',  sans-serif;
    color: #5a5a5a;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    /*margin-left: 140px;*/
}

.reset-button:hover {
    background-color: #2383ff;
}

@media (max-width: 800px) {

    .first-view-text h1 {
    line-height: 50px;
    font-size: 50px;
    }

    .first-view-text p {
    margin-top: 5px;
    margin-left: 5px;
    }

    .form-area {
        padding: 10px;
    }

    .form-area th {
        font-size: 12px;
    }

    .conrirm-text {
        font-size: 13px;
    }

}