h1{
    font-size:35px !important;
}


.contactUsSect{
    background: linear-gradient(207.02deg, #EBEBEB -22.38%, #F7F7F7 60.21%);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top:  10rem;
    padding-bottom: 3rem;
}

.contactUsTitle{
    margin-bottom: 3rem;
    font-weight: 700;
    font-size: 32px;
    line-height: 145.5%;
    color: #353942;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contactUsContainer{
    display: flex;
    align-items: center;
    justify-content:flex-start;
}
.contactUsLeft{
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    
}
.contactItem{
    padding: 1rem 0rem;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

.contactIcon{
    margin-inline-end: 1rem;
}

.contactItem iframe{
    height:375px;
    border-radius: 10px;
}
.contactIcon img{
    height: 50px;
}

.contactUsRight{
    padding: 1rem;
    width: 100%;
   
    
}
.msgContainer{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 2rem;
    
}

.msgTitle{
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 20px;
    color: #353942;
}
form{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    
}

.inputBox input{
    padding: 1rem;
    font-size: 18px;
    margin-bottom: 0.5rem;
    width: 100%;
    border-radius: 5px;
    border-color: #c9c9c9;
}

.inputBtn button{
    padding: 1rem;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    width: 100%;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    background: linear-gradient(133.87deg, #E32E35 5.52%, #EA8A23 115.36%);
    border: none;

}

.inputBtn button:hover{
    background: linear-gradient(107.88deg, #353942 14.91%, #545966 78.4%);
}
.inputMsg textarea{
    height: 200px;
    text-overflow: clip;
    padding: 1rem;
    font-size: 18px;
    margin-bottom: 0.5rem;
    width: 100%;
    border-radius: 5px;
    border-color: #c9c9c9;
}

.select-box{
    padding: 1rem;
    font-size: 18px;
    margin-bottom: 0.5rem;
    width: 100%;
    border-radius: 5px;
    border-color: #c9c9c9;
}

option[value=""][disabled]{
    display: none;
    color: white;
}

@media screen and (max-width: 900px) {


    .contactUsContainer{
        flex-direction: column-reverse;
        width: 95vw;
    }


}