* {box-sizing:border-box;
  padding:0;
  text-decoration: none;
  list-style: none;
  margin: 0;
  font-family: 'poppins', sans-serif;
}

/*-----------------Nav Bar -----------------------*/
/**nav{
  background: #0082e6;

}**/

.menu-bar{
  background-image: linear-gradient(to right, #6db9ef, #0082e6);
}

.nav-link{
  font-size: 16px;  
  margin: 2px;
}

.home{
  color: #fff !important;
}

.location{
  color: #fff !important;
}

.service{
  color: #fff !important;
}

.about{
  color: #fff !important;
}


.nav-link:hover{
  color: #fff !important;
}

.iframe{
  width: 100%;
}

  

/*-----------------Card -------------------------*/
.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px; /* 5px rounded corners */
  }
  
  /* Add rounded corners to the top left and the top right corner of the image */
  img {
    border-radius: 5px 5px 0 0;
  }
  
  /* On mouse-over, add a deeper shadow */
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  /* Add some padding inside the card container */
  .container {
    padding: 2px 16px;
  }


/**--------------------Footer--------------------------***/

#footer{
    margin-top: 80px;
    background-color: #efefef;
    color: #013f7e;

}