.banner-imgbox
{
    width: 100%;
    height: 350px;
    object-fit: cover;
    padding: 0px;
}
.banner-imgbox img{
    height: 100%;
    width: 100%;
}
.banner{
    margin-bottom: 10px;
}
.about-carrertext
{
    font-size: 16px;
    text-align: center;
}
/* abhishek code use start*/
.right-section {
    background:var(--primary-color);
    color: var(--White-color);
    margin-right: 20px;
    height: auto;
    margin-top: 35px;
    padding: 0;
}
.right-head {
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    font-family: Arial, sans-serif;
}
.right-head::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 15px solid var(--secondary-color); /* Same as card background */
}
.contact-heading{
    font-weight: 700;
}
.right-form{
    padding: 20px;
}
.form-label{
    font-size: 14px;
    color: var(--white-color);
}
.text-danger {
    color: red;
}
.form-control-message{
    height: 100px;
    width: 100%;
}
.form-control, .btn-submit {
    border-radius: 2px;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: bold;
    border: none;
    height: 40px;
}

.btn-submit:hover {
    background-color: var(--white-color);
    color: var(--primary-color)!important;
}
/* abhishek code use end */


@media(max-width:767px)
{
    .banner-imgbox{
        height: 300px;
    }
    .right-section {
        margin-bottom: 22px;
    }
    .form-label{
        display: flex;
        justify-content: left;
    }
}
@media(max-width:575px)
{
    .banner-imgbox{
        height: 250px;
    }
}
@media(max-width:470px)
{
    .banner-imgbox{
        height: 200px;
    }
}
@media(max-width:380px)
{
    .banner-imgbox{
        height: 200px;
    }
}
.right-form input:focus{
    box-shadow: none;
}