/* Default setting*/
*{
    margin: 0  auto;
    padding: 0;
}
.clearFix::after{
    content: "";
    clear: both;
    display: block;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.fixed-width{
    max-width: 1210px;
}

/* Header Section */
.header{
    background-color: rgb(36, 89, 168);
}
img{
    max-width: 100%;
}
.header-left img{
    height: auto;
    width: 210px;
}
.header-left{
    height: 100%;
    float: left;
    width: 30%;
}
.header-right{
    float: right;
    width: 70%;
}
.header-right ul{
    text-align: right;
}
.header-right ul li{
    display: inline-block;
    border-right: 1px solid #fff;
    margin-left: -4px;
}
.header-right ul li a{
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 0 30px;
    color: white;
    line-height: 72px;
    transition: 0.4s;
}
.header-right ul li:hover{
    background-color: rgb(0, 106, 255);
}

/* Banner */
.banner{
    background: url("./img/banner.jpg") no-repeat center;
    padding: 150px 0;
    background-size: cover;
}

.banner-caption h1 {
    padding: 10px;
    font-size: 30px;
    background: #ffffffb8;
    border-radius: 5px;
    display: inline-block;
    margin: auto;
}
  
.banner-caption h2{
    padding: 10px;
    font-size: 30px;
    background: #ffffffb8;
    border-radius: 5px;
    margin-top: 10px;
    color: blue;
    max-width: 310px;
}

/* About Us */
.aboutus{
    background-color: antiquewhite;
    padding: 30px;
}

/* Service items */
.service{
    margin-top: 5px;
    background-color: rgb(234, 245, 255);
    padding: 30px;
}
.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;
}
.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);
}

/* Footer Items */
.footer{
    background-color: rgb(220, 227, 229);
    padding: 15px 0;
    font-size: 20px;
    font-weight: bold;
}
.footer-left{
    float: left;
    width: 40%;
}
.footer-right{
    float: right;
    width: 60%;
}
.footer-right ul{
    list-style: none;
}
.footer-right ul li{
    display: inline-block;
}