.contact-us-logo{
    width: 150px;
}

.visit-form{
    padding:10px 30px 40px 30px;
}

.visit-title{
    font-size:24px;
    font-weight:700;
    color:#111;
    text-align:center;
    margin-bottom:15px;
}

.contact-us-logo img{
    width:120px;
}

.custom-input{
    height:45px;
    border:1px solid #d9d9d9;
    border-radius:8px;
    font-size:16px;
    padding:12px 18px;
    box-shadow:none;
}

.custom-input:focus{
    border-color:#2f5fe3;
    box-shadow:none;
}

.custom-textarea{
    border:1px solid #d9d9d9;
    border-radius:8px;
    padding:15px 18px;
    resize:none;
    font-size:16px;
    box-shadow:none;
}

.custom-textarea:focus{
    border-color:#2f5fe3;
    box-shadow:none;
}

.submit-btn{
    background:#2f5fe3;
    color:#fff;
    font-size:18px;
    font-weight:600;
    border-radius:8px;
    height:45px;
    transition:.3s;
}

.submit-btn:hover{
    background:#1f4fd1;
    color:#fff;
}

@media(max-width:991px){

    .visit-form{
        padding:30px 20px;
    }

    .visit-title{
        font-size:28px;
    }

    .submit-btn{
        font-size:16px;
    }

}

@media(max-width:576px){

    .visit-title{
        font-size:24px;
    }

    .contact-us-logo img{
        width:100px;
    }

    .custom-input{
        height:50px;
        font-size:15px;
    }

    .custom-textarea{
        font-size:15px;
    }

}