* {
    margin:0px;
    padding:0px;
}
/*.header
{

    width:100%;
    background-color:rgb(16, 16, 236);
    padding-top: 50px;
    padding-bottom: 50px;
    justify-content: space-evenly;
    align-items: center;
    display:flex;
   justify-content:center;
    justify-content:flex-start;
}
.ele
{
    height:100px;
    width: 20% ;
    background-color: indianred;
    display:inline-block;
    margin-left:2%;

}*/
.banner{
    height:800px;
    width:100%;
    background-color: gray;
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url("background.jpg");
    background-size: cover;
    background-position: center;     
}
.navbar{
    width:85%;
    margin:auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.logo{
    width:120px;
    cursor: pointer;
    background-color: rgba(0,0,0,0.75);
}
.navbar ul li{
    list-style: none;
    display:inline-block;
    margin:0 20px;
    position: relative;
}
.navbar ul li a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}
.navbar ul li::after{
    content:'';
    height: 3px;
    width:0;
    background:#009688;
    position:absolute;
    left:0;
    bottom:-10px;
    transition: 0.5s;
    
}
.navbar ul li:hover::after{
    width:100%;
}
.content{
    width:100%;
    position: absolute;
    top:50%;
    text-align: center;
    color:#fff;
    transform: translateY(-50%);
}
.content h1{
    font-size: 50px;
    margin: 80px;
}
.content p{
   /* margin-top: 20px auto;*/
    font-weight: 100;
    line-height: 25px;
}
button{
    width:200px;
    padding:15px 0;
    text-align:center;
    margin:20px 10px;
    border-radius:25px;
    font-weight:bold;
    border:2px solid #009688;
    background: transparent;
    color:#fff;
    cursor: pointer;
    position:relative;
    overflow: hidden;
}
span{
    width:0;
    height:100%;
    background: #009688;
    border-radius: 25px;
    position:absolute;
    left:0;
    bottom:0;
    z-index:-1;
    transition:0.5s;
}
button:hover span{
    width:100%;
}
button:hover{
    border:none;
}
.des{
    color:#fff;
    position:absolute;
    text-align: left;
    font-weight: bold;
}
.about {
    padding-top: 50px;
    height:300px;
    width:100%;
    text-align: center;
    
}
.head{
    padding-top:50px;
}
.img{
    padding-top: 20px;
    display:flex;
    justify-content: center;
    height:300px;
    width:100%;
}
.service{
    padding-top: 50px;
    text-align: center;
}
.service_detail{
    margin-left: 20px;
    margin-right: 20px;
    height: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
   /* width:100%;*/
    background-color:#fff;
    display:flex;
    justify-content: center;

}
.high_child{
    width:25%;
    height:50px;
    margin-left: 50px;
    margin-right: 50px;
    background-color:rgba(240, 108, 20, 0.911);
    display: flex;
    justify-content:center;
    align-items: center;
    color: white;
    cursor: pointer;
}
.contact{
    height:100%;
    width:100%;
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 20px 100px;
}
/*.cont_box{

    max-width: 850px;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color:#fff;
    box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
}*/
/*.left{
    background: url("https://images.pexels.com/photos/346885/pexels-photo-346885.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500")no-repeat center;
    background-size: cover;
    height:100%;
}*/
.right{
    padding: 20px 40px;
}
.field{
    width: 100%;
    border:2px solid rgba(0,0,0,0);
    outline:none;
    background-color:rgba(230,230,230,0.6);
    margin-bottom: 22px;
    transition: 3s;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;    
}
.field:hover{
    background-color: rgba(0,0,0,0.1);
}
textarea{
    min-height: 150px;
}
.Cont{
    display:flex;
    justify-content: center;
}