.centered{
    text-align:center;
}
.contact-card{
    border:1px solid rgba(117, 167, 215, 0.37);
    background-color:rgba(255, 255, 255, 0.3);
    padding:10px;
    color: #4075a7;
}
.details{
    font-size:18px;
    line-height:200%;
}
.name{
    color:#75A7D7;
    font-size:22px;
}
.rnd-img{
    border-radius:100%;
    -moz-border-radius:100%;
    -webkit-border-radius:100%;
    border:1px solid rgba(117, 167, 215, 0.37);
}
.c-block{
    border:1px solid rgba(117, 167, 215, 0.37);
    background-color:rgba(255, 255, 255, 0.3);
    padding:6px;
    font-size:18px;
    color: #4075a7;
}
.bt-googlemaps{
    border-radius:10px 10px 0 0;
}
.services{
    padding:10px;
}
.services p{
    font-size:18px;
    color: #4075a7;
}
.vid{
    max-width:640px; 
    margin:auto;
}
.m-top{
    margin-top:100px;
}
.report{
    border:1px solid rgba(64, 117, 167, 0.4);
    background-color: rgba(64, 117, 167, 0.06);
    padding:6px 0 6px 20px;
    margin-top:20px;
    border-radius:8px;
}
.report p{
    font-size:20px;
    color:rgba(64, 117, 167, 0.94);
}


/* Image effects */

/* Push */
@-webkit-keyframes push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.push {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.push:hover, .push:focus, .push:active {
  -webkit-animation-name: push;
  animation-name: push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}