/* CONTACTS =======================================================================================================*/

.contacts .contacts-container {
    padding: 100px 0;
    margin: 0;
    width: 100%;
    max-width: 60%;
    height: auto;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.contacts .txt-header {
    color: white;
    font-size: 32px;
    text-align: center;
    font-weight: 500;
    width: 100%;
    padding: 0 20px;
    margin: 80px 0;
}

.contacts .form-and-contacts-container {
    width: 100%;
    height: auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contacts .address-container {
    width: 40%;
    height: auto;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    margin: 0 0 0 80px;
    font-size: 15px;
    color: white;
}

.contacts .address-container .address-row {
    display: block;
    text-decoration: none;
    margin: 5px 0 0 20px;
}

.contacts .address-container .first-row {
    margin-bottom: 30px !important;
}

.contacts .form-container {
    width: 60%;
    height: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.contacts .input-name {
    width: 100%;
    height: auto;
    padding: 10px;
}

.contacts .input-email {
    width: 50%;
    height: auto;
    padding: 10px;
}

.contacts .input-phone {
    width: 50%;
    height: auto;
    padding: 10px;
}

.contacts .input-message {
    width: 100%;
    height: auto;
    padding: 10px;
}

.contacts .form-submit-container {
    width: 100%;
    padding: 30px 10px;
}

.contacts .recaptcha {
    margin: 10px;
    margin: 10px;
}

.contacts form input[type=text], .contacts form textarea {
    font-size: 16px;
    color: white;
    width: 100%;
    height: 50px;
    padding: 8px;
    border: 1px solid white;
    background: transparent;
    border-radius: 4px;
    resize: vertical;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.contacts form input:focus, .contacts form textarea:focus {
    outline: 0;
    color: black;
    background-color: white;
}

.contacts textarea {
    min-height: 90px;
    max-height: 300px;
    font-family: inherit;
    font-size: inherit;
}

/* ====================================================================================== */

@media all and (max-width: 1400px) {
    .contacts .contacts-container {
        max-width: 70%;
    }
}

@media all and (max-width: 1000px) {
    .contacts .contacts-container {
        max-width: 80%;
    }
}

@media all and (max-width: 900px) {
    .contacts .form-and-contacts-container {
        flex-wrap: wrap;
        margin-bottom: 0px;
    }
    .contacts .form-container, .contacts .address-container {
        width: 100%;
        margin: 0;
    }
    .contacts .form-submit-container {

        text-align: center;
    }
    .contacts .recaptcha {
        margin: 10px auto;
    }
}

@media all and (max-width: 580px) {
    .contacts .contacts-container {
        max-width: 100%;
    }
    .contacts .input-email, .contacts .input-phone {
        width: 100%;
    }
}

@media all and (max-width: 400px) {}