.contact-box {
    text-align: center;
    padding-top: 80px;
}

.contact-box h1 {
    font-size: 3em;
    font-weight: 700;
    color: #FD3801;
    margin-bottom: 30px;
}

.contact-box p {
    color: #003C46;
    line-height: 23px;
    margin-bottom: 70px;
}

.contact-form {
    max-width: 750px;
    margin: 50px auto 110px;
    border: 1px solid #fc653b;
    padding: 70px 90px;
    border-radius: 30px;
}

.contact-form .fld-box input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fdfdfd inset !important;
}

.contact-form .fld-box input[type="text"],
.contact-form .fld-box input[type="tel"],
.contact-form .fld-box input[type="email"],
.contact-form .fld-box textarea {
    border: none;
    color: #8298ab;
    width: 100%;
    padding: 15px;
}

.contact-form .fld-box textarea {
    height: 140px;
    resize: none;
}

.contact-form .fld-box input[type="submit"] {
    background: #F194CB;
    color: #fff;
    border-radius: 30px;
    padding: 15px;
    text-transform: uppercase;
    width: 170px;
    font-weight: 700;
    cursor: pointer;
}

::placeholder {
    color: #8298ab;
}

.contact-form .form-box {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.form-box .fld-box {
    width: 50%;
}

.form-box .fld-box.full-width {
    width: 100%;
}

.contact-botm-img {
    margin-bottom: -20px;
}

.contact-botm-img img {
    width: 100%;
}

@media only screen and (max-width:991px) {
    .page-body.page-contact-us {
        padding: 0 15px;
    }
}

@media only screen and (max-width:767px) {
    .contact-box p br {
        display: none;
    }
    .contact-form {
        padding: 25px 15px;
    }
}

@media only screen and (max-width:480px) {
    .contact-box h1 {
        font-size: 2em;
    }
    .contact-form {
        margin: 50px auto 30px;
    }
    .form-box .fld-box {
        width: 100%;
    }
    .contact-form .form-box {
        display: block;
    }
    .form-box .fld-box+.fld-box {
        margin-top: 20px;
    }
}