body {
    background-color: rgb(217, 224, 224);
  }
  h1 {
    color: darkblue;
  }
  p {
    color: darkblue;
  }

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  button {
    background-color: #fff;
    border: .5px solid darkblue;
    border-radius: 10px;
    color: #000;
    padding: 8px;
    box-shadow: 0 0 30px 0 darkblue,
    0 0 30px 0 darkblue,
    0 0 10px 0 darkblue inset;
    text-align: center;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 49%
  }

table, th, td { border: thin solid; }
#sepa { border-collapse: separate; margin-top: 2em; }
caption { text-align: right; }
  
footer {
  text-align: center;
  padding: 3px;
  background-color: white
  color darkblue;
}


.serviceBox{
  font-family: 'Poppins', sans-serif;
  padding: 25px;
  margin: 5px 0 0 5px;
  border-radius: 10px;
  box-shadow: 0 0 15px -5px rgba(0,0,0,0.3);
  transition: all 0.3s ease 0s;
}
.serviceBox:hover{ background: darkblue; }
.serviceBox .service-icon{
  color: darkblue;
  font-size: 55px;
  margin: 0 0 20px;
  transition: all 0.3s ease 0s;
}
.serviceBox .title{
  color: #444;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 27px;
  text-transform: capitalize;
  margin: 0 0 10px;
  transition: all 0.3s ease 0s;
}
.serviceBox .description{
  color: #999;
  font-size: 14px;
  line-height: 27px;
  margin: 0 0 15px;
  transition: all 0.3s ease 0s;
}
.serviceBox .read-more{
  color: darkblue;
  font-size: 15px;
  transition: all 0.3s ease 0s;
}
.serviceBox .read-more:hover{ text-shadow: 4px 4px rgba(255,255,255,0.3); }
.serviceBox.cyan .service-icon,
.serviceBox.cyan .read-more{
  color: #36ADB3;
}
.serviceBox.cyan:hover{ background: #36ADB3; }
.serviceBox.blue .service-icon,
.serviceBox.blue .read-more{
  color: #172E5A;
}
.serviceBox.blue:hover{ background: #172E5A; }
.serviceBox.orange .service-icon,
.serviceBox.orange .read-more{
  color: #F05D0D;
}
.serviceBox.orange:hover{ background: #F05D0D; }
.serviceBox:hover .service-icon,
.serviceBox:hover .title,
.serviceBox:hover .read-more{
  color: #fff;
}
.serviceBox:hover .description{ color: rgba(255,255,255,0.8); }
@media only screen and (max-width: 990px){
  .serviceBox{ margin: 0 0 30px; }
}