*{
    box-sizing: border-box;
}
*:after,*:before{
    clear: both;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    color: deepskyblue;
    font-family: 'Patua One', cursive;
}
p{
    margin: 0;
    margin-bottom: 0.5em;
    color: #333;
}
ul{
    list-style: none;
    padding: 0;
}
img{
    width: 100%;
}
a{
    text-decoration: none;
    color: #fff;
}
.container{
    border-right: 1px solid #eee;
    border-left: 1px solid #eee
}



/*--------Header---------*/
@keyframes blink {
  50% {
    opacity: 0.0;
  }
}
@-webkit-keyframes blink {
  50% {
    opacity: 0.0;
  }
}
.blink {
  animation: blink 1s step-start 0s infinite;
  -webkit-animation: blink 1s step-start 0s infinite;
}
@keyframes scale {
  50% {
      transform: scale(1.2);
      background-color: #4CAF50;
  }
}
@-webkit-keyframes scale {
  50% {
    transform: scale(1.2);
      background-color: #4CAF50;
  }
}
.scale {
  animation: scale 1s ease-in-out 0s infinite;
  -webkit-animation: scale 1s ease-in-out 0s infinite;
}


header{
    background-color: #fff;
    min-height: 100px;
}
.logo{
    width: 20%;
    float: left;
    background-color: #fff;
}
.logo:after{
    clear: both;
    display: block;
    content: '';
}
.logo img{
    margin: 0;
    width: 100%;
}
.callus{
    width: 50%;
    float: right;
    text-align: right;
    padding: 1em 0;
}
.callus p{
    color: #4CAF50;
    font-weight: bold;
}
.social{
    font-size: 16px;
    height: 20px;
}
.social a{
    color: deepskyblue;
}
.social li{
    float: right;
    margin-right: 0.5em;
}
.contact{
    float: right;
    text-align: right;
}
.contact a{
    text-decoration: none;
}
.contact li:first-child a{
    font-size: 20px;
    color: deepskyblue;
    font-weight: bold;
}
.contact span{
    background-color: deepskyblue;
    padding: 0.5em;
    border-radius: 50%;
    color: #fff;
}



/*------Navigation-------*/
.navbar{
    border-radius: 0;
    margin-bottom: 2em;
    margin-left: 5px;
}
.navbar-inverse{
    background-color: deepskyblue;
    border: none;
}
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover{
    background-color: #0ba6d9;
}
.navbar-inverse .navbar-nav>li>a{
    color: #333;
    font-weight: bold;
}
.navbar-inverse .navbar-nav{
    margin-left: -10px;
}




/*------------banner-----------------*/

.banner{
    width: 70%;
    height: 600px;
    background-color: #eee;
    float: left;
    margin-bottom: 40px;
}
#myCarousel{
    height: 350px;
    overflow: hidden;
}
.banner-bottom:before{
    clear: both;
    display: block;
    content: '';
}
.banner-bottom{
    background-color: deepskyblue; /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left top, deepskyblue, skyblue); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(bottom right, deepskyblue, skyblue); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(bottom right, deepskyblue, skyblue); /* For Firefox 3.6 to 15 */
  background: linear-gradient(to bottom right, deepskyblue, skyblue); /* Standard syntax */
    height: 250px;
    padding: 1.5em;
    color: #fff;
}
.banner-bottom h3{
    color: #fff;
}
.banner-bottom p{
    color: #fff;
}
.contact-form{
    width: 30%;
    float: left;
    z-index: -111;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#contact {
    height: 600px;
  background: #F9F9F9;
  padding: 25px;
  margin: 0 0;
}

#contact h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #4CAF50;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type="submit"]:hover {
  background: #43A047;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}


/*------------Services--------------------*/
.green{
    color: #4CAF50;
    display: inline-block;
}
.services{
    padding: 2em 0;
    z-index: 111;
    height: auto;
    display: block;
    z-index: 1111;
}
.services h2{
    text-align: center;
    color: deepskyblue;
    text-transform: capitalize;
    margin-bottom: 40px;
}
.service-list{
    margin-top: 40px;
    margin-bottom: 40px;
}
.service-list li{
    width: 50%;
    height: auto;
    display: table;
    margin-bottom: 1em;
    float: left;
}
.service-list li:nth-child(odd){
    background-color: #eee;
}
.service-list li:nth-child(even){
    background-color: #ddd;
}
.service-list .icon{
    display: table-cell;
    width: 20%;
    vertical-align:middle;
    font-size: 40px;
    background-color: deepskyblue;
    text-align: center;
    color: #fff;
}
.service-list .description{
    width: 80%;
    display: table-cell;
    vertical-align: middle;
    padding: 1em;
}
.service-list:after{
    content: '';
    clear: both;
    display: block;
}
a.button{
    display: block;
    margin: 0 auto;
    clear: left;
    text-decoration: none;
    color: #fff;
}
.button{
    background-color: #4CAF50;
    width: 100px;
    padding:0.5em;
    border-radius: 5px;
    text-align: center;
    margin-top: 2em;
}
.button:hover{
    background-color: #378d3b;
    color: #fff;
}






.concern{
    background-color: #eee;
    padding: 40px 20px;
}
.concern h2{
    color: deepskyblue;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 40px;
}
.concern-list{
    height: auto;
    margin-bottom: 40px;
}
.concern-list li{
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
    padding: 0.5em;
    border:1px solid #eee;
    border-radius: 5px;
    color: #999;
    background-color: #fff;
    text-align: center;
}
.concern-list:after{
    clear: both;
    display: block;
    content: '';
}

footer{
    background-color: #333;
    padding: 40px 1em;
}
footer{
    clear: both;
    display: block;
    content: '';
}
.footer-list li{
    width: 32.6%;
    float: left;
    text-align: center;
}
.footer-list li:nth-child(2){
    margin: 0 1%;
}
footer p{
    color: #fff;
}
.footer-list ul li{
    color: #fff;
    display: block;
}
.footer-list:after{
    display: block;
    clear: both;
    content: '';
}
.copyright{
    background-color: #222;
    padding: 0.3em;
    color: #fff;
    margin-bottom: -40px;
    border-radius: 5px;
}




/*----------------------------------------------*/
/*---------------------about page--------------------*/
h3.center{
    text-align: center;
}
.image-gallery{
    position: relative;
    display: block;
    height: 470px;
    margin-left: 1.5em;
    margin-top: 2.5em;
}

.image-gallery li{
    position: absolute;
    top: 0;
    padding: 0.5em;
    background-color: #fff
        ;
    border: 1px solid #999;
}
.image-gallery li:first-child{
    transform: rotate(-5deg);
}
.image-gallery li:second-child{
    transform: rotate(3deg);
}
.description{
    margin-top: 1em;
    padding: 5em 0;
    line-height: 2em;
    vertical-align: middle;
}
/*//---------------------about page--------------------*/


/*---------------------Service page--------------------*/
.services-page{
    display: block;
    padding: 2em 0;
}
.services-page:after{
    clear: both;
    content: '';
    display: block;
}
.services-page li{
    width: 33.33%;
    height: 100%;
    text-align: center;
    float: left;
    overflow: hidden;
    position: relative;
    margin-bottom: 2em;
    border: 10px solid #fff;
    outline: 1px solid #eee;
}
.services-page li span{
    font-size: 50px;
    vertical-align: middle;
    margin-top: 40%;
    text-align: center;
    display: block;
    height:auto;
}
.overlay{
    background-color: rgba(0, 191, 255, 0.53);
    position: absolute;
    top: 78%;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 1s ease;
    padding: 1em;
}
.services-page li:hover .overlay{
    height: 100%;
    top: 0%;
}
.service-image{
    overflow: hidden;
}
.overlay h4, .overlay p{
    word-wrap: break-word;
    color: #fff;
}
.save {
    background-color: deepskyblue;
    padding: 0.5em;
    text-align: center;
}
.save h4{
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    padding: 0;
}
.save h4 a{
    color: #333;
    text-decoration:underline;
}
.save h4 a:hover{
    text-decoration: none;
}
/*//---------------------Service page--------------------*/


/*---------------------gallery page--------------------*/
.gallery-list{
    padding: 2em 0;
    height: auto;
}
.gallery-list:after{
    clear: both;
    display: block;
    content: '';
}
.gallery-list li{
    width: 25%;
    float: left;
    padding: 1em;
    position: relative;
}
.gallery-list li a img{
    overflow: hidden;
}
.gallery-list li a:hover img{
    opacity: 0.5;
    transition: 1s ease;
}
/*//---------------------gallery page--------------------*/

/*---------------------Contact page--------------------*/
.contact-page{
    width: 55%;
    float: left;
}
.contact-details{
    float: left;
    width: 45%;
    padding: 1em 1em;
    background-color: #eee;
}
.contact-details{
    font-size: 16px;
}
.contact-details span{
    color: dodgerblue;
    margin-right: 0.5em;
    width: 20px;
    font-size: 18px;
}
.contact-page:after{
    clear: both;
    display: block;
    content: '';
}
.option-list li{
    position: relative;
    font-weight: bold;
}
.header {
        color: #36A0FF;
        font-size: 27px;
        padding: 10px;
    }
.contact-page input ,.contact-page textarea{
    border-radius: 0;
}
.bigicon {
        font-size: 50px;
        color: #36A0FF;
    width: 40px;
    text-align: center;
    background-color: #eee;
    padding: 1em;
    }
.btn-primary{
    background-color: dodgerblue;
}
.success h2{
    color: deepskyblue;
}
/*//---------------------Contact page--------------------*/




/*--------Responsive Design----------*/
@media screen and (max-width:990px){
    ..services-page li{
        width: 50%;
        height: auto;
        margin-bottom: 1em;
        background-color: red;
    }
}
@media screen and (max-width:768px){
    .banner{
        width: 100%;
        height: auto;
    }
    .contact-form{
        width: 100%;
        height: auto;
    }
    .banner-bottom{
        height: auto;
    }
    .navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover{
    background-color: #0ba6d9;
    margin-left: 0;
    }
    .services-page li{
        width: 50%;
    }
    .gallery-list li{
        width: 50%;
    }
    .contact-page{
        width: 100%;
    }
    .contact-details{
        width: 100%;
        margin-bottom: 1em;
    }
}
@media screen and (max-width:603px){
    
    .services-page li{
        width: 100%;
    }
    .overlay{
        top: 60%;
    }
    .footer-list li{
        width: 100%;
        height: auto;
        margin-bottom: 2em;
    }
    #myCarousel{
    height: auto;
}
}
@media screen and (max-width:414px){
    .gallery-list li{
        width: 100%;
    }
    .logo h2{
        width: 100%;
    }
    .callus{
        text-align: left;
        float: left;
        width: 100%;
    }
    .image-gallery{
        display: block;
        height: 280px;
    }
    .description{
        display: block;
    }
}