img{
    width: 210px;
    height: auto;
}
.header{
    background-color: blueviolet;
}
.header ul{
    list-style: none;
    text-align: right;
}
.header ul li{
    display: inline-block;
    padding: 0 30px;
    border-right: 1px solid #fff;
    margin-bottom: -20px;
    margin-left: -4px;
}
.header ul li a{
    color: #fff;
    line-height: 68px;
    text-decoration: none;
    transition:0.1s;
    font-size: 20px;
    font-weight: bold;
}
.header ul li:hover{
    background-color: rgb(85, 7, 157);
}

/* Banner Section */
.banner{
    background: url("./img/banner.jpg") no-repeat center;
    padding: 150px 0;
}
.banner h1{
    background-color: rgba(137, 43, 226, 0.455);
    border-radius: 5px;
    max-width: 500px;
    padding: 5px;
    color: #fff;
    margin: 0 auto;
}
.banner h2{
    background-color: rgba(43, 67, 226, 0.455);
    border-radius: 5px;
    padding: 5px;
    color: #fff;
    display: inline-block;
    margin-top: 10px;
}
.aboutus{
    background-color: antiquewhite;
    padding-top: 30px;
    padding-bottom: 10px;
}
.service{
    margin-top: 5px;
    background-color: rgb(234, 245, 255);
    padding: 30px;
}
.service-item {
    float: left;
    width: 31.3%;
    border: 1px solid #ddd;
    padding: 25px 10px;
    box-sizing: border-box;
    margin-left: 1%;
    margin-right: 1%;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.593);
}
.service-item span i{
    font-size: 40px;
    padding: 10px;
    border: 1px solid #ddd;
    box-shadow: 1px 1px black;
    border-radius: 20px 0;
    background-color: aqua;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 1px 1px black;
}

/* Blog Section */
.blog img{
    width: 200px;
}
.contact{
    background-color: rgb(234, 245, 255);
}