.serviceContainer {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: relative;
  padding: 10px 0;
  border-radius: 5px;
  border: #000 2px;
  text-align: left;
  margin: 20px auto;
  -webkit-box-shadow: 5px 5px 15px rgba(0,0,0,0.7);
  -moz-box-shadow: 5px 5px 15px rgba(0,0,0,0.7);
  -o-box-shadow: 5px 5px 15px rgba(0,0,0,0.7);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.7);
}

.cardHeader {
  text-align: center;
  padding: 0px;
  color: #333333;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

.serviceImage {
  margin-bottom: 20px;
  max-height: 150px;
  max-width: 200px;
  width: 100%;
  cursor: pointer;  
}

.serviceSubtitle {
  font-weight: bold;
  display: block;
  margin: 10px 0;
}

.serviceDecorator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator_large {
  margin: 5px 0;
  background-color: #333333;
  height: 1px;
}

.eflipX {
  display: inline-block;
  transform:scale(-1, 1);
  width:fit-content;
}

.eflipY {
  display: inline-block;
  transform:scale(1, -1);
  width:fit-content;
}