section.contact {
    padding: 40px 0;
    background-color: #a73a8d;
    background-position: bottom;
}

section.contact .title {
    text-align: center;
    color: #fff;
    margin: 30px;
    font-size: 35px;
}

section.contact .desc {
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}

section.contact form {
    margin: 0 auto;
    max-width: 800px;
}

section.contact form input,
section.contact form textarea,
section.contact form select {
    display: block;
    background-color: #fff;
    border: none;
    border-radius: 0;
    padding: 10px 10px;
    font-size: 16px;
    margin-bottom: 7.5px;
    min-height: 55px;
}

section.contact form input[type="file"] {
    display: none;
}

section.contact form .custom-file-upload {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: none;
    border-radius: 0;
    padding: 10px 10px;
    font-size: 17px;
    margin-bottom: 7.5px;
    min-height: 55px;
    width: 100%;
    cursor: pointer;
    color: #838181;
}

section.contact form .btn-submit {
    padding: 10px 60px;
    background: rgb(25, 97, 172);
    background: linear-gradient(90deg, rgba(25, 97, 172, 1) 0%, rgba(25, 97, 172, 1) 0%, rgba(0, 164, 184, 1) 100%);
    border-radius: 40px;
    color: #fff;
    border: none;
    margin-top: 20px;
}

@media screen and (max-width: 992px) {
    section.intro {
        background-size: cover;
        background-position-x: 20px;
    }

    section.contact .title {
        font-size: 24px;
    }
}

section.contact form input:read-only {
    background-color: #FFFFFF;
}