.contact-us{
    display: flex;
    width: 100%;
    padding: 20px;
    margin-top: 15px;
    
}
.contact-us h1{
    font-size: 50px;
    padding: 20px;
    font-weight: 500;
}
.contact-us form label{
    font-size: 25px;
    margin-bottom: 25px;
}
.input-data{
    border: 1px solid #000;
    border-radius: 8px;
    
    width: 100%;
    padding: 15px;
}
.contact-us form input{
    width: 80%;
    padding: 10px;
    font-size: 18px;
    border: 2px solid #000;
    border-radius: 5px;
    margin-bottom: 25px;
}
.contact-us textarea{
    width: 80%;
    border: 2px solid #000;
    border-radius: 5px;
    padding: 10px;
}
.contact-us button{
    margin-top: 30px;
    width: 100px;
    font-size: 25px;
    padding: 10px;
    background: #ff8400;
    cursor: pointer;
}
@media screen and (max-width: 450px){
    .contact-us h1{
        font-size: 35px;
    }
}
@media screen and (max-width: 900px){
.contact-us{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}
        
}