section.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #3f3f3f;
    padding: 3rem 0 5rem 0;
}

.contact-anchor {
    position: absolute;
    bottom: 80px;
    width: 1px;
    height: 1px;
    background-color: transparent;
}
                    
.contact h1 {
    color: #ffffff;
    text-align: center;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 24px;
}

.contact form {
    width: 600px;
    text-align: center;
}

form .input-box {
    display: flex;
    justify-content: space-between;
}

.input-box .input-field {
    width: 48.5%;
}

.field .item {
    width: 100%;
    padding: 18px;
    background: #b3b3b3;
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    color: #ffffff;
    margin: 12px 0;
}

.field.error .item {
    border-color: #d93025;
}

.field .item::placeholder {
    color: #e4e4e4;
}

.field .error-txt {
    font-size: 14.5px;
    color: #ee6e25;
    text-align: left;
    margin: -5px 0 10px;
    display: none;
}

.field.error .error-txt {
    display: block;
}

form .textarea-field .item {
    resize: none;
}

form .textarea-field .error-txt {
    margin-top: -10px;
}

form button {
    font-family: "Mukta Mahee", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 21px;
    letter-spacing: 2.5px;
    margin-top: 10px;
    margin-bottom: 50px;
    padding: 12px 52px;
    color: #ffffff;
    background-color: transparent;
    border: 4px solid #C34921;
    border-radius: 32px;
    transition: .5s;
}

form button:hover {
    text-decoration: none;
    color: #f5d7a0;
    border: 4px solid #c39021;
    }

    form button:focus {
    outline: none;
    }

@media (min-width: 960px) {

    .contact form {
        width: 950px;
    }
}


@media (max-width: 610px) {

    .input-box .input-field {
        width: 100%;
    }

    form .input-box {
        flex-direction: column;
    }

    .contact form {
        width: 92%;
    }

    .contact-anchor {
        bottom: 120px;
    }
}