*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
}
.topheader{
    background: crimson;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 30px; */
    border-bottom: 2px yellow solid;
    /* border: 2px solid red; */
    height: 20vh;
}
.navlinks{
    display: flex;
    list-style: none;
}
.navlinks li{
    padding: 15px;
}
.navlinks li a{
    color: tomato;
    text-decoration: none;
}
.fa-bars{
    position: absolute;
    right: 20px;
    top: 50px;
    display: none !important;
    color: red;
}
.section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
.maxWidth{
    width: 1000px;
    /* max-width: 1000px; */
}
.hero_container{
    display: flex;
    flex-wrap: wrap;
}
.hero_image{
    flex-basis: 50%;
    height: 450px;
}
.hero_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero_content{
    flex-basis: 50%;
    display: flex;
    align-items: center;
    padding: 40px;
}
.hero_content div h1{
    color: orangered;
    font-size: 50px;
    margin-bottom: 20px;
    
}
.hero_content div p{
    line-height: 1.5;
}
.hero_content div a{
    text-decoration: none;
    border: 2px solid orangered;
    color: orangered;
    padding: 8px 30px;
    margin-top: 20px;
    display: inline-block;
}
.seaction_header{
    color: orangered;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
}
.services_container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}
.service{
    flex-basis: 230px;
    padding: 20px;
    color: rgb(0, 0, 0);
}
.service a{
    color: orangered;
    background-color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 20px;
    display: inline-block;
}
.service h4{
    color: white;
    margin-bottom: 10px;
}
.service1{
    background-color: rgb(218,134,0);
}
.service2{
    background-color: rgb(218,0,134);
}
.service3{
    background-color: rgb(0,134,218);
}
.service4{
    background-color: rgb(0,218,134);
}
.contact-dis{
    display: flex !important;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.contact-dis .hot-lines{
    /* border: 1px solid red; */
    width: 40%;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    margin-top: 20px;

}
.contact-dis .social-content{
    /* border: 1px solid red; */
    width: 40%;
    justify-content: center;
    align-items: center;
    /* text-align: center;  */
    margin-top: 20px;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
input[type="text"], input[type="number"], input[type="submit"], input[type="email"]
  {
      width: 100%;
      padding: 10px;
      border-radius: 3px;
      border: 1px solid grey;
  }
input[type="submit"]
  {
      background: yellow;
      font-size: 18px;
      border: none;
      cursor: pointer;
  }
.footer p{
    padding: 20px 0;
}
/* ADMIN CSS */
.form-wrapper{
    
    width: 380px;
    background: #fff;
    border-radius: 5px;
    }
    .form-wrapper .title{
    
    line-height: 80px;
    background: #fff;
    padding-left: 20px !important;
    border-radius: 5px 5px 0 0 !important;
    color: grey;
    font-size: 25px;
    font-weight: 600;
    }
    .form-wrapper form{
    
    padding: 30px 20px 25px 20px !important;
    }
    .form-wrapper form .row{
    
    height: 45px;
    /* background: #ff0000; */
    margin-bottom: 15px !important;
    position: relative;
    }
    .form-wrapper form .row input{
    
    height: 100%;
    width: 100%;
    outline: none;
    padding-left: 60px !important;
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: 16px;
    }
    .form-wrapper form .row i {
    
    position: absolute;
    width: 47px;
    height: 100%;
    /* color: #fff; */
    font-size: 18px;
    /* background: #16a085; */
    border: 1px solid lightgrey;
    border-radius: 5px 0 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    .form-wrapper form .button input{
    
    color: #fff;
    padding-left: 0px !important;
    background: tomato;
    cursor: pointer;
    font-size: 18px;
    }
    .form-wrapper form .pass{
    
    margin: -8px 0 20px 0 !important;
    }
    .form-wrapper form .pass a{
    
    color: #16a085;
    font-size: 17px;
    text-decoration: none;
    }
    .form-wrapper form .pass a:hover{
    text-decoration: underline;
    }
    .title .fa{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logo{
        text-align: center;
    }
@media only screen and (max-width:940px){
    .service{
        flex-basis: 420px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:840px){
   header{
        justify-content: center;
        position: relative;
        border-bottom: 1px solid grey;
    }
    nav{
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgb(41, 38, 36);
        width: 400px;
        transform: translateX(-100%);
        transition: .5s;
    }
    .navlinks{
        flex-direction: column;
    }
    .navlinks li a{
        color: white;
    }
    .show{
        transform: translateX(0);
    }
    .fa-bars{
        display: block !important;
    }

    .hero_image{
        flex-basis: 100%;
    }
    .hero_content{
        flex-basis: 100%;
    }

    .service{
        flex-basis: 100%;
    }
    .hot-lines{
        flex-basis: 100%;
    }
    .social-content{
        flex-basis: 100%;
    }
}
