.serviceContainer{
    display: flex;
    flex-direction: row;
    width: 1400px;
    justify-content: space-between;
    margin: auto;
    margin-top: 30px;
  }

.serviceContainer a{
  text-decoration: none;
  cursor: pointer;
}
  
  .serviceName{
    /* font-family: 'Roboto'; */
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    letter-spacing: 0.235em;
    text-transform: uppercase;
    color: #000000;
  }
  
  .serviceImage{
    width: 100%;
  
  }
  
  .serviceCard {
    font-family: 'Roboto';
    position: relative;
    width: 50%;
    width: 430px;
    height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: rgba(0, 114, 206, 0.3);
    border-radius: 25px 25px 0px 0px;
    padding: 30px 15px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.247);
  }
  
  .serviceCard:hover{
    box-shadow:2px 2px 2px rgba(0, 0, 0, 0.247);
  }
  
  .overlay {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: #46599D;
    overflow: hidden;
    width: 100%;
    height:0;
    transition: .5s ease;
    border-radius:25px 25px 0px 0px;
    /* background: linear-gradient(0deg, rgba(0, 114, 206, 0.3) 68.02%, rgb(0, 113, 206) 100%); */
  }
  
  .serviceCard:hover .overlay {
    bottom: 0;
    height: 100%;
  }
  
  .text {
    color: white;
    width: 400px;
    font-size: 18px;
    line-height: 38px;
    position: absolute;
    letter-spacing: 0.235em;
    text-transform: uppercase;
    font-family: 'Roboto';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: left;
    /* -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.601);
    -webkit-text-size-adjust: unset; */
  }