.simple-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}
.simple-content p{
    max-width: 400px;
}
.simple-formContent{
    border: 1px solid black;
    border-radius: 20px;
    padding: 50px 10px;
    max-width: 400px;
}
.simple-formData{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.simple-formData input{
    width: 90%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid black;
    margin: 6px;
}
.simple-btn{
    margin: 10px;
    width: 50%;
    padding: 10px;
    border: none;
    background-color: #E96101;
    color: white;
    font-size: 20px;
}
.inviteUsFormImg{
    background-color: black;height: 700px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;display: flex;align-items: center;justify-content: center;
}
.book-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.service-container{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    max-width: 1200px;
}
.service-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E96101;
    color: white;
    padding: 20px;
    border-radius: 20px;
}
.service-content img{
    width: 100px;
}
.service-content p{
    max-width: 300px;
}
.service-data{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.usertest-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    
}
.service-info{
    display: flex;
    flex-direction: column;
   padding: 10px;
   margin: 10px;
   /* width: 300px; */
   height: 100%;
    box-shadow: 0px 0px 10px #dc7124;
    border-radius: 10px;
}
@media screen and (max-width:600px){    
    .simple-container{
        flex-direction: column;
    }
    .service-info{
        width: 300px;
    }
}
@media screen and (max-width:800px){
    .service-content{
        margin:20px;
        width:300px !important;
    }
    
    .service-content p{
        
        width:280px !important;
    }
    .service-container{
        width: 100%;
        overflow: scroll;
    }
    .usertest-content{
        flex-direction: column;
    }

}