/* start contact */

.contact {
    /* background-color: #ffffff; */
    background-color: #2b2e3b;
    margin-top: 60px;
    height: calc(100vh - 60px);
}

.contact_container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .form_contact {
    width: 65%;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: flex-start;
}

@media (max-width:799px) {
    .contact .form_contact {
        width: 100%;
    }
}

.contact .form_contact span {
    font-size: 17px;
    /* color: #fff; */
}

.contact .form_contact h2 {
    font-size: 22px;
    padding-bottom: 15px;
    color: var(--color1);
}

.contact .form_contact input,
.contact .form_contact textarea {
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact .contact__message {
    position: absolute;
    left: 0;
    bottom: 4.5rem;
    font-size: 14px;
    color: rgb(241, 242, 243);
}

.contact .form_contact button {
    width: 130px;
    height: 40px;
    background-color: #088178;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 30px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.contact .form_contact button:hover {
    background-color: #08645d;
}